Commit 27715f97 by zhangmeng

指定会员筛选

parent 340dec2a
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" href=./static/img/favicon.ico><title>GIC后台</title><link rel=stylesheet type=text/css href=static/css/iconfont.css><link rel=stylesheet type=text/css href=static/css/common.css><link href=/marketing/static/css/app.edd2b1388713791a71655c7d32b2c582.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/marketing/static/js/manifest.0a85049e489e85ac5f0a.js></script><script type=text/javascript src=/marketing/static/js/vendor.36a2ac04287db4a87222.js></script><script type=text/javascript src=/marketing/static/js/app.1a47cbc9c2585a446c50.js></script></body></html>
\ No newline at end of file
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" href=./static/img/favicon.ico><title>GIC后台</title><link rel=stylesheet type=text/css href=static/css/iconfont.css><link rel=stylesheet type=text/css href=static/css/common.css><link href=/marketing/static/css/app.1af002822325fdfd8dfa4144f99dbbc0.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/marketing/static/js/manifest.0a85049e489e85ac5f0a.js></script><script type=text/javascript src=/marketing/static/js/vendor.36a2ac04287db4a87222.js></script><script type=text/javascript src=/marketing/static/js/app.4452eb46896932eb3c53.js></script></body></html>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -42515,7 +42515,8 @@
color: #1890ff;
background: transparent;
padding-left: 0;
padding-right: 0; }
padding-right: 0;
padding: 0; }
.el-button--text:hover, .el-button--text:focus {
color: #46a6ff;
border-color: transparent;
......@@ -4,7 +4,7 @@ import page403 from '@/views/error/403'
import page404 from '@/views/error/404'
import page500 from '@/views/error/500'
import test from '@/test/storeInput'
import test from '@/test'
//微信营销
import wechat from './modules/wechat'
......
<template>
<el-popover placement="bottom-start" width="176" trigger="click">
<el-checkbox-group v-model="checkList">
<div v-for="(v,i) in typeList" :key="i">
<el-checkbox :label="v"></el-checkbox>
</div>
</el-checkbox-group>
<div class="el-select w200" slot="reference">
<div class="el-input el-input--suffix">
<div placeholder="请选择" class="el-input__inner"></div>
<span class="el-input__suffix">
<span class="el-input__suffix-inner">
<i class="el-select__caret el-input__icon el-icon-arrow-up"></i>
</span>
</span>
</div>
</div>
</el-popover>
</template>
<script>
export default {
name:'options-type',
data() {
return {
typeList:[1,2,3,4],
checkList:[]
}
},
}
</script>
<style lang="scss">
.w200 {
width: 200px;
}
</style>
<template>
<section>
<el-select v-model="leftValue" placeholder="请选择" class="w200">
<el-option v-for="(v,i) in leftList" :key="i" :label="v.label" :value="v.value"></el-option>
</el-select>
<com-type v-show="leftValue === 2"></com-type>
</section>
</template>
<script>
import comType from './com-type';
export default {
name:'dm-store',
components:{
'com-type':comType
},
data() {
return {
leftValue:2, // 一级选择值
leftList:[
{label:'所有门店',value:1},
{label:'门店类型',value:2},
{label:'门店标签',value:3},
{label:'门店区域',value:4},
{label:'门店分组',value:5},
{label:'部分门店',value:6}
], // 一级列表
}
},
}
</script>
<style lang="scss">
.w200 {
width: 200px;
}
.block{
display: block;
overflow: hidden;
}
</style>
<template>
<div>
<dm-store style="padding:20px;"></dm-store>
</div>
</template>
<script>
import dmStore from './dmStore';
export default {
components:{
'dm-store':dmStore
}
}
</script>
<style lang="scss">
</style>
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