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
package/src/main.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App'
|
|
3
|
-
import { all } from 'vue-client'
|
|
4
|
-
import {ldap} from 'ldap-clients'
|
|
5
|
-
import {system} from 'system-clients'
|
|
6
|
-
import {sale} from 'sale-client'
|
|
7
|
-
import {material} from 'material-client'
|
|
8
|
-
|
|
9
|
-
import apply from './apply'
|
|
10
|
-
|
|
11
|
-
all()
|
|
12
|
-
apply()
|
|
13
|
-
ldap()
|
|
14
|
-
sale()
|
|
15
|
-
material()
|
|
16
|
-
system(false)
|
|
17
|
-
|
|
18
|
-
require('system-clients/src/styles/less/bootstrap.less')
|
|
19
|
-
require('./expandcss.less')
|
|
20
|
-
new Vue({
|
|
21
|
-
el: 'body',
|
|
22
|
-
components: { App }
|
|
23
|
-
})
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App'
|
|
3
|
+
import { all } from 'vue-client'
|
|
4
|
+
import {ldap} from 'ldap-clients'
|
|
5
|
+
import {system} from 'system-clients'
|
|
6
|
+
import {sale} from 'sale-client'
|
|
7
|
+
import {material} from 'material-client'
|
|
8
|
+
|
|
9
|
+
import apply from './apply'
|
|
10
|
+
|
|
11
|
+
all()
|
|
12
|
+
apply()
|
|
13
|
+
ldap()
|
|
14
|
+
sale()
|
|
15
|
+
material()
|
|
16
|
+
system(false)
|
|
17
|
+
|
|
18
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
19
|
+
require('./expandcss.less')
|
|
20
|
+
new Vue({
|
|
21
|
+
el: 'body',
|
|
22
|
+
components: { App }
|
|
23
|
+
})
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
|
|
3
|
-
<div style="margin-left: 50%;margin-top: 10px"> <button class="btn btn-primary"@click.prevent="showPrintModal()">打印告知单</button> </div>
|
|
4
|
-
|
|
5
|
-
<modal :show.sync="showQuery">
|
|
6
|
-
<header slot="modal-header" class="modal-header">
|
|
7
|
-
<h3 style="color:black" class="modal-title">告知单打印</h3>
|
|
8
|
-
</header>
|
|
9
|
-
<article slot="modal-body" class="modal-body">
|
|
10
|
-
<div id="printi">
|
|
11
|
-
<h3> </h3><br>
|
|
12
|
-
<h3 style="margin-left: 22%">{{selectdata.f_apply_type}}天然气用户用气安装标准</h3>
|
|
13
|
-
{{{ model.data }}}
|
|
14
|
-
</div>
|
|
15
|
-
|
|
16
|
-
</article>
|
|
17
|
-
|
|
18
|
-
<footer slot="modal-footer" class="modal-footer">
|
|
19
|
-
<print-element v-ref:print v-show="false" id='printi' styleid='style'
|
|
20
|
-
top='10' left='60' width='100%' height='100%'>
|
|
21
|
-
</print-element>
|
|
22
|
-
<button type="button" class="btn btn-primary" @click="print()">打印</button>
|
|
23
|
-
</footer>
|
|
24
|
-
|
|
25
|
-
</modal>
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
</template>
|
|
29
|
-
|
|
30
|
-
<script>
|
|
31
|
-
import Vue from 'vue'
|
|
32
|
-
import {HttpResetClass} from 'vue-client'
|
|
33
|
-
export default {
|
|
34
|
-
title: '打印任务单',
|
|
35
|
-
props:{
|
|
36
|
-
selectdata: {
|
|
37
|
-
type :Object
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
|
|
41
|
-
data () {
|
|
42
|
-
return {
|
|
43
|
-
showQuery: false,
|
|
44
|
-
model: '',
|
|
45
|
-
showPrint: false,
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
methods: {
|
|
49
|
-
|
|
50
|
-
// 获取页面配置json文件
|
|
51
|
-
async loadName () {
|
|
52
|
-
let http = new HttpResetClass()
|
|
53
|
-
let response = await http.load('POST', 'rs/report/inform', {data: {bid:this.$parent.data.f_process_id}},{resolveMsg: null, rejectMsg: null})
|
|
54
|
-
this.model=response
|
|
55
|
-
console.log('-------------',this.model)
|
|
56
|
-
},
|
|
57
|
-
async showPrintModal () {
|
|
58
|
-
this.showQuery=! this.showQuery
|
|
59
|
-
console.log('-------------',this.selectdata)
|
|
60
|
-
await this.loadName()
|
|
61
|
-
}
|
|
62
|
-
, print () {
|
|
63
|
-
this.$refs.print.PrintTable()
|
|
64
|
-
},
|
|
65
|
-
closeModal () {
|
|
66
|
-
this.showPrint = false
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
</script>
|
|
71
|
-
|
|
72
|
-
<style scoped>
|
|
73
|
-
|
|
74
|
-
</style>
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
|
|
3
|
-
<div style="margin-left: 50% ;"> <button class="btn btn-primary"@click.prevent="showPrintModal()">打印调研表</button> </div>
|
|
4
|
-
|
|
5
|
-
<modal :show.sync="showQuery">
|
|
6
|
-
<header slot="modal-header" class="modal-header">
|
|
7
|
-
<h3 style="color:black" class="modal-title">调研表打印</h3>
|
|
8
|
-
</header>
|
|
9
|
-
<article slot="modal-body" class="modal-body">
|
|
10
|
-
<div id="print">
|
|
11
|
-
<h3> </h3><br>
|
|
12
|
-
<h3 style="margin-left: 24%">{{selectdata.f_orgname}}市场调查报告</h3>
|
|
13
|
-
<h4 style="margin-left: 60%">{{selectdata.operate_date}}</h4>
|
|
14
|
-
{{{ model.data }}}
|
|
15
|
-
<h5 style="margin-right: 25%">说明:以上甲方提供的用气设备及参数为出具工程预算书的依据,燃气表、燃气管道管径等设备的选择将以此为依据,应以甲方提供用气设备的铭牌数据为准,不能提供时可参照相关灶具额定用气量。</h5>
|
|
16
|
-
</div>
|
|
17
|
-
|
|
18
|
-
</article>
|
|
19
|
-
|
|
20
|
-
<footer slot="modal-footer" class="modal-footer">
|
|
21
|
-
<print-element v-ref:print v-show="false" id='print' styleid='style'
|
|
22
|
-
top='10' left='60' width='100%' height='100%'>
|
|
23
|
-
</print-element>
|
|
24
|
-
<button type="button" class="btn btn-primary" @click="print()">打印</button>
|
|
25
|
-
</footer>
|
|
26
|
-
|
|
27
|
-
</modal>
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
</template>
|
|
34
|
-
|
|
35
|
-
<script>
|
|
36
|
-
import Vue from 'vue'
|
|
37
|
-
import {HttpResetClass} from 'vue-client'
|
|
38
|
-
export default {
|
|
39
|
-
title: '打印调研单',
|
|
40
|
-
props:{
|
|
41
|
-
selectdata: {
|
|
42
|
-
type :Object
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
|
|
46
|
-
data () {
|
|
47
|
-
return {
|
|
48
|
-
showQuery: false,
|
|
49
|
-
model: '',
|
|
50
|
-
showPrint: false,
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
methods: {
|
|
54
|
-
|
|
55
|
-
// 获取页面配置json文件
|
|
56
|
-
async loadName () {
|
|
57
|
-
console.log('-------------',this.$parent.data,typeof this.$parent.data)
|
|
58
|
-
let http = new HttpResetClass()
|
|
59
|
-
let response = await http.load('POST', 'rs/report/market_survey', {data:{id:this.$parent.data.f_process_id}},{resolveMsg: null, rejectMsg: null})
|
|
60
|
-
this.model=response
|
|
61
|
-
console.log('-------------',this.model)
|
|
62
|
-
},
|
|
63
|
-
async showPrintModal () {
|
|
64
|
-
this.showQuery=! this.showQuery
|
|
65
|
-
console.log('-------------',this.selectdata)
|
|
66
|
-
await this.loadName()
|
|
67
|
-
}
|
|
68
|
-
, print () {
|
|
69
|
-
this.$refs.print.PrintTable()
|
|
70
|
-
},
|
|
71
|
-
closeModal () {
|
|
72
|
-
this.showPrint = false
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
</script>
|
|
77
|
-
|
|
78
|
-
<style scoped>
|
|
79
|
-
|
|
80
|
-
</style>
|