sale-client 3.5.12 → 3.5.13
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 +117 -117
- package/src/components/revenue/machineHandManage/machineHand.vue +16 -1
- package/src/filiale/liaoyuan/PriceAdjustment.vue +801 -801
- package/src/filiale/qingtongxia/HandManager/HandManager.vue +1 -1
- package/src/filiale/tongchuan/base/otherinfo.vue +7 -1
- package/src/sale.js +3 -1
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
<export-excel
|
|
56
56
|
:data="$parent.$parent.getCondition"
|
|
57
57
|
:field="$parent.$parent.getfield"
|
|
58
|
-
sqlurl="rs/logic/
|
|
58
|
+
sqlurl="rs/logic/saleExport" sql-name="saleperiodAlreadyIssuedOrder" template-name='抄表导出'
|
|
59
59
|
:choose-col="true">
|
|
60
60
|
</export-excel>
|
|
61
61
|
<div
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>
|
|
7
7
|
<safe-check :data="data"></safe-check>
|
|
8
8
|
<service-repair :data="data" v-if="name==='维修情况查询'"></service-repair>
|
|
9
|
+
<check-gas :data="data" v-if="checkgas==='气量核对'" ></check-gas>
|
|
9
10
|
</div>
|
|
10
11
|
</template>
|
|
11
12
|
|
|
@@ -18,7 +19,8 @@ export default {
|
|
|
18
19
|
title: '客户相关信息',
|
|
19
20
|
data () {
|
|
20
21
|
return {
|
|
21
|
-
name: ''
|
|
22
|
+
name: '',
|
|
23
|
+
checkgas: ''
|
|
22
24
|
}
|
|
23
25
|
},
|
|
24
26
|
|
|
@@ -42,6 +44,10 @@ export default {
|
|
|
42
44
|
},
|
|
43
45
|
methods: {
|
|
44
46
|
getAuthority () {
|
|
47
|
+
if (this.$login.r.find(value => value == '气量核对')) {
|
|
48
|
+
this.checkgas = '气量核对'
|
|
49
|
+
console.log(this.checkgas)
|
|
50
|
+
}
|
|
45
51
|
if (this.$login.r.find(value => value == '维修情况查询')) {
|
|
46
52
|
this.name = '维修情况查询'
|
|
47
53
|
console.log(this.name)
|
package/src/sale.js
CHANGED
|
@@ -332,7 +332,7 @@ export default function (filiale) {
|
|
|
332
332
|
// 卡表抄表
|
|
333
333
|
Vue.component('card-hand', (resolve) => { require(['./components/revenue/HandManager/CardHand'], resolve) })
|
|
334
334
|
// 机表抄表
|
|
335
|
-
|
|
335
|
+
Vue.component('hand-manager', (resolve) => { require(['./components/revenue/HandManager/HandManager'], resolve) })
|
|
336
336
|
|
|
337
337
|
// 抄表册新增
|
|
338
338
|
Vue.component('meter-book-add', (resolve) => { require(['./components/revenue/HandManager/MeterBookAdd'], resolve) })
|
|
@@ -1084,6 +1084,8 @@ export default function (filiale) {
|
|
|
1084
1084
|
Vue.component('device-edit', (resolve) => { require(['./components/revenue/comprehen/device/deviceEdit'], resolve) })
|
|
1085
1085
|
// excel导入模板
|
|
1086
1086
|
Vue.component('import-excel', (resolve) => { require(['./components/revenue/comprehen/common/ImportExcel'], resolve) })
|
|
1087
|
+
// 气量核对
|
|
1088
|
+
Vue.component('check-gas', (resolve) => { require(['./components/revenue/base/leftview//CheckGas'], resolve) })
|
|
1087
1089
|
|
|
1088
1090
|
// 分公司特殊页面注册替换
|
|
1089
1091
|
if (filiale) {
|