sale-client 3.6.76 → 3.6.78
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/build/dev-server.js +2 -2
- package/package.json +1 -1
- package/src/components/FilesManage/UserGeneralInfoTest.vue +11 -0
- package/src/components/FilesManageNew/UserGeneralInfoTest.vue +11 -0
- package/src/components/revenue/comprehen/Bill/EticketV4/EticketRecordList.vue +12 -4
- package/src/components/revenue/comprehen/ComprehenOperation/MeterDisable/DisableManage.vue +1 -0
- package/src/components/webMeter/MeterManage/WebMeterBatchOperationValve.vue +1 -0
- package/src/filiale/gehua/MeterinfoTest.vue +8 -2
- package/src/filiale/rizhao/ChargeList.vue +7 -1
- package/src/filiale/rongcheng/ChargeModal.vue +178 -0
- package/src/filiale/rongcheng/sale.js +2 -0
- package/src/filiale/shanxian/components/webMeter/WebMeterBatchOperationValve.vue +1 -0
- package/src/filiale/yuansheng/icTable.vue +4 -5
- package/src/filiale/yuansheng/sale.js +2 -0
- package/src/main.js +1 -2
package/build/dev-server.js
CHANGED
package/package.json
CHANGED
|
@@ -24,7 +24,12 @@
|
|
|
24
24
|
<div style="height: auto;width: 100%">
|
|
25
25
|
<div style="margin-bottom: 2%; margin-top: 2%">
|
|
26
26
|
<img style="margin-top: -5px" src="../../../static/images/lefticon/矩形1183.png">
|
|
27
|
+
<span v-if="!usertype">
|
|
27
28
|
<a style="font-size: 20px;font-weight: 500;">发票信息</a> <a style="color: #999999"></a>
|
|
29
|
+
</span>
|
|
30
|
+
<span v-if="usertype">
|
|
31
|
+
<a style="font-size: 20px;font-weight: 500;">企业信息</a> <a style="color: #999999"></a>
|
|
32
|
+
</span>
|
|
28
33
|
</div>
|
|
29
34
|
<user-paper-info-test :baseinfo="data.baseinfo"></user-paper-info-test>
|
|
30
35
|
</div>
|
|
@@ -649,6 +654,12 @@ export default {
|
|
|
649
654
|
}
|
|
650
655
|
},
|
|
651
656
|
computed: {
|
|
657
|
+
usertype () {
|
|
658
|
+
if (this.row && this.row.f_user_type) {
|
|
659
|
+
return this.row.f_user_type == '非民用'
|
|
660
|
+
}
|
|
661
|
+
return this.$refs.useressential.$refs.useraddressinfile.usertype
|
|
662
|
+
},
|
|
652
663
|
meterbrands () {
|
|
653
664
|
return this.$GetSaleParam.getGasbrand()
|
|
654
665
|
},
|
|
@@ -20,7 +20,12 @@
|
|
|
20
20
|
<div style="height: auto;width: 100%">
|
|
21
21
|
<div style="margin-bottom: 2%; margin-top: 2%">
|
|
22
22
|
<img style="margin-top: -5px" src="../../../static/images/lefticon/矩形1183.png">
|
|
23
|
+
<span v-if="!usertype">
|
|
23
24
|
<a style="font-size: 20px;font-weight: 500;">发票信息</a> <a style="color: #999999"></a>
|
|
25
|
+
</span>
|
|
26
|
+
<span v-if="usertype">
|
|
27
|
+
<a style="font-size: 20px;font-weight: 500;">企业信息</a> <a style="color: #999999"></a>
|
|
28
|
+
</span>
|
|
24
29
|
</div>
|
|
25
30
|
<user-paper-info-test :baseinfo="data.baseinfo"></user-paper-info-test>
|
|
26
31
|
</div>
|
|
@@ -581,6 +586,12 @@ export default {
|
|
|
581
586
|
}
|
|
582
587
|
},
|
|
583
588
|
computed: {
|
|
589
|
+
usertype () {
|
|
590
|
+
if (this.row && this.row.f_user_type) {
|
|
591
|
+
return this.row.f_user_type == '非民用'
|
|
592
|
+
}
|
|
593
|
+
return this.$refs.useressential.$refs.useraddressinfile.usertype
|
|
594
|
+
},
|
|
584
595
|
meterbrands () {
|
|
585
596
|
return this.$GetSaleParam.getGasbrand()
|
|
586
597
|
},
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<div class="form-group col-sm-2">
|
|
20
20
|
<label class="font_normal_body">客户地址</label>
|
|
21
21
|
<input type="text" class="form-control" v-model="model.f_buy_address_phone" style="width:60%"
|
|
22
|
-
condition="f_buy_address_phone like '%{}%'" placeholder="
|
|
22
|
+
condition="f_buy_address_phone like '%{}%'" placeholder="客户地址"
|
|
23
23
|
>
|
|
24
24
|
</div>
|
|
25
25
|
<div class="form-group col-sm-2">
|
|
@@ -114,6 +114,10 @@
|
|
|
114
114
|
</th>
|
|
115
115
|
<th>
|
|
116
116
|
<data-order field="f_total_money" name="实收金额"
|
|
117
|
+
:order.sync="$parent.$parent.$parent.orderFields.f_collection"></data-order>
|
|
118
|
+
</th>
|
|
119
|
+
<th>
|
|
120
|
+
<data-order field="f_total_money" name="开票金额"
|
|
117
121
|
:order.sync="$parent.$parent.$parent.orderFields.f_total_money"></data-order>
|
|
118
122
|
</th>
|
|
119
123
|
<th>
|
|
@@ -159,6 +163,7 @@
|
|
|
159
163
|
<th style="text-align:center">{{ row.f_userinfo_code }}</th>
|
|
160
164
|
<th style="text-align:center">{{ row.f_user_name }}</th>
|
|
161
165
|
<th style="text-align:center">{{ row.f_buy_address_phone }}</th>
|
|
166
|
+
<th style="text-align:center">{{ row.f_collection }}</th>
|
|
162
167
|
<th style="text-align:center">{{ row.f_total_money }}</th>
|
|
163
168
|
<th style="text-align:center">{{ row.f_tax_money }}</th>
|
|
164
169
|
<th style="text-align:center">{{ row.f_invoice_type }}</th>
|
|
@@ -246,15 +251,18 @@ export default {
|
|
|
246
251
|
bz: '',
|
|
247
252
|
row: {},
|
|
248
253
|
orderFields: {
|
|
249
|
-
f_operate_date: 'desc'
|
|
254
|
+
f_operate_date: 'desc',
|
|
255
|
+
f_collection: 'no',
|
|
256
|
+
f_total_money: 'no'
|
|
250
257
|
},
|
|
251
258
|
// 排序
|
|
252
|
-
orderitem: '',
|
|
259
|
+
orderitem: ' f_operate_date desc ',
|
|
253
260
|
fields: {
|
|
254
261
|
'f_userinfo_code': '客户编号',
|
|
255
262
|
'f_user_name': '客户姓名',
|
|
256
263
|
'f_buy_address_phone': '用户地址',
|
|
257
|
-
'
|
|
264
|
+
'f_collection': '实收金额',
|
|
265
|
+
'f_total_money': '开票金额',
|
|
258
266
|
'f_tax_money': '不含税金额',
|
|
259
267
|
'f_invoice_type': '发票类型',
|
|
260
268
|
'f_bill_code': '发票代码',
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<!-- <v-select :value.sync="row.gasbrand" :options='meterbrands' placeholder='气表品牌' close-on-select
|
|
46
46
|
search @change='brandChange' v-model='row.gasbrand' :disabled="!((row.f_meter_classify.indexOf('卡表') !== -1&&row.f_user_state === '预备') || (row.f_meter_classify.indexOf('卡表') !== -1&&row.f_whether_hairpin === '未发'))" v-ref:brand></v-select>-->
|
|
47
47
|
<v-select :value.sync="row.gasbrand" :options='meterbrands' placeholder='气表品牌' close-on-select
|
|
48
|
-
search @change='brandChange' v-model='row.gasbrand' :disabled="
|
|
48
|
+
search @change='brandChange' v-model='row.gasbrand' :disabled="user_State === '正常'" v-ref:brand></v-select>
|
|
49
49
|
</div>
|
|
50
50
|
<div class="col-sm-4 form-group" :class="[$m.model.required ? 'has-error' : '']">
|
|
51
51
|
<label for="gasmodel" class="font_normal_body">气表型号</label>
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
<!-- v-model='row.gasmodel' :disabled="!(row.gasbrand.length !== 0 && ((row.f_meter_classify.indexOf('卡表') !== -1&&row.f_user_state === '预备') || (row.f_meter_classify.indexOf('卡表') !== -1&&row.f_whether_hairpin === '未发')))" v-ref:model></v-select>-->
|
|
57
57
|
<v-select :value.sync="row.gasmodel" :options='row.gasbrand[0].gasmodel' placeholder='气表型号'
|
|
58
58
|
close-on-select
|
|
59
|
-
v-model='row.gasmodel' :disabled="!(row.gasbrand.length !== 0 && (
|
|
59
|
+
v-model='row.gasmodel' :disabled="!(row.gasbrand.length !== 0 && (user_State !== '正常'))" v-ref:model></v-select>
|
|
60
60
|
</div>
|
|
61
61
|
<div class="col-sm-4 form-group">
|
|
62
62
|
<label for="f_meter_base" class="font_normal_body"> 累购气量</label>
|
|
@@ -576,6 +576,7 @@
|
|
|
576
576
|
props: ['f_filialeid', 'meter', 'isdecimal', 'valid', 'f_userinfo_id', 'overdueset', 'curuser'],
|
|
577
577
|
async ready () {
|
|
578
578
|
this.user_State = this.curuser.f_user_state
|
|
579
|
+
console.log(this.user_State)
|
|
579
580
|
this.row = Object.assign(this.row, this.meter, {f_use_limit : this.$appdata.getSingleValue('报废年限')})
|
|
580
581
|
if (this.row.f_meter_classify) {
|
|
581
582
|
if (this.row.f_meter_classify === '物联网表') {
|
|
@@ -671,6 +672,11 @@
|
|
|
671
672
|
co(brandChangeGen(this))
|
|
672
673
|
}
|
|
673
674
|
this.meternumberValidate()
|
|
675
|
+
console.log('---------------------------------')
|
|
676
|
+
console.log(this.curuser)
|
|
677
|
+
console.log(this.meter)
|
|
678
|
+
console.log(this.user_State)
|
|
679
|
+
console.log('---------------------------------')
|
|
674
680
|
},
|
|
675
681
|
userTypeChange () {
|
|
676
682
|
this.gasproperties = []
|
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
<p class="form-control-static">{{userAddress}}</p>
|
|
308
308
|
</div>
|
|
309
309
|
<label class="col-sm-2 control-label" v-if="showOrgname">所属公司</label>
|
|
310
|
-
<div class="col-sm-
|
|
310
|
+
<div class="col-sm-10" v-if="showOrgname">
|
|
311
311
|
<p class="form-control-static" style="color: red">{{orgName}}</p>
|
|
312
312
|
</div>
|
|
313
313
|
</div>
|
|
@@ -575,6 +575,12 @@
|
|
|
575
575
|
if (getUser.data[0].f_filialeid != self.$login.f.orgid) {
|
|
576
576
|
self.showCardError = true
|
|
577
577
|
self.showCardError2 = true
|
|
578
|
+
self.orgName = ''
|
|
579
|
+
let arr = []
|
|
580
|
+
for(let i=0;i < getUser.data.length;i++){
|
|
581
|
+
arr.push(getUser.data[i].f_orgname)
|
|
582
|
+
}
|
|
583
|
+
self.orgName = arr.join(", ")
|
|
578
584
|
self.showOrgname = true
|
|
579
585
|
return
|
|
580
586
|
}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<modal :show.sync="modalShow" backdrop="false" width="50%" title="提示信息">
|
|
3
|
+
<article slot="modal-body">
|
|
4
|
+
<div style="width:98%;margin: auto" v-show="showInformation">
|
|
5
|
+
<div v-show="filesNotComplete" style="font-size: 15px;padding: 10px"> 用户档案信息不全,请完善
|
|
6
|
+
<span style="float: right">
|
|
7
|
+
<button class="button_search" @click="operational('files_complete')"
|
|
8
|
+
style="width: max-content;">完善信息</button>
|
|
9
|
+
<button class="button_search" @click="close">取消</button>
|
|
10
|
+
</span>
|
|
11
|
+
</div>
|
|
12
|
+
<div v-show="isBlackList" style="font-size: 15px;padding: 10px"> 黑名单用户,无法进行收费操作,{{ userproperties }}
|
|
13
|
+
</div>
|
|
14
|
+
<div v-show="isInvoList" style="font-size: 15px;padding: 10px"> {{ involists }}
|
|
15
|
+
</div>
|
|
16
|
+
<span v-show="isInvoList || isBlackList" style="float: right">
|
|
17
|
+
<button class="button_search" @click="close">确定</button>
|
|
18
|
+
</span>
|
|
19
|
+
<div v-show="!isBlackList&&isBasicLiving" style="font-size: 15px;padding: 10px"> {{ basicinformation }}
|
|
20
|
+
<span style="float: right">
|
|
21
|
+
<button class="button_search" @click="operational('basic-living')"
|
|
22
|
+
style="width: max-content;">低保续保</button>
|
|
23
|
+
<button class="button_search" @click="operational('stop-basic-living')" v-if="stopBasicLiving"
|
|
24
|
+
style="width: max-content;">停止续保</button>
|
|
25
|
+
<button class="button_search btn-gn" @click="success('isBasicLiving')" v-if="!stopBasicLiving">确认</button>
|
|
26
|
+
</span>
|
|
27
|
+
</div>
|
|
28
|
+
<p>{{ authorityInformation }}</p>
|
|
29
|
+
</div>
|
|
30
|
+
<div style="width:98%;margin: auto" v-show="!showInformation">
|
|
31
|
+
<route v-ref:route @close="close" @success="success" v-show="!showInformation" :data="row"></route>
|
|
32
|
+
</div>
|
|
33
|
+
</article>
|
|
34
|
+
<footer slot="modal-footer" class="modal-footer" style="text-align: center;border: 0">
|
|
35
|
+
<!--如果想忽略到期信息,modal的值设为null-->
|
|
36
|
+
<!-- <button class="button_clear" @click="ignore" v-if="basicLiving">忽略</button>-->
|
|
37
|
+
</footer>
|
|
38
|
+
</modal>
|
|
39
|
+
</template>
|
|
40
|
+
<script>
|
|
41
|
+
|
|
42
|
+
let initGen = async function (self) {
|
|
43
|
+
if (!self.row.f_price_id || !self.row.f_gasmodel_id || !self.row.f_gasbrand_id) {
|
|
44
|
+
self.filesNotComplete = true
|
|
45
|
+
}
|
|
46
|
+
let _this = self
|
|
47
|
+
self.$login.f.functions[1].children.forEach(function (value) {
|
|
48
|
+
if (value.name === '特殊用户') {
|
|
49
|
+
_this.basicLivingAuthority = true
|
|
50
|
+
}
|
|
51
|
+
})
|
|
52
|
+
console.log('============================', self.data)
|
|
53
|
+
console.log('============================', self.data2)
|
|
54
|
+
if (self.data2.data.length > 0) {
|
|
55
|
+
// isInvoList involists
|
|
56
|
+
_this.isInvoList = true
|
|
57
|
+
self.data2.data.forEach(function (value) {
|
|
58
|
+
_this.involists = '尊敬的' + (value.f_invoice_name) + '用户您好, 您有一张未领取发票, 发票金额为' + (value.f_invoice_money) +
|
|
59
|
+
', 发票日期为' + (value.f_invoice_date) + ', 请您及时领取'
|
|
60
|
+
})
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
self.data.data.forEach(function (value) {
|
|
64
|
+
if (value.f_parameter_key === 'dibaohu_endDate' && _this.basicLivingAuthority) {
|
|
65
|
+
if (value.days <= 0) {
|
|
66
|
+
_this.isBasicLiving = true
|
|
67
|
+
_this.basicinformation = '低保已到期' + (-value.days) + '天'
|
|
68
|
+
_this.stopBasicLiving = true
|
|
69
|
+
} else if (value.days > 0 && value.days < self.dibao_remind) {
|
|
70
|
+
_this.isBasicLiving = true
|
|
71
|
+
_this.basicinformation = '低保还有' + (value.days) + '天到期'
|
|
72
|
+
} else {
|
|
73
|
+
console.log('低保剩余天数大于提醒天数')
|
|
74
|
+
}
|
|
75
|
+
} else if (value.f_parameter_key === 'blackList' && _this.filesCompleteAuthority) {
|
|
76
|
+
_this.isBlackList = true
|
|
77
|
+
_this.userproperties = '该用户为黑名单用户,被限制购气,原因为' + (value.f_comments)
|
|
78
|
+
if (value.f_offsite_time) {
|
|
79
|
+
_this.userproperties += '(安检日期)' + (value.f_offsite_time)
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
})
|
|
83
|
+
if (!self.filesNotComplete && !self.isBlackList && !self.isBasicLiving) {
|
|
84
|
+
self.authorityInformation = '您没有相关的业务操作权限, 请联系管理员!!'
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export default {
|
|
89
|
+
title: '收费弹出框',
|
|
90
|
+
props: {
|
|
91
|
+
// 动态属性表数据
|
|
92
|
+
data: {
|
|
93
|
+
type: Object
|
|
94
|
+
},
|
|
95
|
+
// 动态属性表数据
|
|
96
|
+
data2: {
|
|
97
|
+
type: Object
|
|
98
|
+
},
|
|
99
|
+
// 双击用户的数据
|
|
100
|
+
row: {
|
|
101
|
+
type: Object
|
|
102
|
+
},
|
|
103
|
+
modalShow: {
|
|
104
|
+
type: Boolean
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
data() {
|
|
108
|
+
return {
|
|
109
|
+
showInformation: true,
|
|
110
|
+
informationtype: '',
|
|
111
|
+
// 档案不完善
|
|
112
|
+
filesNotComplete: false,
|
|
113
|
+
// 黑名单
|
|
114
|
+
isBlackList: false,
|
|
115
|
+
// 未领发票
|
|
116
|
+
isInvoList: false,
|
|
117
|
+
// 低保户到期
|
|
118
|
+
isBasicLiving: false,
|
|
119
|
+
// 终止低保户 必选低保户到期
|
|
120
|
+
stopBasicLiving: false,
|
|
121
|
+
// 低保户信息
|
|
122
|
+
basicinformation: '',
|
|
123
|
+
// 黑名单信息
|
|
124
|
+
userproperties: '',
|
|
125
|
+
// 发票未领取信息
|
|
126
|
+
involists: '',
|
|
127
|
+
// 低保户到期提醒时间
|
|
128
|
+
dibao_remind: this.$appdata.getSingleValue('低保快到期提醒') ? this.$appdata.getSingleValue('低保快到期提醒') : 0,
|
|
129
|
+
// 低保户权限
|
|
130
|
+
basicLivingAuthority: false,
|
|
131
|
+
// 档案完善权限
|
|
132
|
+
filesCompleteAuthority: true
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
methods: {
|
|
136
|
+
close () {
|
|
137
|
+
this.$emit('close')
|
|
138
|
+
},
|
|
139
|
+
async success(val) {
|
|
140
|
+
//
|
|
141
|
+
if (val === 'filesNotComplete') {
|
|
142
|
+
this.filesNotComplete = false
|
|
143
|
+
} else if (val === 'isBasicLiving') {
|
|
144
|
+
this.isBasicLiving = false
|
|
145
|
+
}
|
|
146
|
+
// 如果所有提示信息均处理,获取改户数据,进入收费操作
|
|
147
|
+
if (!this.filesNotComplete && !this.isBlackList && !this.isBasicLiving) {
|
|
148
|
+
this.showInformation = false
|
|
149
|
+
let data = await this.$resetpost('rs/sql/sale_getUser', {data: {condition: `1=1 and f_userinfo_code = '${this.row.f_userinfo_code}' and u.f_filialeid = ${this.$login.f.orgid}`}}, {
|
|
150
|
+
resolveMsg: '',
|
|
151
|
+
rejectMsg: ''
|
|
152
|
+
})
|
|
153
|
+
this.$emit('modalsuccess', data.data[0])
|
|
154
|
+
} else {
|
|
155
|
+
// 没有处理完,显示提示信息
|
|
156
|
+
this.showInformation = true
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
operational(val) {
|
|
160
|
+
this.showInformation = false
|
|
161
|
+
this.$refs.route.init(val, {data: this.row})
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
ready () {
|
|
165
|
+
initGen(this)
|
|
166
|
+
}
|
|
167
|
+
// watch: {
|
|
168
|
+
// 'modalShow' (val) {
|
|
169
|
+
// this.modal = val
|
|
170
|
+
// }
|
|
171
|
+
// }
|
|
172
|
+
}
|
|
173
|
+
</script>
|
|
174
|
+
<style>
|
|
175
|
+
.basic-main {
|
|
176
|
+
width: 79%;
|
|
177
|
+
}
|
|
178
|
+
</style>
|
|
@@ -105,4 +105,6 @@ export default function () {
|
|
|
105
105
|
|
|
106
106
|
// 用户表具信息test
|
|
107
107
|
Vue.component('file-user-meter-info', (resolve) => { require(['./UserMeterInfoTest'], resolve) })
|
|
108
|
+
// 售气收费 --弹出框
|
|
109
|
+
Vue.component('charge-modal', (resolve) => { require(['./ChargeModal'], resolve) })
|
|
108
110
|
}
|
|
@@ -8,11 +8,13 @@
|
|
|
8
8
|
<label class="font_normal_body"> 操作 </label>
|
|
9
9
|
<v-select v-if="this.row.f_collection_type==='按金额'" :value.sync="model.f_operat_type"
|
|
10
10
|
:options='operator_type' placeholder='请选择'
|
|
11
|
+
:value-single="true"
|
|
11
12
|
selected="赠费"
|
|
12
13
|
style="width:60%"
|
|
13
14
|
close-on-select></v-select>
|
|
14
15
|
<v-select v-if="this.row.f_collection_type==='按气量'" :value.sync="model.f_operat_type"
|
|
15
16
|
:options='operator_type2' placeholder='请选择'
|
|
17
|
+
:value-single="true"
|
|
16
18
|
selected="赠气"
|
|
17
19
|
style="width:60%"
|
|
18
20
|
close-on-select></v-select>
|
|
@@ -118,11 +120,8 @@ let preamountGen = async function (self) {
|
|
|
118
120
|
let data = self.getSell()
|
|
119
121
|
data.f_total_gas = data.f_add_gas === '计入' ? (self.row.f_total_gas - 0) + (self.model.f_pregas - 0) : (self.row.f_total_gas - 0)
|
|
120
122
|
data.f_total_fee = data.f_add_gas === '计入' ? (self.row.f_total_fee - 0) + (self.model.f_preamount - 0) : (self.row.f_total_fee - 0)
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
} else {
|
|
124
|
-
data.f_preamount = self.model.f_preamount
|
|
125
|
-
}
|
|
123
|
+
data.f_pregas = self.model.f_pregas
|
|
124
|
+
data.f_preamount = self.model.f_preamount
|
|
126
125
|
data.f_userfiles_id = {
|
|
127
126
|
f_userfiles_id: self.row.f_userfiles_id,
|
|
128
127
|
f_user_id: self.row.f_user_id,
|
|
@@ -26,4 +26,6 @@ export default function () {
|
|
|
26
26
|
Vue.component('iot-refund', (resolve) => { require(['./IOTRefund'], resolve) })
|
|
27
27
|
// 物联网赠气
|
|
28
28
|
Vue.component('iotTable', (resolve) => { require(['./iotTable'], resolve) })
|
|
29
|
+
// 物联网赠气
|
|
30
|
+
Vue.component('icTable', (resolve) => { require(['./icTable'], resolve) })
|
|
29
31
|
}
|
package/src/main.js
CHANGED
|
@@ -3,7 +3,7 @@ import all from 'vue-client/src/all'
|
|
|
3
3
|
import App from './App'
|
|
4
4
|
import system from 'system-clients/src/system'
|
|
5
5
|
import sale from './sale'
|
|
6
|
-
import wenxi from './filiale/
|
|
6
|
+
import wenxi from './filiale/yuansheng/sale'
|
|
7
7
|
// import FilialeSale from './filiale/yuansheng/sale'
|
|
8
8
|
import address from 'address-client/src/address'
|
|
9
9
|
import ldap from 'ldap-clients/src/ldap'
|
|
@@ -11,7 +11,6 @@ import VueClipboard from 'vue-clipboard2'
|
|
|
11
11
|
|
|
12
12
|
Vue.use(VueClipboard)
|
|
13
13
|
Vue.config.silent = true
|
|
14
|
-
|
|
15
14
|
all()
|
|
16
15
|
system(false)
|
|
17
16
|
sale()
|