apply-clients 3.5.1 → 3.5.2
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 +142 -133
- package/package.json +118 -118
- package/src/App.vue +26 -21
- package/src/applyAndroid.js +58 -58
- package/src/components/android/AppSign.vue +152 -152
- package/src/components/android/AppTakePic.vue +181 -181
- package/src/components/android/Process/AppChargeList.vue +224 -224
- package/src/components/android/Process/AppExplorationUser.vue +508 -508
- package/src/components/product/Install/ContractCharge.vue +210 -210
- package/src/filiale/fugou/android/AppChargeManagement.vue +625 -625
- package/src/filiale/hongda/pc/FunctionServiceControl.vue +526 -525
- package/src/filiale/qianneng/android/AppExplorationUser.vue +441 -441
- package/src/filiale/qianneng/android/AppServiceControl.vue +1608 -1608
- package/src/filiale/qianneng/pc/Applybatchdispatch.vue +685 -685
- package/src/filiale/qianneng/pc/ExplorationSelect.vue +492 -492
- package/src/filiale/qianneng/pc/FunctionServiceControl.vue +521 -521
- package/src/filiale/qianneng/pc/InstallInfoSelect.vue +392 -392
- package/src/filiale/qianneng/pc/InstallationDetails.vue +561 -561
- package/src/filiale/qianneng/pc/ServiceControl.vue +1351 -1340
- package/src/filiale/qianneng/pc/SupervisoryList.vue +344 -344
- package/src/filiale/qianneng/pc/SupervisoryServiceControl.vue +871 -871
- package/src/filiale/qianneng/pc/chargeManagement.vue +656 -656
- package/src/filiale/qianneng/pc/printactivatecard.vue +295 -295
- package/src/filiale/qianneng/pc/supplementalAgreement.vue +344 -344
- package/src/filiale/yangchunboneng/android/AppAddMaterialScience.vue +390 -390
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +120 -120
- package/src/filiale/yangchunboneng/android/AppDevicesManagement.vue +552 -552
- package/src/filiale/yangchunboneng/android/AppExplorationUser.vue +507 -507
- package/src/filiale/yangchunboneng/android/AppInstallationDetails.vue +492 -492
- package/src/filiale/yangchunboneng/android/AppOtherChargeManagement.vue +116 -116
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1552 -1552
- package/src/filiale/yangchunboneng/android/AppTakePic.vue +181 -181
- package/src/filiale/yangchunboneng/android/chargesList.vue +170 -170
- package/src/filiale/yangchunboneng/android.js +16 -16
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +496 -496
- package/src/filiale/yangchunboneng/pc/InstallationDetails.vue +609 -609
- package/src/filiale/yangchunboneng/pc/ServiceControl.vue +1782 -1782
- package/src/filiale/yangchunboneng/pc/ServiceView.vue +1005 -1005
- package/src/filiale/yangchunboneng/pc/addMaterialScience.vue +374 -374
- package/src/filiale/yangchunboneng/pc/chargeManagement.vue +960 -960
- package/src/filiale/yangchunboneng/pc/devicesManagement.vue +511 -511
- package/src/filiale/yangchunboneng/pc/otherchargeManagement.vue +214 -214
- package/src/filiale/yangchunboneng/pc.js +17 -17
- package/src/main.js +23 -23
|
@@ -1,170 +1,170 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="tel-charges-list">
|
|
3
|
-
|
|
4
|
-
<div class="list">
|
|
5
|
-
<div>
|
|
6
|
-
<data-grid partial='list' v-ref:grid :model="model" class="list_area table_sy">
|
|
7
|
-
<template partial='body'>
|
|
8
|
-
<td style="text-align: center;">
|
|
9
|
-
<nobr>{{ row.f_payment }}</nobr>
|
|
10
|
-
</td>
|
|
11
|
-
<td style="text-align: center;">
|
|
12
|
-
<nobr>¥{{ row.f_collection }}</nobr>
|
|
13
|
-
</td>
|
|
14
|
-
<td style="text-align: center;">
|
|
15
|
-
<nobr><button @click="$parent.$parent.getAllMaterial(row)">查看</button></nobr>
|
|
16
|
-
</td>
|
|
17
|
-
</template>
|
|
18
|
-
</data-grid>
|
|
19
|
-
</div>
|
|
20
|
-
<div class="">
|
|
21
|
-
<data-grid partial='list' v-ref:grid :model="material" class="list_area table_sy">
|
|
22
|
-
<template partial='head'>
|
|
23
|
-
<tr>
|
|
24
|
-
<th>
|
|
25
|
-
<nobr>品名规格</nobr>
|
|
26
|
-
</th>
|
|
27
|
-
<th>
|
|
28
|
-
<nobr>型号</nobr>
|
|
29
|
-
</th>
|
|
30
|
-
<th>
|
|
31
|
-
<nobr>单价</nobr>
|
|
32
|
-
</th>
|
|
33
|
-
<th>
|
|
34
|
-
<nobr>数量</nobr>
|
|
35
|
-
<button type="button" name="button" class="btn btn-primary btn-sm btn-img-cl" @click="$parent.$parent.open()" style="margin-left: 20px">
|
|
36
|
-
新增收费
|
|
37
|
-
</button>
|
|
38
|
-
</th>
|
|
39
|
-
</tr>
|
|
40
|
-
</template>
|
|
41
|
-
<template partial='body'>
|
|
42
|
-
<td style="text-align: center;">
|
|
43
|
-
<nobr>{{row.f_material_name }}</nobr>
|
|
44
|
-
</td>
|
|
45
|
-
<td style="text-align: center;">
|
|
46
|
-
<nobr>{{ row.f_typenumber }}</nobr>
|
|
47
|
-
</td>
|
|
48
|
-
<td style="text-align: center;">
|
|
49
|
-
<nobr>{{ row.f_material_price }}</nobr>
|
|
50
|
-
</td>
|
|
51
|
-
<td style="text-align: center;">
|
|
52
|
-
<nobr>{{ row.f_material_number }}</nobr>
|
|
53
|
-
</td>
|
|
54
|
-
</template>
|
|
55
|
-
</data-grid>
|
|
56
|
-
</div>
|
|
57
|
-
</div>
|
|
58
|
-
<modal v-if="changeModel" :show.sync="changeModel" :backdrop="false" >
|
|
59
|
-
<header slot="modal-header" class="modal-header">
|
|
60
|
-
<button type="button" class="close" @click="changeModel=false"><span>×</span></button>
|
|
61
|
-
<h4 class="modal-title">添加材料</h4>
|
|
62
|
-
</header>
|
|
63
|
-
<article slot="modal-body" class="modal-body clearfix">
|
|
64
|
-
<appinstallation-material v-if="changeModel" :selectdata = "selectdata" @valueChange="change" @aftersave="aftersave()"></appinstallation-material>
|
|
65
|
-
</article>
|
|
66
|
-
<footer slot="modal-footer" class="modal-footer">
|
|
67
|
-
|
|
68
|
-
</footer>
|
|
69
|
-
</modal>
|
|
70
|
-
</div>
|
|
71
|
-
</template>
|
|
72
|
-
|
|
73
|
-
<script>
|
|
74
|
-
import Vue from 'vue'
|
|
75
|
-
import {HttpResetClass} from 'vue-client'
|
|
76
|
-
import QRCode from 'qrcodejs2'
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
export default {
|
|
80
|
-
title: '材料添加',
|
|
81
|
-
props: {
|
|
82
|
-
selectdata: {
|
|
83
|
-
type: Object
|
|
84
|
-
}
|
|
85
|
-
},
|
|
86
|
-
data() {
|
|
87
|
-
return {
|
|
88
|
-
model:{rows:[]},
|
|
89
|
-
material:{rows:[]},
|
|
90
|
-
changeModel:false
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
ready() {
|
|
94
|
-
this.selectdata.model = {
|
|
95
|
-
f_userinfo_id: this.selectdata.f_userinfo_id,
|
|
96
|
-
f_user_name: this.selectdata.f_user_name,
|
|
97
|
-
f_address: this.selectdata.f_address,
|
|
98
|
-
f_user_type: this.selectdata.f_user_type
|
|
99
|
-
}
|
|
100
|
-
this.getAllOthercharge()
|
|
101
|
-
// this.getmaterial()
|
|
102
|
-
// this.getmaterialTYPE()
|
|
103
|
-
|
|
104
|
-
},
|
|
105
|
-
methods: {
|
|
106
|
-
open(){
|
|
107
|
-
this.changeModel = true
|
|
108
|
-
},
|
|
109
|
-
aftersave(){
|
|
110
|
-
this.getAllOthercharge()
|
|
111
|
-
this.changeModel=false
|
|
112
|
-
},
|
|
113
|
-
getAllOthercharge(){
|
|
114
|
-
new HttpResetClass().load('POST',this.$androidUtil.getProxyUrl() +`/rs/sql/tel_singleTable_OrderBy?pageNo=1&pageSize=10`, {data: {
|
|
115
|
-
items: '*',
|
|
116
|
-
tablename: 't_othercharge',
|
|
117
|
-
condition: ` f_voucher_number='${this.selectdata.f_process_id}' and f_state='有效'`,
|
|
118
|
-
orderitem: 'id desc'
|
|
119
|
-
}},{resolveMsg:null,rejectMsg:null}).then(res=>{
|
|
120
|
-
console.log(res)
|
|
121
|
-
this.model.rows=res.data
|
|
122
|
-
}).catch((e)=>{
|
|
123
|
-
console.log("933",e)
|
|
124
|
-
})
|
|
125
|
-
},
|
|
126
|
-
getAllMaterial(row){
|
|
127
|
-
new HttpResetClass().load('POST',this.$androidUtil.getProxyUrl() +`/rs/sql/tel_singleTable_OrderBy?pageNo=1&pageSize=100`, {data: {
|
|
128
|
-
items: '*',
|
|
129
|
-
tablename: 't_material_service',
|
|
130
|
-
condition: ` f_othercharge_id='${row.id}'`,
|
|
131
|
-
orderitem: 'id desc'
|
|
132
|
-
}},{resolveMsg:null,rejectMsg:null}).then(res=>{
|
|
133
|
-
console.log(res)
|
|
134
|
-
this.material.rows=res.data
|
|
135
|
-
}).catch((e)=>{
|
|
136
|
-
console.log("933",e)
|
|
137
|
-
})
|
|
138
|
-
},
|
|
139
|
-
},
|
|
140
|
-
events: {},
|
|
141
|
-
computed: {},
|
|
142
|
-
watch: {
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
</script>
|
|
146
|
-
<style lang="less" scoped>
|
|
147
|
-
.head-but {
|
|
148
|
-
margin-left: 5px;
|
|
149
|
-
height: 34px;
|
|
150
|
-
/*background-color: #6aa6e2;*/
|
|
151
|
-
border-radius: 4px;
|
|
152
|
-
font-family: PingFang;
|
|
153
|
-
color: #ffffff;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
/*清除model中的浮动*/
|
|
157
|
-
.clearfix:after, .clearfix:before {
|
|
158
|
-
display: table;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.clearfix:after {
|
|
162
|
-
clear: both;
|
|
163
|
-
}
|
|
164
|
-
#tel-charges-list{
|
|
165
|
-
.list{
|
|
166
|
-
display: flex;
|
|
167
|
-
flex-direction: column;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div id="tel-charges-list">
|
|
3
|
+
|
|
4
|
+
<div class="list">
|
|
5
|
+
<div>
|
|
6
|
+
<data-grid partial='list' v-ref:grid :model="model" class="list_area table_sy">
|
|
7
|
+
<template partial='body'>
|
|
8
|
+
<td style="text-align: center;">
|
|
9
|
+
<nobr>{{ row.f_payment }}</nobr>
|
|
10
|
+
</td>
|
|
11
|
+
<td style="text-align: center;">
|
|
12
|
+
<nobr>¥{{ row.f_collection }}</nobr>
|
|
13
|
+
</td>
|
|
14
|
+
<td style="text-align: center;">
|
|
15
|
+
<nobr><button @click="$parent.$parent.getAllMaterial(row)">查看</button></nobr>
|
|
16
|
+
</td>
|
|
17
|
+
</template>
|
|
18
|
+
</data-grid>
|
|
19
|
+
</div>
|
|
20
|
+
<div class="">
|
|
21
|
+
<data-grid partial='list' v-ref:grid :model="material" class="list_area table_sy">
|
|
22
|
+
<template partial='head'>
|
|
23
|
+
<tr>
|
|
24
|
+
<th>
|
|
25
|
+
<nobr>品名规格</nobr>
|
|
26
|
+
</th>
|
|
27
|
+
<th>
|
|
28
|
+
<nobr>型号</nobr>
|
|
29
|
+
</th>
|
|
30
|
+
<th>
|
|
31
|
+
<nobr>单价</nobr>
|
|
32
|
+
</th>
|
|
33
|
+
<th>
|
|
34
|
+
<nobr>数量</nobr>
|
|
35
|
+
<button type="button" name="button" class="btn btn-primary btn-sm btn-img-cl" @click="$parent.$parent.open()" style="margin-left: 20px">
|
|
36
|
+
新增收费
|
|
37
|
+
</button>
|
|
38
|
+
</th>
|
|
39
|
+
</tr>
|
|
40
|
+
</template>
|
|
41
|
+
<template partial='body'>
|
|
42
|
+
<td style="text-align: center;">
|
|
43
|
+
<nobr>{{row.f_material_name }}</nobr>
|
|
44
|
+
</td>
|
|
45
|
+
<td style="text-align: center;">
|
|
46
|
+
<nobr>{{ row.f_typenumber }}</nobr>
|
|
47
|
+
</td>
|
|
48
|
+
<td style="text-align: center;">
|
|
49
|
+
<nobr>{{ row.f_material_price }}</nobr>
|
|
50
|
+
</td>
|
|
51
|
+
<td style="text-align: center;">
|
|
52
|
+
<nobr>{{ row.f_material_number }}</nobr>
|
|
53
|
+
</td>
|
|
54
|
+
</template>
|
|
55
|
+
</data-grid>
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
<modal v-if="changeModel" :show.sync="changeModel" :backdrop="false" >
|
|
59
|
+
<header slot="modal-header" class="modal-header">
|
|
60
|
+
<button type="button" class="close" @click="changeModel=false"><span>×</span></button>
|
|
61
|
+
<h4 class="modal-title">添加材料</h4>
|
|
62
|
+
</header>
|
|
63
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
64
|
+
<appinstallation-material v-if="changeModel" :selectdata = "selectdata" @valueChange="change" @aftersave="aftersave()"></appinstallation-material>
|
|
65
|
+
</article>
|
|
66
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
67
|
+
|
|
68
|
+
</footer>
|
|
69
|
+
</modal>
|
|
70
|
+
</div>
|
|
71
|
+
</template>
|
|
72
|
+
|
|
73
|
+
<script>
|
|
74
|
+
import Vue from 'vue'
|
|
75
|
+
import {HttpResetClass} from 'vue-client'
|
|
76
|
+
import QRCode from 'qrcodejs2'
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
export default {
|
|
80
|
+
title: '材料添加',
|
|
81
|
+
props: {
|
|
82
|
+
selectdata: {
|
|
83
|
+
type: Object
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
data() {
|
|
87
|
+
return {
|
|
88
|
+
model:{rows:[]},
|
|
89
|
+
material:{rows:[]},
|
|
90
|
+
changeModel:false
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
ready() {
|
|
94
|
+
this.selectdata.model = {
|
|
95
|
+
f_userinfo_id: this.selectdata.f_userinfo_id,
|
|
96
|
+
f_user_name: this.selectdata.f_user_name,
|
|
97
|
+
f_address: this.selectdata.f_address,
|
|
98
|
+
f_user_type: this.selectdata.f_user_type
|
|
99
|
+
}
|
|
100
|
+
this.getAllOthercharge()
|
|
101
|
+
// this.getmaterial()
|
|
102
|
+
// this.getmaterialTYPE()
|
|
103
|
+
|
|
104
|
+
},
|
|
105
|
+
methods: {
|
|
106
|
+
open(){
|
|
107
|
+
this.changeModel = true
|
|
108
|
+
},
|
|
109
|
+
aftersave(){
|
|
110
|
+
this.getAllOthercharge()
|
|
111
|
+
this.changeModel=false
|
|
112
|
+
},
|
|
113
|
+
getAllOthercharge(){
|
|
114
|
+
new HttpResetClass().load('POST',this.$androidUtil.getProxyUrl() +`/rs/sql/tel_singleTable_OrderBy?pageNo=1&pageSize=10`, {data: {
|
|
115
|
+
items: '*',
|
|
116
|
+
tablename: 't_othercharge',
|
|
117
|
+
condition: ` f_voucher_number='${this.selectdata.f_process_id}' and f_state='有效'`,
|
|
118
|
+
orderitem: 'id desc'
|
|
119
|
+
}},{resolveMsg:null,rejectMsg:null}).then(res=>{
|
|
120
|
+
console.log(res)
|
|
121
|
+
this.model.rows=res.data
|
|
122
|
+
}).catch((e)=>{
|
|
123
|
+
console.log("933",e)
|
|
124
|
+
})
|
|
125
|
+
},
|
|
126
|
+
getAllMaterial(row){
|
|
127
|
+
new HttpResetClass().load('POST',this.$androidUtil.getProxyUrl() +`/rs/sql/tel_singleTable_OrderBy?pageNo=1&pageSize=100`, {data: {
|
|
128
|
+
items: '*',
|
|
129
|
+
tablename: 't_material_service',
|
|
130
|
+
condition: ` f_othercharge_id='${row.id}'`,
|
|
131
|
+
orderitem: 'id desc'
|
|
132
|
+
}},{resolveMsg:null,rejectMsg:null}).then(res=>{
|
|
133
|
+
console.log(res)
|
|
134
|
+
this.material.rows=res.data
|
|
135
|
+
}).catch((e)=>{
|
|
136
|
+
console.log("933",e)
|
|
137
|
+
})
|
|
138
|
+
},
|
|
139
|
+
},
|
|
140
|
+
events: {},
|
|
141
|
+
computed: {},
|
|
142
|
+
watch: {
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
</script>
|
|
146
|
+
<style lang="less" scoped>
|
|
147
|
+
.head-but {
|
|
148
|
+
margin-left: 5px;
|
|
149
|
+
height: 34px;
|
|
150
|
+
/*background-color: #6aa6e2;*/
|
|
151
|
+
border-radius: 4px;
|
|
152
|
+
font-family: PingFang;
|
|
153
|
+
color: #ffffff;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/*清除model中的浮动*/
|
|
157
|
+
.clearfix:after, .clearfix:before {
|
|
158
|
+
display: table;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.clearfix:after {
|
|
162
|
+
clear: both;
|
|
163
|
+
}
|
|
164
|
+
#tel-charges-list{
|
|
165
|
+
.list{
|
|
166
|
+
display: flex;
|
|
167
|
+
flex-direction: column;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
</style>
|
|
@@ -1,16 +1,16 @@
|
|
|
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-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) },
|
|
12
|
-
'appinstallation-material': (resolve) => { require(['./android/AppInstallationMaterial'], resolve) },
|
|
13
|
-
'material-one': (resolve) => { require(['./android/MaterIialOne'], resolve) }
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
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-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) },
|
|
12
|
+
'appinstallation-material': (resolve) => { require(['./android/AppInstallationMaterial'], resolve) },
|
|
13
|
+
'material-one': (resolve) => { require(['./android/MaterIialOne'], resolve) }
|
|
14
|
+
|
|
15
|
+
}
|
|
16
|
+
exports.specialComp = specialComp
|