Commit d0e40096 by crushh

update: dist

parents 89fb1460 75d432c1
This source diff could not be displayed because it is too large. You can view the blob instead.
<!doctype html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="stylesheet" href="./static/css/iconfont.css"><link rel="stylesheet" href="./static/css/common.css"><link rel="shortcut icon" type="image/x-icon" href="./static/img/favicon.ico"><title>积分商城</title><script defer="defer" src="/integral-mall/js/main.154819456f526249ee24.js"></script><link href="/integral-mall/css/main.64ebdc38f38ac1b202a4.css" rel="stylesheet"></head><body><div id="app"></div><script>(function() {
<!doctype html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="stylesheet" href="./static/css/iconfont.css"><link rel="stylesheet" href="./static/css/common.css"><link rel="shortcut icon" type="image/x-icon" href="./static/img/favicon.ico"><title>积分商城</title><script defer="defer" src="/integral-mall/js/main.104409343183ccd2f3c2.js"></script><link href="/integral-mall/css/main.4998826aaffc40d749b9.css" rel="stylesheet"></head><body><div id="app"></div><script>(function() {
var src = '/component/static/import-component.js?timestrap=' + new Date().getTime();
var host = window.location.host;
host = host.indexOf('localhost') > -1 || host.indexOf('192.168') > -1 ? 'gicdev.demogic.com' : host;
......
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