修改样式 和 优化一些 功能

This commit is contained in:
夜良king
2022-02-16 09:25:01 +08:00
parent aee67ec317
commit c4037a346d
6 changed files with 42 additions and 14 deletions

View File

@@ -7,7 +7,7 @@
<Input type="text" v-model="searchForm.memberName" placeholder="请输入会员名称" clearable style="width: 200px" />
</Form-item>
<Form-item label="审核状态" prop="applyStatus">
<Select v-model="searchForm.memberName" clearable style="width: 200px">
<Select v-model="searchForm.applyStatus" clearable style="width: 200px">
<Option value="APPLY">申请中</Option>
<Option value="VIA_AUDITING">审核通过(提现成功)</Option>
<Option value="FAIL_AUDITING">审核拒绝</Option>

View File

@@ -5,14 +5,14 @@
ref="searchForm"
:model="searchForm"
inline
:label-width="70"
:label-width="75"
class="search-form mb_10"
>
<Form-item label="活动名称" prop="couponName">
<Form-item label="优惠券名称" prop="couponName">
<Input
type="text"
v-model="searchForm.couponName"
placeholder="请输入活动名称"
placeholder="请输入优惠券名称"
clearable
style="width: 200px"
/>
@@ -349,6 +349,7 @@ export default {
getPlatformCouponList(this.searchForm).then((res) => {
this.loading = false;
if (res.success) {
console.log(res)
this.data = res.result.records;
this.total = res.result.total;
}

View File

@@ -219,6 +219,7 @@ export default {
getFullDiscountList(this.searchForm).then((res) => {
this.loading = false;
if (res.success) {
console.log(res)
this.data = res.result.records;
this.total = res.result.total;
}