sale-client 3.4.118 → 3.4.119

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.4.118",
3
+ "version": "3.4.119",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -1,254 +1,309 @@
1
- <template style="position: absolute;">
2
- <div class="basic-main">
3
- <criteria-paged :model="model" v-ref:paged>
4
- <criteria partial='criteria' v-ref:criteria @condition-changed='$parent.selfSearch'>
5
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
- <div class="row" width="100%">
7
- <div class="row">
8
- <div class="col-sm-2 form-group">
9
- <label class="font_normal_body">组织机构</label>
10
- <res-select restype='organization'
11
- :is-mul="false"
12
- :initresid="$parent.$parent.curorgid"
13
- @res-select="$parent.$parent.getorgCur">
14
- </res-select>
15
- </div>
16
- <div class="col-sm-2 form-group">
17
- <label class="font_normal_body" for="usercode">用户编号</label>
18
- <input id="usercode" class="input_search" condition="f_userinfo_code like '%{}%'" placeholder="请输入要查询的用户编号" style="width:60%" type="text"
19
- v-el:qjmc v-model="model.f_userinfo_code" v-next-el="cx"
20
- >
21
- </div>
22
- <div class="col-sm-2 form-group">
23
- <label class="font_normal_body" for="username">用户姓名</label>
24
- <input id="username" class="input_search" condition="f_user_name like '%{}%'" placeholder="请输入要查询的用户姓名" style="width:60%" type="text"
25
- v-el:qjmc v-model="model.f_user_name" v-next-el="cx"
26
- >
27
- </div>
28
- <div class="col-sm-2 form-group">
29
- <label class="font_normal_body">开始时间</label>
30
- <datepicker :format="'yyyy-MM-dd'"
31
- :value.sync="model.f_start_date"
32
- placeholder="请输入要查询的日期"
33
- condition="f_start_date >= '{} 00:00:00'"
34
- v-model="model.f_start_date" style="width: 55%">
35
- </datepicker>
36
- </div>
37
- <div class="col-sm-2 form-group">
38
- <label class="font_normal_body">结束时间</label>
39
- <datepicker :format="'yyyy-MM-dd'"
40
- :value.sync="model.f_end_date"
41
- placeholder="请输入要查询的日期"
42
- condition="f_end_date <= '{} 23:59:59'"
43
- v-model="model.f_end_date" style="width: 55%">
44
- </datepicker>
45
- </div>
46
-
47
-
48
- <div style="float:right">
49
- <button @click="$parent.$parent.delete()" class="button_new button_spacing">批量删除</button>
50
- <button class="button_search" @click="search()" v-el:cba>查询</button>
51
- <button class="button_export" @click="$parent.$parent.importFile">导入</button>
52
- <button class="button_search" @click="$parent.$parent.clearmsg">清空</button>
53
- </div>
54
- </div>
55
- </div>
56
- </div>
57
- </criteria>
58
- <data-grid id="webmeterinfo" :model="model" class="list_area table_sy" partial='list' v-ref:grid>
59
- <template partial='head'>
60
- <tr>
61
- <th>
62
- <input type="checkbox" @click="$parent.$parent.$parent.isAll(model.pageIndex)">
63
- </th>
64
- <th><nobr>序号</nobr></th>
65
- <th><nobr>用户编号</nobr></th>
66
- <th><nobr>用户名称</nobr></th>
67
- <th><nobr>单价调整量</nobr></th>
68
- <th><nobr>旧气价</nobr></th>
69
- <th><nobr>新气价</nobr></th>
70
- <th><nobr>补差气量</nobr></th>
71
- <!-- <th><nobr>设备号</nobr></th>-->
72
- <th><nobr>补差金额</nobr></th>
73
- <th><nobr>补差开始时间</nobr></th>
74
- <th><nobr>补差结束日期</nobr></th>
75
- <!-- <th><nobr>表通讯序号</nobr></th>-->
76
- <th><nobr>补差类型</nobr></th>
77
- <th><nobr>状态</nobr></th>
78
-
79
-
80
- </tr>
81
- </template>
82
- <template partial='body' >
83
-
84
- <td style="text-align:center">
85
- <input type="checkbox" v-model="$parent.$parent.$parent.ids"
86
- :value="row.id">
87
- </td>
88
- <td style="text-align: center;" >{{$index+1}}</td>
89
- <td style="text-align: center;" >{{row.f_userinfo_code}}</td>
90
- <td style="text-align: center" >{{row.f_user_name}}</td>
91
- <td style="text-align: center" >{{row.f_change_price}}</td>
92
- <td style="text-align: center" >{{row.f_old_price}}</td>
93
- <td style="text-align: center" >{{row.f_new_price}}</td>
94
- <!-- <td style="text-align: center" >{{row.f_device_id}}</td>-->
95
- <td style="text-align: center" >{{row.f_real_amount}}</td>
96
- <td style="text-align: center" >{{row.f_surplus_fee}}</td>
97
- <td style="text-align: center" >{{row.f_start_date}}</td>
98
- <td style="text-align: center" >{{row.f_end_date}}</td>
99
- <td style="text-align: center" >{{row.f_type}}</td>
100
- <!-- <td style="text-align: center" >{{row.f_vender}}</td>-->
101
-
102
- <td style="text-align: center" >{{row.f_state}}</td>
103
- </template>
104
- </data-grid>
105
- </criteria-paged>
106
- </div>
107
- <modal :show.sync="show" width="500px" title="文件导入" v-ref:modal large backdrop="false">
108
- <article slot="modal-body" class="modal-body">
109
- <file-upload class="my-file-uploader " name="UploadFile" class="btn btn-success" style="border-radius: 2px;"
110
- action="rs/file/uploadFile" tagname="导入表计" v-ref:file :headers="headers" multiple></file-upload>
111
- </article>
112
- <footer slot="modal-footer" class="modal-footer">
113
- </footer>
114
- </modal>
115
- </template>
116
- <script>
117
- import { PagedList } from 'vue-client'
118
- import vue from 'vue'
119
-
120
- export default {
121
- title: '调价导入',
122
- data () {
123
- return {
124
- model: new PagedList('rs/sql/getsurplus', 20, {items: '"*"', tablename: '"t_meterinfo"', orderitem: '"id"'}),
125
-
126
- headers: {'username': vue.$login.f.name},
127
- ids: [],
128
- pages: [],
129
- show: false
130
- }
131
- },
132
- ready () {
133
- this.search()
134
- },
135
-
136
- methods: {
137
- delete () {
138
- if (this.ids.length !== 0) {
139
- this.$refs.paged.$refs.criteria.condition = this.$refs.paged.$refs.criteria.condition + 'and id in (' + this.ids + ')'
140
- }
141
- this.$showMessage('删除后不可恢复,确认删除?', ['confirm', 'cancel']).then((res) => {
142
- if (res === 'confirm') {
143
- this.deleteAdjustImport(this.$refs.paged.$refs.criteria.condition).then((res) => {
144
- this.$dispatch('success')
145
- this.search()
146
- this.ids = []
147
- }).catch((error) => {
148
- this.$dispatch('error', error)
149
- })
150
- }
151
- })
152
- },
153
- deleteAdjustImport (condition) {
154
- console.log(condition)
155
- return vue.resetpost('rs/logic/deleteAdjustImport', {condition: condition}, {resolveMsg: '删除成功', rejectMsg: '删除失败'})
156
- },
157
- isAll (page) {
158
- // console.log(this.model.ids)
159
- if (this.pages.includes(page)) { // 已添加,取消动作
160
- // 从ids中删除本页所有数据的ids
161
- this.addOrRemove(false)
162
- this.pages = this.pages.filter((item) => {
163
- return item !== page
164
- })
165
- } else { // 未添加
166
- this.pages.push(page) // 添加id,添加动作
167
- this.addOrRemove(true)
168
- }
169
- },
170
- addOrRemove (is) {
171
- let that = this
172
- if (is) { // 添加本页所有数据到ids中
173
- this.ids = []
174
- this.model.rows.forEach((row) => {
175
- if (!that.ids.includes(row.id)) {
176
- that.ids.push(row.id)
177
- }
178
- })
179
- } else { // 从ids中取消所有的数据
180
- this.ids = []
181
- this.model.rows.forEach((row) => {
182
- that.ids = that.ids.filter((item) => {
183
- return item !== row.id
184
- })
185
- })
186
- }
187
- },
188
- hidden () {
189
- this.criteriaShow = !this.criteriaShow
190
- },
191
- search () {
192
- this.$refs.paged.$refs.criteria.search()
193
- },
194
- selfSearch (args) {
195
- if (!this.f_orgid) {
196
- this.getorgCur([this.$login.f.orgid])
197
- }
198
- if (this.f_orgid) {
199
- args.condition = `${args.condition} and f_orgid in ${this.f_orgid}`
200
- }
201
- this.model.search(args.condition, args.model)
202
- },
203
-
204
- getorgCur (val) {
205
- console.log('组织事件返回。。', val[0])
206
- this.f_orgid = this.$login.convertToIn(val)
207
- this.f_filialeids = val[0]
208
- this.$parent.f_filialeid = val[0]
209
- this.search()
210
- },
211
- importFile () {
212
- this.show = true
213
- }
214
-
215
- },
216
- events: {
217
- onFileUpload: function (file, res) {
218
- console.log(this.$login.f, '======')
219
- console.log(res)
220
-
221
- let data = {
222
- filepath: res.f_downloadpath,
223
- f_operator: this.$login.f.name,
224
- f_operatorid: this.$login.f.id,
225
- f_orgid: this.$login.f.orgid,
226
- f_orgname: this.$login.f.orgs,
227
- f_depid: this.$login.f.depids,
228
- f_depname: this.$login.f.deps
229
- }
230
-
231
- console.log(data, '++++++++++++++++++++++++++')
232
- this.$resetpost('rs/logic/thirdSurplus', {data: data}, {resolveMsg: '上传成功', rejectMsg: '上传失败'}).then((res) => {
233
- // window.location.href = '/excel/表具导入异常信息.txt';
234
- this.show = false
235
- this.search()
236
- })
237
- }
238
- }
239
- }
240
- </script>
241
- <style>
242
- .form-input-group label {
243
- text-align: right;
244
- width: auto;
245
- }
246
- .datapanel {
247
- color: #333;
248
- background-color: white;
249
- box-shadow: darkgrey 0.5px 0.5px 0.5px 0.5px ;
250
- padding: 10px 30px 10px 30px;
251
- border-radius:15px;
252
- }
253
- </style>
254
-
1
+ <template style="position: absolute;">
2
+ <div :class="{'basic-main':!showItem,'binary-left':showItem}" style="height:98%;" >
3
+ <criteria-paged :model="model" v-ref:paged>
4
+ <criteria partial='criteria' v-ref:criteria @condition-changed='$parent.selfSearch'>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
+ <div class="row" width="100%">
7
+ <div class="row">
8
+ <div class="col-sm-2 form-group">
9
+ <label class="font_normal_body">组织机构</label>
10
+ <res-select
11
+ :initresid='$parent.$parent.curorgid'
12
+ @res-select="$parent.$parent.getorgCur"
13
+ is-mul="false"
14
+ v-model="$parent.$parent.curorgid"
15
+ :value.sync="$parent.$parent.curorgid"
16
+ restype='organization'
17
+ >
18
+ </res-select>
19
+ </div>
20
+ <div class="col-sm-2 form-group">
21
+ <label class="font_normal_body" for="usercode">用户编号</label>
22
+ <input id="usercode" class="input_search" condition="f_userinfo_code like '%{}%'" placeholder="请输入要查询的用户编号" style="width:60%" type="text"
23
+ v-el:qjmc v-model="model.f_userinfo_code" v-next-el="cx"
24
+ >
25
+ </div>
26
+ <div class="col-sm-2 form-group">
27
+ <label class="font_normal_body" for="username">用户姓名</label>
28
+ <input id="username" class="input_search" condition="f_user_name like '%{}%'" placeholder="请输入要查询的用户姓名" style="width:60%" type="text"
29
+ v-el:qjmc v-model="model.f_user_name" v-next-el="cx"
30
+ >
31
+ </div>
32
+
33
+ <div class="span" style="float:right;">
34
+ <button class="button_search" @click="search()" v-el:cba>查询</button>
35
+ <button class="button_export" @click="$parent.$parent.importFile">导入</button>
36
+ <button class="button_search" @click="$parent.$parent.clear">清空</button>
37
+ <button @click="$parent.$parent.delete()" v-show="$parent.$parent.deleteShow" class="button_delete">批量删除</button>
38
+ <div class="button_spacing" style="float:right;"
39
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
40
+ @click="$parent.$parent.hidden()"></div>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ <div class="row" v-show="$parent.$parent.criteriaShow" >
45
+ <div class="col-sm-2 form-group">
46
+ <label class="font_normal_body">开始时间</label>
47
+ <datepicker :format="'yyyy-MM-dd'"
48
+ :value.sync="model.f_start_date"
49
+ condition="f_start_date >= '{} 00:00:00'"
50
+ v-model="model.f_start_date" style="width: 55%">
51
+ </datepicker>
52
+ </div>
53
+ <div class="col-sm-2 form-group">
54
+ <label class="font_normal_body">结束时间</label>
55
+ <datepicker :format="'yyyy-MM-dd'"
56
+ :value.sync="model.f_end_date"
57
+ condition="f_end_date <= '{} 23:59:59'"
58
+ v-model="model.f_end_date" style="width: 55%">
59
+ </datepicker>
60
+ </div>
61
+ <div class="col-sm-2 form-group">
62
+ <label class="font_normal_body" title="参数名称:补差状态">补差状态</label>
63
+ <v-select id="f_adjust_state"
64
+ v-model="model.f_state"
65
+ placeholder='状态'
66
+ condition="f_state ='{}'"
67
+ :value.sync="model.f_state"
68
+ :options='$parent.$parent.states'
69
+ close-on-select clear-button>
70
+ </v-select>
71
+ </div>
72
+ <div class="col-sm-2 form-group">
73
+ <label class="font_normal_body" title="参数名称:是否缴费">是否缴费</label>
74
+ <v-select id="f_whether_pay"
75
+ v-model="model.f_whether_pay"
76
+ placeholder='是否缴费'
77
+ condition="f_whether_pay ='{}'"
78
+ :value.sync="model.f_whether_pay"
79
+ :options='$parent.$parent.whetherPay'
80
+ close-on-select clear-button>
81
+ </v-select>
82
+ </div>
83
+ <div class="col-sm-2 form-group">
84
+ <label class="font_normal_body" for="operator">操作人</label>
85
+ <input id="operator" class="input_search" condition="f_operator like '%{}%'" placeholder="请输入要查询的操作人" style="width:60%" type="text"
86
+ v-el:qjmc v-model="model.f_operator" v-next-el="cx"
87
+ >
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </criteria>
92
+ <data-grid id="webmeterinfo" :model="model" class="list_area table_sy" partial='list' v-ref:grid>
93
+ <template partial='head'>
94
+ <tr>
95
+ <th>
96
+ <input type="checkbox" v-show="$parent.$parent.$parent.deleteShow" @click="$parent.$parent.$parent.isAll(model.pageIndex)">
97
+ </th>
98
+ <th><nobr>序号</nobr></th>
99
+ <th><nobr>用户编号</nobr></th>
100
+ <th><nobr>用户名称</nobr></th>
101
+ <th><nobr>单价调整量</nobr></th>
102
+ <th><nobr>旧气价</nobr></th>
103
+ <th><nobr>新气价</nobr></th>
104
+ <th><nobr>补差气量</nobr></th>
105
+ <!-- <th><nobr>设备号</nobr></th>-->
106
+ <th><nobr>补差金额</nobr></th>
107
+ <th><nobr>补差开始时间</nobr></th>
108
+ <th><nobr>补差结束日期</nobr></th>
109
+ <!-- <th><nobr>表通讯序号</nobr></th>-->
110
+ <th><nobr>补差类型</nobr></th>
111
+ <th><nobr>是否缴费</nobr></th>
112
+ <th><nobr>操作人</nobr></th>
113
+ <th><nobr>状态</nobr></th>
114
+
115
+
116
+ </tr>
117
+ </template>
118
+ <template partial='body' >
119
+
120
+ <td style="text-align:center">
121
+ <input type="checkbox" v-show="$parent.$parent.$parent.deleteShow" v-model="$parent.$parent.$parent.ids"
122
+ :value="row.id">
123
+ </td>
124
+ <td style="text-align: center;" >{{$index+1}}</td>
125
+ <td style="text-align: center;" >{{row.f_userinfo_code}}</td>
126
+ <td style="text-align: center" >{{row.f_user_name}}</td>
127
+ <td style="text-align: center" >{{row.f_change_price}}</td>
128
+ <td style="text-align: center" >{{row.f_old_price}}</td>
129
+ <td style="text-align: center" >{{row.f_new_price}}</td>
130
+ <!-- <td style="text-align: center" >{{row.f_device_id}}</td>-->
131
+ <td style="text-align: center" >{{row.f_real_amount}}</td>
132
+ <td style="text-align: center" >{{row.f_surplus_fee}}</td>
133
+ <td style="text-align: center" >{{row.f_start_date}}</td>
134
+ <td style="text-align: center" >{{row.f_end_date}}</td>
135
+ <td style="text-align: center" >{{row.f_type}}</td>
136
+ <!-- <td style="text-align: center" >{{row.f_vender}}</td>-->
137
+ <td style="text-align: center" >{{row.f_whether_pay}}</td>
138
+ <td style="text-align: center" >{{row.f_operator}}</td>
139
+ <td style="text-align: center" >{{row.f_state}}</td>
140
+ </template>
141
+ </data-grid>
142
+ </criteria-paged>
143
+ </div>
144
+ <modal :show.sync="show" width="500px" title="文件导入" v-ref:modal large backdrop="false">
145
+ <article slot="modal-body" class="modal-body">
146
+ <file-upload class="my-file-uploader " name="UploadFile" class="btn btn-success" style="border-radius: 2px;"
147
+ action="rs/file/uploadFile" tagname="导入表计" v-ref:file :headers="headers" multiple></file-upload>
148
+ </article>
149
+ <footer slot="modal-footer" class="modal-footer">
150
+ </footer>
151
+ </modal>
152
+ </template>
153
+ <script>
154
+ import { PagedList } from 'vue-client'
155
+ import vue from 'vue'
156
+
157
+ export default {
158
+ title: '调价导入',
159
+ data () {
160
+ return {
161
+ model: new PagedList('rs/sql/getsurplus', 20, {items: '"*"', tablename: '"t_meterinfo"', orderitem: '"id"'}),
162
+ criteriaShow: false,
163
+ curorgid: [this.$login.f.orgid],
164
+ headers: {'username': vue.$login.f.name},
165
+ ids: [],
166
+ f_state: '',
167
+ f_whether_pay: '',
168
+ deleteShow: false,
169
+ f_filialeid: this.$login.f.orgid,
170
+ pages: [],
171
+ whetherPay: this.$appdata.getParam('是否缴费') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('是否缴费')] : [],
172
+ states: this.$appdata.getParam('补差状态') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('补差状态')] : [],
173
+ show: false
174
+ }
175
+ },
176
+ ready () {
177
+ this.search()
178
+ },
179
+
180
+ methods: {
181
+ clear () {
182
+ Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
183
+ this.$refs.paged.$refs.criteria.model[key] = []
184
+ })
185
+ this.deleteShow = false
186
+ },
187
+ delete () {
188
+ if (this.ids.length !== 0) {
189
+ this.$refs.paged.$refs.criteria.condition = this.$refs.paged.$refs.criteria.condition + 'and id in (' + this.ids + ')'
190
+ }
191
+ this.$showMessage('删除后不可恢复,确认删除?', ['confirm', 'cancel']).then((res) => {
192
+ if (res === 'confirm') {
193
+ this.deleteAdjustImport(this.$refs.paged.$refs.criteria.condition).then((res) => {
194
+ this.$dispatch('success')
195
+ this.search()
196
+ this.ids = []
197
+ }).catch((error) => {
198
+ this.$dispatch('error', error)
199
+ })
200
+ }
201
+ })
202
+ },
203
+ deleteAdjustImport (condition) {
204
+ console.log(condition)
205
+ return vue.resetpost('rs/logic/deleteAdjustImport', {condition: condition}, {resolveMsg: '删除成功', rejectMsg: '删除失败'})
206
+ },
207
+ isAll (page) {
208
+ // console.log(this.model.ids)
209
+ if (this.pages.includes(page)) { // 已添加,取消动作
210
+ // 从ids中删除本页所有数据的ids
211
+ this.addOrRemove(false)
212
+ this.pages = this.pages.filter((item) => {
213
+ return item !== page
214
+ })
215
+ } else { // 未添加
216
+ this.pages.push(page) // 添加id,添加动作
217
+ this.addOrRemove(true)
218
+ }
219
+ },
220
+ addOrRemove (is) {
221
+ let that = this
222
+ if (is) { // 添加本页所有数据到ids中
223
+ this.ids = []
224
+ this.model.rows.forEach((row) => {
225
+ if (!that.ids.includes(row.id)) {
226
+ that.ids.push(row.id)
227
+ }
228
+ })
229
+ } else { // 从ids中取消所有的数据
230
+ this.ids = []
231
+ this.model.rows.forEach((row) => {
232
+ that.ids = that.ids.filter((item) => {
233
+ return item !== row.id
234
+ })
235
+ })
236
+ }
237
+ },
238
+ hidden () {
239
+ this.criteriaShow = !this.criteriaShow
240
+ },
241
+ search () {
242
+ this.$refs.paged.$refs.criteria.search()
243
+ },
244
+ selfSearch (args) {
245
+ if (!this.f_orgid) {
246
+ this.getorgCur([this.$login.f.orgid])
247
+ }
248
+ if (this.f_orgid) {
249
+ args.condition = `${args.condition} and f_orgid in ${this.f_orgid}`
250
+ this.model.search(args.condition, args.model)
251
+ }
252
+ if (args.condition.includes('f_state =\'有效\' and f_whether_pay =\'否\'')) {
253
+ this.deleteShow = true
254
+ } else {
255
+ this.deleteShow = false
256
+ }
257
+ },
258
+
259
+ getorgCur (val) {
260
+ console.log('组织事件返回。。', val[0])
261
+ this.f_orgid = this.$login.convertToIn(val)
262
+ this.f_filialeids = val[0]
263
+ this.$parent.f_filialeid = val[0]
264
+ this.search()
265
+ },
266
+ importFile () {
267
+ this.show = true
268
+ }
269
+
270
+ },
271
+ events: {
272
+ onFileUpload: function (file, res) {
273
+ console.log(this.$login.f, '======')
274
+ console.log(res)
275
+
276
+ let data = {
277
+ filepath: res.f_downloadpath,
278
+ f_operator: this.$login.f.name,
279
+ f_operatorid: this.$login.f.id,
280
+ f_orgid: this.$login.f.orgid,
281
+ f_orgname: this.$login.f.orgs,
282
+ f_depid: this.$login.f.depids,
283
+ f_depname: this.$login.f.deps
284
+ }
285
+
286
+ console.log(data, '++++++++++++++++++++++++++')
287
+ this.$resetpost('rs/logic/thirdSurplus', {data: data}, {resolveMsg: '上传成功', rejectMsg: '上传失败'}).then((res) => {
288
+ // window.location.href = '/excel/表具导入异常信息.txt';
289
+ this.show = false
290
+ this.search()
291
+ })
292
+ }
293
+ }
294
+ }
295
+ </script>
296
+ <style>
297
+ .form-input-group label {
298
+ text-align: right;
299
+ width: auto;
300
+ }
301
+ .datapanel {
302
+ color: #333;
303
+ background-color: white;
304
+ box-shadow: darkgrey 0.5px 0.5px 0.5px 0.5px ;
305
+ padding: 10px 30px 10px 30px;
306
+ border-radius:15px;
307
+ }
308
+ </style>
309
+
package/src/main.js CHANGED
@@ -12,7 +12,7 @@ Vue.config.silent = true
12
12
 
13
13
  all()
14
14
  system(false)
15
- sale()
15
+ sale('shanggao')
16
16
  address()
17
17
  ldap()
18
18
  require('system-clients/src/styles/less/bootstrap.less')