Commit 75d432c1 by crushh

udpate: dist

parent fe54f8d6
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -53,7 +53,7 @@
</el-table-column>
<el-table-column label="可见条件" show-overflow-tooltip min-width="180">
<template slot-scope="{row}">
{{ row.memberType==1?'全部顾客':row.showBack }}
{{ row.memberType==1?'全部客户':row.showBack }}
</template>
</el-table-column>
</el-table>
......
......@@ -97,7 +97,7 @@ export default {
return {
fixedWidth: document.documentElement.clientWidth - 200,
ruleForm: {
memberType: 1, // 1:全部顾客 3 人群筛选 4 门店筛选
memberType: 1, // 1:全部客户 3 人群筛选 4 门店筛选
},
rules: {
ruleTitle: [
......
......@@ -77,7 +77,7 @@
:disabled="isEdit"
:label="1"
>
全部顾客
全部客户
</el-radio>
<el-radio
style="margin-right:0px"
......
......@@ -351,7 +351,7 @@ export default {
let str = '';
switch (val) {
case 1:
str = '全部顾客';
str = '全部客户';
break;
case 3:
str = '人群筛选';
......@@ -400,12 +400,12 @@ export default {
computed: {
selectOption () {
let option = [
{ label: '全部顾客', value: 1 },
{ label: '全部客户', value: 1 },
{ label: '人群筛选', value: 3 },
{ label: '门店筛选', value: 4 },
];
if (this.$store.state.product.ruleMemberFilterClose == 1) {
option = option.filter(item => item.label != '人群筛选' && item.label != '全部顾客');
option = option.filter(item => item.label != '人群筛选' && item.label != '全部客户');
}
return option;
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment