apply-clients 3.3.16 → 3.3.17
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/index.html +33 -33
- package/package.json +1 -1
- package/src/AndroidApp.vue +30 -30
- package/src/android.js +21 -21
- package/src/apply.js +3 -6
- package/src/applyAndroid.js +35 -35
- package/src/components/android/AppOnetomany.vue +285 -285
- package/src/components/android/AppServiceView.vue +570 -570
- package/src/components/android/AppTakePic.vue +143 -143
- package/src/components/android/Function/AppFunctionServiceControl.vue +329 -329
- package/src/components/android/Function/AppInstallFunction.vue +327 -327
- package/src/components/android/Process/AppExplorationUser.vue +268 -268
- package/src/components/android/Process/AppServiceControl.vue +711 -686
- package/src/components/android/Process/Processes/AppChargeManagement.vue +468 -468
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +490 -490
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +466 -466
- package/src/components/android/Process/Processes/AppSupplementalAgreement.vue +297 -297
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +261 -261
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +115 -115
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +265 -265
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +30 -30
- package/src/components/product/Function/InstallFunction.vue +122 -122
- package/src/components/product/Function/InstallInfoSelect.vue +289 -289
- package/src/components/product/Function/Service/FunctionServiceControl.vue +254 -254
- package/src/components/product/Onetomany.vue +296 -296
- package/src/components/product/Order/OrderApply.vue +47 -47
- package/src/components/product/Order/OrderApplyList.vue +62 -62
- package/src/components/product/Order/OrderMessage.vue +237 -237
- package/src/components/product/Process/ExplorationSelect.vue +145 -143
- package/src/components/product/Process/ExplorationUser.vue +128 -128
- package/src/components/product/Process/Processes/InstallationDetails.vue +421 -352
- package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
- package/src/components/product/Process/Processes/{printCharge.vue → Print/printCharge.vue} +139 -121
- package/src/components/product/Process/Processes/Print/printRefund.vue +193 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +181 -181
- package/src/components/product/Process/Processes/chargeManagement.vue +639 -639
- package/src/components/product/Process/Processes/devicesManagement.vue +458 -458
- package/src/components/product/Process/Processes/selectApply.vue +250 -250
- package/src/components/product/Process/Processes/selectUserinfo.vue +182 -182
- package/src/components/product/Process/Processes/supplementalAgreement.vue +298 -298
- package/src/components/product/Process/Service/ServiceControl.vue +916 -810
- package/src/components/product/Process/ShowBackReason.vue +33 -33
- package/src/components/product/ServiceView.vue +301 -307
- package/src/components/product/Stop/StopApplyList.vue +254 -254
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +512 -517
- package/src/components/product/Supervisory/SupervisoryControl.vue +100 -100
- package/src/components/product/Supervisory/SupervisoryList.vue +226 -226
- package/src/components/product/Supervisory/SupervisoryhCart.vue +124 -124
- package/src/components/product/VueUtils/ApplyUpload.vue +262 -262
- package/src/components/product/VueUtils/GaoPaiYi/HighMeter.vue +1090 -1090
- package/src/main.js +23 -23
- package/src/components/product/Function/Inform.vue +0 -74
- package/src/components/product/Function/MarketSurvey.vue +0 -80
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex-row">
|
|
3
|
-
<div :class="{'basic-main':!showRight,'binary-left':showRight}">
|
|
4
|
-
<order-apply-list v-ref:query></order-apply-list>
|
|
5
|
-
</div>
|
|
6
|
-
<div v-if="showRight" class="binary-right flex">
|
|
7
|
-
<order-message :selectdata="selectdata" :type="type"></order-message>
|
|
8
|
-
</div>
|
|
9
|
-
</div>
|
|
10
|
-
</template>
|
|
11
|
-
<script>
|
|
12
|
-
import Vue from 'vue'
|
|
13
|
-
import {HttpResetClass} from 'vue-client'
|
|
14
|
-
export default {
|
|
15
|
-
title: '预约报建',
|
|
16
|
-
data () {
|
|
17
|
-
return {
|
|
18
|
-
showRight: false,
|
|
19
|
-
type: null,
|
|
20
|
-
selectdata: null
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
methods: {
|
|
24
|
-
},
|
|
25
|
-
events: {
|
|
26
|
-
'handleOrder' (type, row) {
|
|
27
|
-
this.showRight = false
|
|
28
|
-
|
|
29
|
-
this.type = type
|
|
30
|
-
this.selectdata = row
|
|
31
|
-
|
|
32
|
-
this.$nextTick(() => {
|
|
33
|
-
this.showRight = true
|
|
34
|
-
})
|
|
35
|
-
},
|
|
36
|
-
'search' () {
|
|
37
|
-
this.selectdata = null
|
|
38
|
-
this.showRight = false
|
|
39
|
-
this.type = null
|
|
40
|
-
|
|
41
|
-
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
watch: {
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div :class="{'basic-main':!showRight,'binary-left':showRight}">
|
|
4
|
+
<order-apply-list v-ref:query></order-apply-list>
|
|
5
|
+
</div>
|
|
6
|
+
<div v-if="showRight" class="binary-right flex">
|
|
7
|
+
<order-message :selectdata="selectdata" :type="type"></order-message>
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
<script>
|
|
12
|
+
import Vue from 'vue'
|
|
13
|
+
import {HttpResetClass} from 'vue-client'
|
|
14
|
+
export default {
|
|
15
|
+
title: '预约报建',
|
|
16
|
+
data () {
|
|
17
|
+
return {
|
|
18
|
+
showRight: false,
|
|
19
|
+
type: null,
|
|
20
|
+
selectdata: null
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
methods: {
|
|
24
|
+
},
|
|
25
|
+
events: {
|
|
26
|
+
'handleOrder' (type, row) {
|
|
27
|
+
this.showRight = false
|
|
28
|
+
|
|
29
|
+
this.type = type
|
|
30
|
+
this.selectdata = row
|
|
31
|
+
|
|
32
|
+
this.$nextTick(() => {
|
|
33
|
+
this.showRight = true
|
|
34
|
+
})
|
|
35
|
+
},
|
|
36
|
+
'search' () {
|
|
37
|
+
this.selectdata = null
|
|
38
|
+
this.showRight = false
|
|
39
|
+
this.type = null
|
|
40
|
+
|
|
41
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
watch: {
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
</script>
|
|
@@ -190,74 +190,74 @@
|
|
|
190
190
|
</div>
|
|
191
191
|
</template>
|
|
192
192
|
<script>
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
193
|
+
import {PagedList} from 'vue-client'
|
|
194
|
+
export default {
|
|
195
|
+
title: '预约单',
|
|
196
|
+
data () {
|
|
197
|
+
return {
|
|
198
|
+
model: new PagedList('rs/sql/getOrderApply', 20, null),
|
|
199
|
+
curorgid: [this.$login.f.orgid],
|
|
200
|
+
criteriaShow: false,
|
|
201
|
+
orderType: [
|
|
202
|
+
{'label': '预约报装', 'value': '预约报装'},
|
|
203
|
+
{'label': '预约改管', 'value': '预约改管'},
|
|
204
|
+
{'label': '预约增容', 'value': '预约增容'},
|
|
205
|
+
{'label': '预约点火', 'value': '预约点火'}
|
|
206
|
+
],
|
|
207
|
+
orderState: [
|
|
208
|
+
{'label': '待审核', 'value': '待审核'},
|
|
209
|
+
{'label': '待处理', 'value': '待处理'},
|
|
210
|
+
{'label': '预约成功', 'value': '预约成功'},
|
|
211
|
+
{'label': '预约失败', 'value': '预约失败'}
|
|
212
|
+
],
|
|
213
|
+
orderSource: [
|
|
214
|
+
{'label': '微客服', 'value': '微客服'},
|
|
215
|
+
{'label': '呼叫中心', 'value': '呼叫中心'}
|
|
216
|
+
],
|
|
217
|
+
userType: [
|
|
218
|
+
{'label': '个人', 'value': '个人'},
|
|
219
|
+
{'label': '整体小区', 'value': '整体小区'}
|
|
220
|
+
],
|
|
221
|
+
userNature: [
|
|
222
|
+
{'label': '民用', 'value': '民用'},
|
|
223
|
+
{'label': '非民用', 'value': '非民用'}
|
|
224
|
+
]
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
ready () {
|
|
228
|
+
// 调用查询
|
|
229
|
+
this.search()
|
|
230
|
+
},
|
|
231
|
+
events: {
|
|
232
|
+
},
|
|
233
|
+
methods: {
|
|
234
|
+
// 处理
|
|
235
|
+
handleOrder (type, row) {
|
|
236
|
+
this.$dispatch('handleOrder', type, row)
|
|
226
237
|
},
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
this.search()
|
|
238
|
+
searchCondition (args) {
|
|
239
|
+
args.condition = args.condition + ` and o.f_orgid = '${this.curorgid[0]}'`
|
|
240
|
+
this.model.search(args.condition, args.model)
|
|
230
241
|
},
|
|
231
|
-
|
|
242
|
+
search () {
|
|
243
|
+
this.$dispatch('search')
|
|
232
244
|
},
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
},
|
|
238
|
-
searchCondition (args) {
|
|
239
|
-
args.condition = args.condition + ` and f_orgid = '${this.curorgid[0]}'`
|
|
240
|
-
this.model.search(args.condition, args.model)
|
|
241
|
-
},
|
|
242
|
-
search () {
|
|
243
|
-
this.$dispatch('search')
|
|
244
|
-
},
|
|
245
|
-
clear () {
|
|
246
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
247
|
-
this.$refs.cp.$refs.cri.model[key] = null
|
|
248
|
-
})
|
|
249
|
-
},
|
|
250
|
-
getorg (val) {
|
|
251
|
-
if (val.length <= 0) {
|
|
252
|
-
return
|
|
253
|
-
}
|
|
254
|
-
this.curorgid = val
|
|
255
|
-
this.search()
|
|
256
|
-
}
|
|
245
|
+
clear () {
|
|
246
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
247
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
248
|
+
})
|
|
257
249
|
},
|
|
258
|
-
|
|
250
|
+
getorg (val) {
|
|
251
|
+
if (val.length <= 0) {
|
|
252
|
+
return
|
|
253
|
+
}
|
|
254
|
+
this.curorgid = val
|
|
255
|
+
this.search()
|
|
259
256
|
}
|
|
257
|
+
},
|
|
258
|
+
computed: {
|
|
260
259
|
}
|
|
260
|
+
}
|
|
261
261
|
</script>
|
|
262
262
|
<style scoped>
|
|
263
263
|
</style>
|