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 @@ ...@@ -53,7 +53,7 @@
</el-table-column> </el-table-column>
<el-table-column label="可见条件" show-overflow-tooltip min-width="180"> <el-table-column label="可见条件" show-overflow-tooltip min-width="180">
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ row.memberType==1?'全部顾客':row.showBack }} {{ row.memberType==1?'全部客户':row.showBack }}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
......
...@@ -97,7 +97,7 @@ export default { ...@@ -97,7 +97,7 @@ export default {
return { return {
fixedWidth: document.documentElement.clientWidth - 200, fixedWidth: document.documentElement.clientWidth - 200,
ruleForm: { ruleForm: {
memberType: 1, // 1:全部顾客 3 人群筛选 4 门店筛选 memberType: 1, // 1:全部客户 3 人群筛选 4 门店筛选
}, },
rules: { rules: {
ruleTitle: [ ruleTitle: [
......
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
:disabled="isEdit" :disabled="isEdit"
:label="1" :label="1"
> >
全部顾客 全部客户
</el-radio> </el-radio>
<el-radio <el-radio
style="margin-right:0px" style="margin-right:0px"
......
...@@ -351,7 +351,7 @@ export default { ...@@ -351,7 +351,7 @@ export default {
let str = ''; let str = '';
switch (val) { switch (val) {
case 1: case 1:
str = '全部顾客'; str = '全部客户';
break; break;
case 3: case 3:
str = '人群筛选'; str = '人群筛选';
...@@ -400,12 +400,12 @@ export default { ...@@ -400,12 +400,12 @@ export default {
computed: { computed: {
selectOption () { selectOption () {
let option = [ let option = [
{ label: '全部顾客', value: 1 }, { label: '全部客户', value: 1 },
{ label: '人群筛选', value: 3 }, { label: '人群筛选', value: 3 },
{ label: '门店筛选', value: 4 }, { label: '门店筛选', value: 4 },
]; ];
if (this.$store.state.product.ruleMemberFilterClose == 1) { 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; 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