权限控制

master
Caps 6 years ago
parent 18d0acca1a
commit c41c620512

@ -47,11 +47,13 @@
columns1: [ columns1: [
{ {
title: '序号', title: '序号',
key: 'index' key: 'index',
width: '80px'
}, },
{ {
title: '零售公司名称', title: '零售公司名称',
key: 'retailCompany' key: 'retailCompany',
width: '250px'
}, },
{ {
title: '总好友数', title: '总好友数',

@ -67,7 +67,8 @@
columns1: [ columns1: [
{ {
title: '序号', title: '序号',
key: 'index' key: 'index',
width: '80px'
}, },
{ {
title: '导购名称', title: '导购名称',
@ -79,7 +80,8 @@
}, },
{ {
title: '所属店铺', title: '所属店铺',
key: 'shopName' key: 'shopName',
width: '250px'
}, },
{ {
title: '店铺编码', title: '店铺编码',
@ -87,7 +89,8 @@
}, },
{ {
title: '所属零售公司', title: '所属零售公司',
key: 'companyName' key: 'companyName',
width: '250px'
}, },
{ {
title: '总好友数', title: '总好友数',

@ -7,7 +7,8 @@
<p class="region">选择日期</p> <p class="region">选择日期</p>
</i-col> </i-col>
<i-col span="4" style="padding-left: 10px;"> <i-col span="4" style="padding-left: 10px;">
<DatePicker @on-change="onChangeDateLister" :value="selectDate" type="daterange" split-panels placeholder="请选择日期" style="width: 200px"></DatePicker> <DatePicker @on-change="onChangeDateLister" :value="selectDate" type="daterange" split-panels
placeholder="请选择日期" style="width: 200px"></DatePicker>
</i-col> </i-col>
<i-col span="2" style="text-align: right;"> <i-col span="2" style="text-align: right;">
<span class="region">零售公司</span> <span class="region">零售公司</span>
@ -44,6 +45,7 @@
<script> <script>
import IncreaseData from "../../services/generalize/IncreaseData"; import IncreaseData from "../../services/generalize/IncreaseData";
export default { export default {
name: "IncreaseDataStore", name: "IncreaseDataStore",
data() { data() {
@ -57,10 +59,12 @@
{ {
title: '序号', title: '序号',
key: 'index', key: 'index',
width: '80px'
}, },
{ {
title: '店铺', title: '店铺',
key: 'shopName' key: 'shopName',
width: '250px'
}, },
{ {
title: '店铺编号', title: '店铺编号',
@ -68,7 +72,8 @@
}, },
{ {
title: '所属零售公司', title: '所属零售公司',
key: 'companyName' key: 'companyName',
width: '250px'
}, },
{ {
title: '总好友数', title: '总好友数',
@ -306,6 +311,7 @@
font-size: 14px; font-size: 14px;
line-height: 32px; line-height: 32px;
} }
.row-style { .row-style {
padding-top: 20px; padding-top: 20px;
padding-bottom: 20px; padding-bottom: 20px;

Loading…
Cancel
Save