apply-clients 3.5.6-21 → 3.5.6-23
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 +5 -5
- package/package.json +1 -1
- package/src/components/android/Process/AppServiceControl.vue +1760 -1760
- package/src/components/product/Function/Service/FunctionServiceControl.vue +497 -497
- package/src/components/product/Install/ContractCharge.vue +210 -210
- package/src/filiale/dingcheng/android/AppInstallationDetails.vue +477 -477
- package/src/filiale/dingcheng/pc/InstallationDetails.vue +607 -607
- package/src/filiale/fugou/android/AppAddMaterialScience.vue +444 -444
- package/src/filiale/fugou/android/AppAddReplacement.vue +512 -512
- package/src/filiale/fugou/android/AppDevicesManagement.vue +516 -516
- package/src/filiale/fugou/android/AppInstallationDetails.vue +541 -541
- package/src/filiale/fugou/android/AppZhihuanManagement.vue +242 -242
- package/src/filiale/fugou/pc/AddReplacement.vue +511 -511
- package/src/filiale/fugou/pc/ApplyChargeList.vue +554 -554
- package/src/filiale/fugou/pc/Applybatchdispatch.vue +754 -754
- package/src/filiale/fugou/pc/InstallationDetails.vue +646 -646
- package/src/filiale/fugou/pc/ServiceControl.vue +1741 -1741
- package/src/filiale/fugou/pc/addMaterialScience.vue +481 -481
- package/src/filiale/fugou/pc.js +19 -19
- package/src/filiale/gongyi/pc/addressAndUserinfoManagement.vue +187 -187
- package/src/filiale/gongyi/pc/chargeManagement.vue +765 -765
- package/src/filiale/gongyi/pc.js +25 -25
- package/src/filiale/hongda/pc/addMaterialScience.vue +723 -723
- package/src/filiale/jinhuang/android/AppAddMaterialScience.vue +635 -635
- package/src/filiale/jinhuang/android/AppServiceControl.vue +1842 -1842
- package/src/filiale/jinhuang/android.js +7 -7
- package/src/filiale/jinhuang/pc/Applybatchdispatch.vue +770 -770
- package/src/filiale/jinhuang/pc/ContractList.vue +222 -222
- package/src/filiale/jinhuang/pc/ExplorationSelect.vue +511 -511
- package/src/filiale/jinhuang/pc/ServiceControl.vue +2016 -2016
- package/src/filiale/jinhuang/pc/SupervisoryList.vue +478 -478
- package/src/filiale/jinhuang/pc/addMaterialScience.vue +638 -638
- package/src/filiale/jinhuang/pc.js +13 -13
- package/src/filiale/qianneng/pc/Applybatchdispatch.vue +786 -786
- package/src/filiale/qianneng/pc/ServiceControl.vue +1387 -1387
- package/src/filiale/ruihua/pc/ServiceControl.vue +1973 -1973
- package/src/filiale/shexian/android/AppServiceControl.vue +1786 -1786
- package/src/filiale/shexian/android/AppSign.vue +152 -152
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +527 -527
- package/src/filiale/yangchunboneng/android/AppContractCharge.vue +222 -222
- package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1144 -1144
- package/src/filiale/yangchunboneng/android/AppOtherChargeList.vue +281 -281
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1883 -1883
- package/src/filiale/yangchunboneng/android/MaterIialOne.vue +179 -176
- package/src/filiale/yangchunboneng/android.js +22 -22
- package/src/filiale/yangchunboneng/pc/ApplyUpload.vue +392 -392
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +622 -622
- package/src/filiale/yangchunboneng/pc/InstallInfoSelect.vue +400 -400
- package/src/filiale/yangchunboneng/pc/ServiceControl.vue +2118 -2118
- package/src/filiale/yangchunboneng/pc/SupervisoryControl.vue +141 -141
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +652 -644
- package/src/filiale/yangchunboneng/pc/buildOrderList.vue +421 -421
- package/src/filiale/yangchunboneng/pc/chargeManagement.vue +1060 -1060
- package/src/filiale/yangchunboneng/pc/printBuildOrder.vue +175 -175
- package/src/filiale/yangchunboneng/pc.js +29 -29
- package/src/main.js +3 -3
|
@@ -1,176 +1,179 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="y-form" style="border-bottom: 1px dashed grey;">
|
|
3
|
-
<div class="y-form-head">
|
|
4
|
-
<span style="text-align: center;font-weight: bolder;">材料{{ index + 1 }}信息</span>
|
|
5
|
-
<button
|
|
6
|
-
style="float: right"
|
|
7
|
-
class="button_delete button_spacing"
|
|
8
|
-
@click.prevent="deleteUserFile(index)"
|
|
9
|
-
>删除
|
|
10
|
-
</button>
|
|
11
|
-
</div>
|
|
12
|
-
<div class="y-form-item">
|
|
13
|
-
<label>材料名称</label>
|
|
14
|
-
<v-select
|
|
15
|
-
:width="'70%'"
|
|
16
|
-
:value.sync="item.f_material_name"
|
|
17
|
-
v-model="item.f_material_name"
|
|
18
|
-
:options='newmaterialnameandcode'
|
|
19
|
-
placeholder='请选择'
|
|
20
|
-
close-on-select
|
|
21
|
-
:value-single="true"
|
|
22
|
-
@change="changeMaterialName"
|
|
23
|
-
></v-select>
|
|
24
|
-
</div>
|
|
25
|
-
<div class="y-form-item">
|
|
26
|
-
<label>型号</label>
|
|
27
|
-
<v-select
|
|
28
|
-
:width="'70%'"
|
|
29
|
-
:value.sync="item.f_typenumber"
|
|
30
|
-
v-model="item.f_typenumber"
|
|
31
|
-
:options='materialnameandtype'
|
|
32
|
-
placeholder='请选择'
|
|
33
|
-
close-on-select
|
|
34
|
-
@change="changeType"
|
|
35
|
-
:value-single="true"
|
|
36
|
-
></v-select>
|
|
37
|
-
</div>
|
|
38
|
-
<div class="y-form-item">
|
|
39
|
-
<label>单价(元/{{ item.unit }})</label>
|
|
40
|
-
<input type="number" class="form-control y-form-item-input"
|
|
41
|
-
v-model="item.f_material_price"
|
|
42
|
-
@change="material_number_chenge"
|
|
43
|
-
>
|
|
44
|
-
</div>
|
|
45
|
-
<div class="y-form-item">
|
|
46
|
-
<label>数量</label>
|
|
47
|
-
<input type="number" class="form-control y-form-item-input" v-model="item.f_material_number" @change="material_number_chenge"
|
|
48
|
-
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
49
|
-
</div>
|
|
50
|
-
<div class="y-form-item">
|
|
51
|
-
<label>超支单价</label>
|
|
52
|
-
<input type="number" class="form-control y-form-item-input" v-model="item.f_overlength_unitprice" @change="material_number_chenge"
|
|
53
|
-
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
54
|
-
</div>
|
|
55
|
-
<div class="y-form-item">
|
|
56
|
-
<label>超支数量</label>
|
|
57
|
-
<input type="number" class="form-control y-form-item-input" v-model="item.f_overlength_number" @change="material_number_chenge"
|
|
58
|
-
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
59
|
-
</div>
|
|
60
|
-
<div class="y-form-item">
|
|
61
|
-
<label>优惠金额</label>
|
|
62
|
-
<input type="number" class="form-control y-form-item-input" v-model="item.f_discounts_money_detail" @change="material_number_chenge"
|
|
63
|
-
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
64
|
-
</div>
|
|
65
|
-
<div class="y-form-item">
|
|
66
|
-
<label>材料实际耗材</label>
|
|
67
|
-
<input type="number" class="form-control y-form-item-input" v-model="item.f_actual_materials_detail"
|
|
68
|
-
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
69
|
-
</div>
|
|
70
|
-
</div>
|
|
71
|
-
</template>
|
|
72
|
-
<script>
|
|
73
|
-
import {isEmpty} from "../../../components/Util";
|
|
74
|
-
|
|
75
|
-
export default {
|
|
76
|
-
props:["index",'item','materialnameandcode','typenumbers','newmaterialnameandcode','newmaterialnameandtype'],
|
|
77
|
-
data(){
|
|
78
|
-
return {
|
|
79
|
-
materialtypenumber:[],
|
|
80
|
-
materialnameandtype:[],
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
methods:{
|
|
84
|
-
changeMaterialName(val){
|
|
85
|
-
this.materialnameandtype=[]
|
|
86
|
-
console.log(val)
|
|
87
|
-
if(val){
|
|
88
|
-
for (let i = 0; i < this.newmaterialnameandtype.length; i++){
|
|
89
|
-
|
|
90
|
-
if(this.newmaterialnameandtype[i].parent_id == val.id){
|
|
91
|
-
this.materialnameandtype.push(
|
|
92
|
-
{
|
|
93
|
-
label:this.newmaterialnameandtype[i].name,
|
|
94
|
-
value: this.newmaterialnameandtype[i]
|
|
95
|
-
}
|
|
96
|
-
)
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
changeType(val){
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
},
|
|
110
|
-
|
|
111
|
-
this.$emit('
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
this.
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div class="y-form" style="border-bottom: 1px dashed grey;">
|
|
3
|
+
<div class="y-form-head">
|
|
4
|
+
<span style="text-align: center;font-weight: bolder;">材料{{ index + 1 }}信息</span>
|
|
5
|
+
<button
|
|
6
|
+
style="float: right"
|
|
7
|
+
class="button_delete button_spacing"
|
|
8
|
+
@click.prevent="deleteUserFile(index)"
|
|
9
|
+
>删除
|
|
10
|
+
</button>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="y-form-item">
|
|
13
|
+
<label>材料名称</label>
|
|
14
|
+
<v-select
|
|
15
|
+
:width="'70%'"
|
|
16
|
+
:value.sync="item.f_material_name"
|
|
17
|
+
v-model="item.f_material_name"
|
|
18
|
+
:options='newmaterialnameandcode'
|
|
19
|
+
placeholder='请选择'
|
|
20
|
+
close-on-select
|
|
21
|
+
:value-single="true"
|
|
22
|
+
@change="changeMaterialName"
|
|
23
|
+
></v-select>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="y-form-item">
|
|
26
|
+
<label>型号</label>
|
|
27
|
+
<v-select
|
|
28
|
+
:width="'70%'"
|
|
29
|
+
:value.sync="item.f_typenumber"
|
|
30
|
+
v-model="item.f_typenumber"
|
|
31
|
+
:options='materialnameandtype'
|
|
32
|
+
placeholder='请选择'
|
|
33
|
+
close-on-select
|
|
34
|
+
@change="changeType"
|
|
35
|
+
:value-single="true"
|
|
36
|
+
></v-select>
|
|
37
|
+
</div>
|
|
38
|
+
<div class="y-form-item">
|
|
39
|
+
<label>单价(元/{{ item.unit }})</label>
|
|
40
|
+
<input type="number" class="form-control y-form-item-input"
|
|
41
|
+
v-model="item.f_material_price"
|
|
42
|
+
@change="material_number_chenge"
|
|
43
|
+
>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="y-form-item">
|
|
46
|
+
<label>数量</label>
|
|
47
|
+
<input type="number" class="form-control y-form-item-input" v-model="item.f_material_number" @change="material_number_chenge"
|
|
48
|
+
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
49
|
+
</div>
|
|
50
|
+
<div class="y-form-item">
|
|
51
|
+
<label>超支单价</label>
|
|
52
|
+
<input type="number" class="form-control y-form-item-input" v-model="item.f_overlength_unitprice" @change="material_number_chenge"
|
|
53
|
+
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
54
|
+
</div>
|
|
55
|
+
<div class="y-form-item">
|
|
56
|
+
<label>超支数量</label>
|
|
57
|
+
<input type="number" class="form-control y-form-item-input" v-model="item.f_overlength_number" @change="material_number_chenge"
|
|
58
|
+
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
59
|
+
</div>
|
|
60
|
+
<div class="y-form-item">
|
|
61
|
+
<label>优惠金额</label>
|
|
62
|
+
<input type="number" class="form-control y-form-item-input" v-model="item.f_discounts_money_detail" @change="material_number_chenge"
|
|
63
|
+
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
64
|
+
</div>
|
|
65
|
+
<div class="y-form-item">
|
|
66
|
+
<label>材料实际耗材</label>
|
|
67
|
+
<input type="number" class="form-control y-form-item-input" v-model="item.f_actual_materials_detail"
|
|
68
|
+
:readOnly="item.f_process_id && item.f_state != '未收费' ? true : false">
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
</template>
|
|
72
|
+
<script>
|
|
73
|
+
import {isEmpty} from "../../../components/Util";
|
|
74
|
+
|
|
75
|
+
export default {
|
|
76
|
+
props:["index",'item','materialnameandcode','typenumbers','newmaterialnameandcode','newmaterialnameandtype'],
|
|
77
|
+
data(){
|
|
78
|
+
return {
|
|
79
|
+
materialtypenumber:[],
|
|
80
|
+
materialnameandtype:[],
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
methods:{
|
|
84
|
+
changeMaterialName(val){
|
|
85
|
+
this.materialnameandtype=[]
|
|
86
|
+
console.log(val)
|
|
87
|
+
if(val){
|
|
88
|
+
for (let i = 0; i < this.newmaterialnameandtype.length; i++){
|
|
89
|
+
|
|
90
|
+
if(this.newmaterialnameandtype[i].parent_id == val.id){
|
|
91
|
+
this.materialnameandtype.push(
|
|
92
|
+
{
|
|
93
|
+
label:this.newmaterialnameandtype[i].name,
|
|
94
|
+
value: this.newmaterialnameandtype[i]
|
|
95
|
+
}
|
|
96
|
+
)
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
changeType (val) {
|
|
102
|
+
if (val) {
|
|
103
|
+
this.item.unit = val.unit
|
|
104
|
+
this.item.f_material_price = val.price
|
|
105
|
+
this.item.f_typename = val.name
|
|
106
|
+
this.item.f_material_code = val.code
|
|
107
|
+
this.item.material_type = this.item.f_material_name.name + val.name
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
material_number_chenge(){
|
|
111
|
+
this.$emit('number_chenge')
|
|
112
|
+
},
|
|
113
|
+
deleteUserFile(i){
|
|
114
|
+
this.$emit('delete_material',i)
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
ready () {
|
|
118
|
+
if (this.item.f_material_name && this.item.f_material_style) {
|
|
119
|
+
let f_material_name = ''
|
|
120
|
+
this.newmaterialnameandcode.filter((item) => {
|
|
121
|
+
if (item.label == this.item.f_material_name) {
|
|
122
|
+
f_material_name = item.value
|
|
123
|
+
}
|
|
124
|
+
})
|
|
125
|
+
this.item.f_material_name = f_material_name
|
|
126
|
+
this.changeMaterialName(f_material_name)
|
|
127
|
+
let f_typenumber = ''
|
|
128
|
+
this.materialnameandtype.filter((item) => {
|
|
129
|
+
if (item.label == this.item.f_material_style) {
|
|
130
|
+
f_typenumber = item.value
|
|
131
|
+
}
|
|
132
|
+
})
|
|
133
|
+
this.item.f_typenumber = f_typenumber
|
|
134
|
+
this.changeType(f_typenumber)
|
|
135
|
+
}
|
|
136
|
+
console.log(this.item)
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
</script>
|
|
140
|
+
<style lang="less">
|
|
141
|
+
.y-form {
|
|
142
|
+
display: flex;
|
|
143
|
+
flex-flow: column;
|
|
144
|
+
gap: 10px;
|
|
145
|
+
padding: 10px 5px;
|
|
146
|
+
.y-form-head {
|
|
147
|
+
background-color: #e8f4ff;
|
|
148
|
+
display: flex;
|
|
149
|
+
padding: 10px 20px;
|
|
150
|
+
align-items: center;
|
|
151
|
+
justify-content: space-between;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.y-form-item {
|
|
155
|
+
display: flex;
|
|
156
|
+
gap: 10px;
|
|
157
|
+
margin-top: 3px;
|
|
158
|
+
label {
|
|
159
|
+
width: 30%;
|
|
160
|
+
margin-bottom: 0;
|
|
161
|
+
display: flex;
|
|
162
|
+
flex-direction: row-reverse;
|
|
163
|
+
align-items: center;
|
|
164
|
+
}
|
|
165
|
+
.lab_sty{
|
|
166
|
+
margin-bottom: 0;
|
|
167
|
+
display: flex;
|
|
168
|
+
flex-direction: row-reverse;
|
|
169
|
+
align-items: center;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.y-form-item-input {
|
|
173
|
+
width: 70%;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
</style>
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
const Vue = require('vue')
|
|
2
|
-
let specialComp = {
|
|
3
|
-
'app-exploration-user': (resolve) => { require(['./android/AppExplorationUser'], resolve) },
|
|
4
|
-
'app-add-material-science': (resolve) => { require(['./android/AppAddMaterialScience'], resolve) },
|
|
5
|
-
'app-apply-devices-management': (resolve) => { require(['./android/AppDevicesManagement'], resolve) },
|
|
6
|
-
'app-charge-management': (resolve) => { require(['./android/AppChargeManagement'], resolve) },
|
|
7
|
-
'app-other-charge-management': (resolve) => { require(['./android/AppOtherChargeManagement'], resolve) },
|
|
8
|
-
'app-chargesList': (resolve) => { require(['./android/chargesList'], resolve) },
|
|
9
|
-
'app-installation-details': (resolve) => { require(['./android/AppInstallationDetails'], resolve) },
|
|
10
|
-
'app-service-control': (resolve) => { require(['./android/AppServiceControl'], resolve) },
|
|
11
|
-
'app-super-service-control': (resolve) => { require(['./android/AppSuperServiceControl'], resolve) },
|
|
12
|
-
'app-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) },
|
|
13
|
-
'appinstallation-material': (resolve) => { require(['./android/AppInstallationMaterial'], resolve) },
|
|
14
|
-
'apply-material-one': (resolve) => { require(['./android/MaterIialOne'], resolve) },
|
|
15
|
-
'app-supervisory-cart': (resolve) => { require(['./android/AppSupervisoryCart'], resolve) },
|
|
16
|
-
'app-contract-charge': (resolve) => { require(['./android/AppContractCharge'], resolve) },
|
|
17
|
-
'app-upload': (resolve) => { require(['./android/AppUpload'], resolve) },
|
|
18
|
-
'app-process-supervisory': (resolve) => { require(['./android/AppProcessSupervisory'], resolve) },
|
|
19
|
-
'app-other-charge-list': (resolve) => { require(['./android/AppOtherChargeList.vue'], resolve) }
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
exports.specialComp = specialComp
|
|
1
|
+
const Vue = require('vue')
|
|
2
|
+
let specialComp = {
|
|
3
|
+
'app-exploration-user': (resolve) => { require(['./android/AppExplorationUser'], resolve) },
|
|
4
|
+
'app-add-material-science': (resolve) => { require(['./android/AppAddMaterialScience'], resolve) },
|
|
5
|
+
'app-apply-devices-management': (resolve) => { require(['./android/AppDevicesManagement'], resolve) },
|
|
6
|
+
'app-charge-management': (resolve) => { require(['./android/AppChargeManagement'], resolve) },
|
|
7
|
+
'app-other-charge-management': (resolve) => { require(['./android/AppOtherChargeManagement'], resolve) },
|
|
8
|
+
'app-chargesList': (resolve) => { require(['./android/chargesList'], resolve) },
|
|
9
|
+
'app-installation-details': (resolve) => { require(['./android/AppInstallationDetails'], resolve) },
|
|
10
|
+
'app-service-control': (resolve) => { require(['./android/AppServiceControl'], resolve) },
|
|
11
|
+
'app-super-service-control': (resolve) => { require(['./android/AppSuperServiceControl'], resolve) },
|
|
12
|
+
'app-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) },
|
|
13
|
+
'appinstallation-material': (resolve) => { require(['./android/AppInstallationMaterial'], resolve) },
|
|
14
|
+
'apply-material-one': (resolve) => { require(['./android/MaterIialOne'], resolve) },
|
|
15
|
+
'app-supervisory-cart': (resolve) => { require(['./android/AppSupervisoryCart'], resolve) },
|
|
16
|
+
'app-contract-charge': (resolve) => { require(['./android/AppContractCharge'], resolve) },
|
|
17
|
+
'app-upload': (resolve) => { require(['./android/AppUpload'], resolve) },
|
|
18
|
+
'app-process-supervisory': (resolve) => { require(['./android/AppProcessSupervisory'], resolve) },
|
|
19
|
+
'app-other-charge-list': (resolve) => { require(['./android/AppOtherChargeList.vue'], resolve) }
|
|
20
|
+
|
|
21
|
+
}
|
|
22
|
+
exports.specialComp = specialComp
|