|
@@ -192,7 +192,7 @@
|
|
|
</el-button>
|
|
</el-button>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="创建人" align="center" prop="createByName" />
|
|
|
|
|
|
|
+ <el-table-column label="创建人" align="center" prop="createName" />
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
|
@@ -215,7 +215,7 @@
|
|
|
width="500px" append-to-body>
|
|
width="500px" append-to-body>
|
|
|
<el-form ref="payMentFormRef" :model="paymentFrom" :rules="rules">
|
|
<el-form ref="payMentFormRef" :model="paymentFrom" :rules="rules">
|
|
|
<el-row :gutter="20">
|
|
<el-row :gutter="20">
|
|
|
- <file-upload v-model="paymentFrom.invoiceUrl" :limit="1" :isString="true" />
|
|
|
|
|
|
|
+ <file-upload v-model="paymentFrom.invoiceUrl" :limit="1" :isString="true" :fileType="['pdf']"/>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<template #footer>
|
|
<template #footer>
|
|
@@ -379,7 +379,6 @@ const reset = () => {
|
|
|
|
|
|
|
|
/** 查询会员缴费记录列表 */
|
|
/** 查询会员缴费记录列表 */
|
|
|
const getVipPaymentList = async () => {
|
|
const getVipPaymentList = async () => {
|
|
|
- console.log('memberId.value', memberId.value)
|
|
|
|
|
loading.value = true;
|
|
loading.value = true;
|
|
|
vipPaymentQueryParams.value.memberId = memberId.value;
|
|
vipPaymentQueryParams.value.memberId = memberId.value;
|
|
|
const res = await listVipPayment(vipPaymentQueryParams.value);
|
|
const res = await listVipPayment(vipPaymentQueryParams.value);
|