|
@@ -14,7 +14,7 @@
|
|
|
:inline="true"
|
|
|
label-width="88px"
|
|
|
>
|
|
|
- <el-form-item label="优惠卷标识" prop="couponRemark">
|
|
|
+ <el-form-item label="优惠券标识" prop="couponRemark">
|
|
|
<el-input
|
|
|
v-model="queryForm.couponRemark"
|
|
|
placeholder="请输入标识"
|
|
@@ -23,7 +23,7 @@
|
|
|
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="优惠卷类型" prop="couponType">
|
|
|
+ <el-form-item label="优惠券类型" prop="couponType">
|
|
|
<el-select
|
|
|
v-model="queryForm.couponType"
|
|
|
clearable
|
|
@@ -34,7 +34,7 @@
|
|
|
<el-option label="兑换卷" value="3" ></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="优惠卷名称" prop="couponName">
|
|
|
+ <el-form-item label="优惠券名称" prop="couponName">
|
|
|
<el-input
|
|
|
v-model="queryForm.couponName"
|
|
|
placeholder="请输入名称"
|
|
@@ -216,7 +216,7 @@
|
|
|
icon="el-icon-search"
|
|
|
@click="handlequeryCouponUserList(scope.row.id)"
|
|
|
v-if="scope.row.editFlag"
|
|
|
- >查看优惠卷</el-button
|
|
|
+ >查看优惠券</el-button
|
|
|
>
|
|
|
</template>
|
|
|
</af-table-column>
|
|
@@ -247,7 +247,7 @@
|
|
|
<af-table-column label="油站名" align="center" prop="id" v-if="jiBie==0||jiBie==1"/>
|
|
|
<af-table-column
|
|
|
v-if="false"
|
|
|
- label="优惠卷id"
|
|
|
+ label="优惠券id"
|
|
|
align="center"
|
|
|
prop="id"
|
|
|
/>
|
|
@@ -403,7 +403,7 @@ export default {
|
|
|
// callback()
|
|
|
// };
|
|
|
return {
|
|
|
- //创建优惠卷的时间
|
|
|
+ //创建优惠券的时间
|
|
|
dateRangeCreatedDate: [],
|
|
|
couponEnabledFlag: "1",
|
|
|
pageStatus: 4,
|
|
@@ -445,14 +445,14 @@ export default {
|
|
|
open: false,
|
|
|
// 总条数
|
|
|
total: 100,
|
|
|
- // 优惠卷总条数
|
|
|
+ // 优惠券总条数
|
|
|
userTotal: 100,
|
|
|
leftQuery: {},
|
|
|
rightQuery: {},
|
|
|
leftData: [],
|
|
|
rightData: [],
|
|
|
moveRightData: [],
|
|
|
- // 优惠卷的信息
|
|
|
+ // 优惠券的信息
|
|
|
couponUserList: [],
|
|
|
moveLeftData: [],
|
|
|
// 查询参数
|
|
@@ -762,7 +762,7 @@ export default {
|
|
|
}
|
|
|
return;
|
|
|
},
|
|
|
- /** 查看优惠卷信息 */
|
|
|
+ /** 查看优惠券信息 */
|
|
|
handlequeryCouponUserList(row) {
|
|
|
this.queryCouponUserFrom.couponId=row;
|
|
|
|
|
@@ -771,12 +771,12 @@ export default {
|
|
|
).then((response) => {
|
|
|
this.couponUserList = response.rows;
|
|
|
this.userTotal = response.total;
|
|
|
- this.title = "用户优惠卷信息";
|
|
|
+ this.title = "用户优惠券信息";
|
|
|
this.open = true;
|
|
|
});
|
|
|
|
|
|
},
|
|
|
- /** 查看优惠卷信息 */
|
|
|
+ /** 查看优惠券信息 */
|
|
|
queryCouponUserListByPage() {
|
|
|
|
|
|
|
|
@@ -785,7 +785,7 @@ export default {
|
|
|
).then((response) => {
|
|
|
this.couponUserList = response.rows;
|
|
|
this.userTotal = response.total;
|
|
|
- this.title = "用户优惠卷信息";
|
|
|
+ this.title = "用户优惠券信息";
|
|
|
this.open = true;
|
|
|
});
|
|
|
|
|
@@ -829,7 +829,7 @@ export default {
|
|
|
this.queryForm.pageNum = 1;
|
|
|
this.getList();
|
|
|
},
|
|
|
- /** 查询优惠卷模板信息*/
|
|
|
+ /** 查询优惠券模板信息*/
|
|
|
getList() {
|
|
|
listInfo(this.addDateRange(this.queryForm, this.dateRangeCreatedDate))
|
|
|
.then((res) => {
|