apply-clients 6.0.3 → 6.0.4
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 +72 -72
- package/package.json +1 -1
- package/src/components/apply/base/rightview/InstallCardList2.vue +267 -268
- package/src/components/apply/base/rightview/carddetail/BuildFeeDetail2.vue +77 -77
- package/src/components/apply/base/rightview/carddetail/ChangeFeeDetail2.vue +116 -116
- package/src/components/apply/base/rightview/carddetail/ReduceFeeDetail2.vue +1 -1
- package/src/components/build/Install/InstallFee/AddContract.vue +257 -257
- package/src/components/build/Install/InstallFee/InstallFee.vue +929 -929
- package/src/components/build/Install/InstallFee/PreparationFee.vue +223 -223
- package/src/components/build/Install/InstallFee/PrestoreFee.vue +630 -630
- package/src/components/build/Install/Process/CustomerBuildingMessage.vue +251 -251
- package/src/components/build/Install/Process/CustomerEquipmentMessage.vue +172 -172
- package/src/components/build/Install/Process/CustomerFile.vue +423 -423
- package/src/components/build/Install/Process/CustomerMaterialMessage.vue +414 -414
- package/src/components/build/Install/Process/CustomerRecordMessage.vue +749 -749
- package/src/components/build/Install/Process/FeeNormeAndContratSigne.vue +376 -376
- package/src/components/build/Install/Process/MeterType.vue +379 -379
- package/src/components/build/Install/Process/PlaceControler.vue +304 -304
- package/src/components/build/Install/Process/zhongran/ZR_Construction.vue +388 -388
- package/src/components/build/Install/Process/zhongran/ZR_MaterialPlan.vue +259 -259
- package/src/components/build/Install/Process/zhongran/ZR_MaterialPlanExamine.vue +243 -243
- package/src/components/build/Install/Process/zhongran/ZR_PlaceControler.vue +426 -426
- package/src/components/build/Install/Process/zhongran/ZR_TestDesign.vue +441 -441
- package/src/components/build/Install/ProcessInfo/ApplyRecordCancel.vue +135 -135
- package/src/components/build/Install/bill/BillGZKMakeInfo.vue +58 -58
- package/src/components/build/Install/bill/BillQRKMakeInfo.vue +79 -79
- package/src/components/build/Install/bill/BillXSDMakeInfo.vue +206 -206
- package/src/main.js +25 -25
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="auto">
|
|
3
|
-
<partial-view v-ref:pv>
|
|
4
|
-
<!-- <div class="row"> -->
|
|
5
|
-
<!-- <label class = " col-sm-3 control-label">用户姓名:</label> -->
|
|
6
|
-
<!-- <span style="padding:0" class = " col-sm-3">{{model[0].f_user_name}}</span> -->
|
|
7
|
-
<!-- <label class = "col-sm-3 control-label">操作人:</label>
|
|
8
|
-
<span class = "col-sm-3">{{model.f_operator}}</span> -->
|
|
9
|
-
<!-- </div> -->
|
|
10
|
-
<table class="table table-bordered table-condensed self-table" id="table" >
|
|
11
|
-
<!-- <tr>
|
|
12
|
-
<td><b>缴费账户</b></td>
|
|
13
|
-
<td>{{data.f_user_name}}</td>
|
|
14
|
-
</tr> -->
|
|
15
|
-
<tr>
|
|
16
|
-
<td><b>缴费类型</b></td>
|
|
17
|
-
<td>{{model.f_paytype}}</td>
|
|
18
|
-
</tr>
|
|
19
|
-
<tr>
|
|
20
|
-
<td><b>缴费金额</b></td>
|
|
21
|
-
<td>{{model.f_fee}}</td>
|
|
22
|
-
</tr>
|
|
23
|
-
<tr>
|
|
24
|
-
<td><b>交款人</b></td>
|
|
25
|
-
<td>{{model.f_payer}}</td>
|
|
26
|
-
</tr>
|
|
27
|
-
<tr>
|
|
28
|
-
<td><b>缴费日期</b></td>
|
|
29
|
-
<td>{{model.f_date}}</td>
|
|
30
|
-
</tr>
|
|
31
|
-
</table>
|
|
32
|
-
|
|
33
|
-
</partial-view>
|
|
34
|
-
</div>
|
|
35
|
-
</template>
|
|
36
|
-
|
|
37
|
-
<script>
|
|
38
|
-
import Table from '../../../../Table'
|
|
39
|
-
export default {
|
|
40
|
-
title: '报建收费',
|
|
41
|
-
props: ['data'],
|
|
42
|
-
data () {
|
|
43
|
-
return {
|
|
44
|
-
model: {}
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
ready () {
|
|
48
|
-
console.log('rrrrrrrrrrrrrrr', this.data)
|
|
49
|
-
let sql = 'singleTable_OrderBy'
|
|
50
|
-
let condition = {
|
|
51
|
-
items: '*',
|
|
52
|
-
tablename: 't_paydetail',
|
|
53
|
-
condition: 'id = ' + this.data.id,
|
|
54
|
-
orderitem: 'id'
|
|
55
|
-
}
|
|
56
|
-
this.$info(`加载数据中..., sql:${sql}`)
|
|
57
|
-
this.$refs.pv.load('rs/sql/
|
|
58
|
-
this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
|
|
59
|
-
this.model = a.data
|
|
60
|
-
console.log('1111111model', this.model)
|
|
61
|
-
console.log('1111111data', a.data)
|
|
62
|
-
}).catch((error) => {
|
|
63
|
-
if (error.status) {
|
|
64
|
-
this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
|
|
65
|
-
return
|
|
66
|
-
}
|
|
67
|
-
throw error
|
|
68
|
-
})
|
|
69
|
-
},
|
|
70
|
-
methods: {
|
|
71
|
-
// 获取表中字段对应的中文名
|
|
72
|
-
getValue (key) {
|
|
73
|
-
return Table.data[key]
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="auto">
|
|
3
|
+
<partial-view v-ref:pv>
|
|
4
|
+
<!-- <div class="row"> -->
|
|
5
|
+
<!-- <label class = " col-sm-3 control-label">用户姓名:</label> -->
|
|
6
|
+
<!-- <span style="padding:0" class = " col-sm-3">{{model[0].f_user_name}}</span> -->
|
|
7
|
+
<!-- <label class = "col-sm-3 control-label">操作人:</label>
|
|
8
|
+
<span class = "col-sm-3">{{model.f_operator}}</span> -->
|
|
9
|
+
<!-- </div> -->
|
|
10
|
+
<table class="table table-bordered table-condensed self-table" id="table" >
|
|
11
|
+
<!-- <tr>
|
|
12
|
+
<td><b>缴费账户</b></td>
|
|
13
|
+
<td>{{data.f_user_name}}</td>
|
|
14
|
+
</tr> -->
|
|
15
|
+
<tr>
|
|
16
|
+
<td><b>缴费类型</b></td>
|
|
17
|
+
<td>{{model.f_paytype}}</td>
|
|
18
|
+
</tr>
|
|
19
|
+
<tr>
|
|
20
|
+
<td><b>缴费金额</b></td>
|
|
21
|
+
<td>{{model.f_fee}}</td>
|
|
22
|
+
</tr>
|
|
23
|
+
<tr>
|
|
24
|
+
<td><b>交款人</b></td>
|
|
25
|
+
<td>{{model.f_payer}}</td>
|
|
26
|
+
</tr>
|
|
27
|
+
<tr>
|
|
28
|
+
<td><b>缴费日期</b></td>
|
|
29
|
+
<td>{{model.f_date}}</td>
|
|
30
|
+
</tr>
|
|
31
|
+
</table>
|
|
32
|
+
|
|
33
|
+
</partial-view>
|
|
34
|
+
</div>
|
|
35
|
+
</template>
|
|
36
|
+
|
|
37
|
+
<script>
|
|
38
|
+
import Table from '../../../../Table'
|
|
39
|
+
export default {
|
|
40
|
+
title: '报建收费',
|
|
41
|
+
props: ['data'],
|
|
42
|
+
data () {
|
|
43
|
+
return {
|
|
44
|
+
model: {}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
ready () {
|
|
48
|
+
console.log('rrrrrrrrrrrrrrr', this.data)
|
|
49
|
+
let sql = 'singleTable_OrderBy'
|
|
50
|
+
let condition = {
|
|
51
|
+
items: '*',
|
|
52
|
+
tablename: 't_paydetail',
|
|
53
|
+
condition: 'id = ' + this.data.id,
|
|
54
|
+
orderitem: 'id'
|
|
55
|
+
}
|
|
56
|
+
this.$info(`加载数据中..., sql:${sql}`)
|
|
57
|
+
this.$refs.pv.load('rs/sql/applysingleTable', {data: condition}).then((a) => {
|
|
58
|
+
this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
|
|
59
|
+
this.model = a.data
|
|
60
|
+
console.log('1111111model', this.model)
|
|
61
|
+
console.log('1111111data', a.data)
|
|
62
|
+
}).catch((error) => {
|
|
63
|
+
if (error.status) {
|
|
64
|
+
this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
|
|
65
|
+
return
|
|
66
|
+
}
|
|
67
|
+
throw error
|
|
68
|
+
})
|
|
69
|
+
},
|
|
70
|
+
methods: {
|
|
71
|
+
// 获取表中字段对应的中文名
|
|
72
|
+
getValue (key) {
|
|
73
|
+
return Table.data[key]
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
</script>
|
|
@@ -1,116 +1,116 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="auto">
|
|
3
|
-
<partial-view v-ref:pv>
|
|
4
|
-
<!-- <div class="row"> -->
|
|
5
|
-
<!-- <label class = " col-sm-3 control-label">用户姓名:</label> -->
|
|
6
|
-
<!-- <span style="padding:0" class = " col-sm-3">{{model[0].f_user_name}}</span> -->
|
|
7
|
-
<!-- <label class = "col-sm-3 control-label">操作人:</label>
|
|
8
|
-
<span class = "col-sm-3">{{model.f_operator}}</span> -->
|
|
9
|
-
<!-- </div> -->
|
|
10
|
-
<table class="table table-bordered table-condensed self-table" id="table" >
|
|
11
|
-
<tbody>
|
|
12
|
-
<tr>
|
|
13
|
-
<td><b>原开户费</b></td>
|
|
14
|
-
<td>{{model.f_account_cost}}</td>
|
|
15
|
-
<td><b>现开户费</b></td>
|
|
16
|
-
<td>{{model.f_new_account_cost}}</td>
|
|
17
|
-
</tr>
|
|
18
|
-
<tr>
|
|
19
|
-
<td><b>原入户安装费</b></td>
|
|
20
|
-
<td>{{model.f_construction_cost}}</td>
|
|
21
|
-
<td><b>现入户安装费</b></td>
|
|
22
|
-
<td>{{model.f_new_construction_cost}}</td>
|
|
23
|
-
</tr>
|
|
24
|
-
<tr>
|
|
25
|
-
<td><b>原材料费</b></td>
|
|
26
|
-
<td>{{model.f_material_cost}}</td>
|
|
27
|
-
<td><b>现材料费</b></td>
|
|
28
|
-
<td>{{model.f_new_material_cost}}</td>
|
|
29
|
-
</tr>
|
|
30
|
-
<tr>
|
|
31
|
-
<td><b>原工人费</b></td>
|
|
32
|
-
<td>{{model.f_labor_cost}}</td>
|
|
33
|
-
<td><b>现工人费</b></td>
|
|
34
|
-
<td>{{model.f_new_labor_cost}}</td>
|
|
35
|
-
</tr>
|
|
36
|
-
<tr>
|
|
37
|
-
<td><b>原改管费</b></td>
|
|
38
|
-
<td>{{model.f_change_pipeline_cost}}</td>
|
|
39
|
-
<td><b>现改管费</b></td>
|
|
40
|
-
<td>{{model.f_new_change_pipeline_cost}}</td>
|
|
41
|
-
</tr>
|
|
42
|
-
<tr>
|
|
43
|
-
<td><b>原设备安装费</b></td>
|
|
44
|
-
<td>{{model.f_sbaz_cost}}</td>
|
|
45
|
-
<td><b>现设备安装费</b></td>
|
|
46
|
-
<td>{{model.f_new_sbaz_cost}}</td>
|
|
47
|
-
</tr>
|
|
48
|
-
<!-- <tr>
|
|
49
|
-
<td><b>现入户安装费</b></td>
|
|
50
|
-
<td>{{model.f_new_construction_cost}}</td>
|
|
51
|
-
</tr>
|
|
52
|
-
<tr>
|
|
53
|
-
<td><b>现材料费</b></td>
|
|
54
|
-
<td>{{model.f_new_material_cost}}</td>
|
|
55
|
-
</tr>
|
|
56
|
-
<tr>
|
|
57
|
-
<td><b>现工人费</b></td>
|
|
58
|
-
<td>{{model.f_new_labor_cost}}</td>
|
|
59
|
-
</tr>
|
|
60
|
-
<tr>
|
|
61
|
-
<td><b>现改管费</b></td>
|
|
62
|
-
<td>{{model.f_new_change_pipeline_cost}}</td>
|
|
63
|
-
</tr>
|
|
64
|
-
<tr>
|
|
65
|
-
<td><b>现设备安装费</b></td>
|
|
66
|
-
<td>{{model.f_new_sbaz_cost}}</td>
|
|
67
|
-
</tr> -->
|
|
68
|
-
<tr>
|
|
69
|
-
<td><b>操作日期</b></td>
|
|
70
|
-
<td colspan="3">{{model.f_date}}</td>
|
|
71
|
-
</tr>
|
|
72
|
-
</tbody>
|
|
73
|
-
</table>
|
|
74
|
-
|
|
75
|
-
</partial-view>
|
|
76
|
-
</div>
|
|
77
|
-
</template>
|
|
78
|
-
|
|
79
|
-
<script>
|
|
80
|
-
import Table from '../../../../Table'
|
|
81
|
-
export default {
|
|
82
|
-
title: '报建费用变更',
|
|
83
|
-
props: ['data'],
|
|
84
|
-
data () {
|
|
85
|
-
return {
|
|
86
|
-
model: {}
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
ready () {
|
|
90
|
-
let sql = 'singleTable_OrderBy'
|
|
91
|
-
let data2 = {
|
|
92
|
-
tablename: 't_changefee',
|
|
93
|
-
condition: 'id = ' + this.data.id
|
|
94
|
-
}
|
|
95
|
-
this.$info(`加载数据中..., sql:${sql}`)
|
|
96
|
-
this.$refs.pv.load('rs/sql/
|
|
97
|
-
this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
|
|
98
|
-
this.model = a.data
|
|
99
|
-
console.log('1111111model', this.model)
|
|
100
|
-
console.log('1111111data', a.data)
|
|
101
|
-
}).catch((error) => {
|
|
102
|
-
if (error.status) {
|
|
103
|
-
this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
|
|
104
|
-
return
|
|
105
|
-
}
|
|
106
|
-
throw error
|
|
107
|
-
})
|
|
108
|
-
},
|
|
109
|
-
methods: {
|
|
110
|
-
// 获取表中字段对应的中文名
|
|
111
|
-
getValue (key) {
|
|
112
|
-
return Table.data[key]
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="auto">
|
|
3
|
+
<partial-view v-ref:pv>
|
|
4
|
+
<!-- <div class="row"> -->
|
|
5
|
+
<!-- <label class = " col-sm-3 control-label">用户姓名:</label> -->
|
|
6
|
+
<!-- <span style="padding:0" class = " col-sm-3">{{model[0].f_user_name}}</span> -->
|
|
7
|
+
<!-- <label class = "col-sm-3 control-label">操作人:</label>
|
|
8
|
+
<span class = "col-sm-3">{{model.f_operator}}</span> -->
|
|
9
|
+
<!-- </div> -->
|
|
10
|
+
<table class="table table-bordered table-condensed self-table" id="table" >
|
|
11
|
+
<tbody>
|
|
12
|
+
<tr>
|
|
13
|
+
<td><b>原开户费</b></td>
|
|
14
|
+
<td>{{model.f_account_cost}}</td>
|
|
15
|
+
<td><b>现开户费</b></td>
|
|
16
|
+
<td>{{model.f_new_account_cost}}</td>
|
|
17
|
+
</tr>
|
|
18
|
+
<tr>
|
|
19
|
+
<td><b>原入户安装费</b></td>
|
|
20
|
+
<td>{{model.f_construction_cost}}</td>
|
|
21
|
+
<td><b>现入户安装费</b></td>
|
|
22
|
+
<td>{{model.f_new_construction_cost}}</td>
|
|
23
|
+
</tr>
|
|
24
|
+
<tr>
|
|
25
|
+
<td><b>原材料费</b></td>
|
|
26
|
+
<td>{{model.f_material_cost}}</td>
|
|
27
|
+
<td><b>现材料费</b></td>
|
|
28
|
+
<td>{{model.f_new_material_cost}}</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<tr>
|
|
31
|
+
<td><b>原工人费</b></td>
|
|
32
|
+
<td>{{model.f_labor_cost}}</td>
|
|
33
|
+
<td><b>现工人费</b></td>
|
|
34
|
+
<td>{{model.f_new_labor_cost}}</td>
|
|
35
|
+
</tr>
|
|
36
|
+
<tr>
|
|
37
|
+
<td><b>原改管费</b></td>
|
|
38
|
+
<td>{{model.f_change_pipeline_cost}}</td>
|
|
39
|
+
<td><b>现改管费</b></td>
|
|
40
|
+
<td>{{model.f_new_change_pipeline_cost}}</td>
|
|
41
|
+
</tr>
|
|
42
|
+
<tr>
|
|
43
|
+
<td><b>原设备安装费</b></td>
|
|
44
|
+
<td>{{model.f_sbaz_cost}}</td>
|
|
45
|
+
<td><b>现设备安装费</b></td>
|
|
46
|
+
<td>{{model.f_new_sbaz_cost}}</td>
|
|
47
|
+
</tr>
|
|
48
|
+
<!-- <tr>
|
|
49
|
+
<td><b>现入户安装费</b></td>
|
|
50
|
+
<td>{{model.f_new_construction_cost}}</td>
|
|
51
|
+
</tr>
|
|
52
|
+
<tr>
|
|
53
|
+
<td><b>现材料费</b></td>
|
|
54
|
+
<td>{{model.f_new_material_cost}}</td>
|
|
55
|
+
</tr>
|
|
56
|
+
<tr>
|
|
57
|
+
<td><b>现工人费</b></td>
|
|
58
|
+
<td>{{model.f_new_labor_cost}}</td>
|
|
59
|
+
</tr>
|
|
60
|
+
<tr>
|
|
61
|
+
<td><b>现改管费</b></td>
|
|
62
|
+
<td>{{model.f_new_change_pipeline_cost}}</td>
|
|
63
|
+
</tr>
|
|
64
|
+
<tr>
|
|
65
|
+
<td><b>现设备安装费</b></td>
|
|
66
|
+
<td>{{model.f_new_sbaz_cost}}</td>
|
|
67
|
+
</tr> -->
|
|
68
|
+
<tr>
|
|
69
|
+
<td><b>操作日期</b></td>
|
|
70
|
+
<td colspan="3">{{model.f_date}}</td>
|
|
71
|
+
</tr>
|
|
72
|
+
</tbody>
|
|
73
|
+
</table>
|
|
74
|
+
|
|
75
|
+
</partial-view>
|
|
76
|
+
</div>
|
|
77
|
+
</template>
|
|
78
|
+
|
|
79
|
+
<script>
|
|
80
|
+
import Table from '../../../../Table'
|
|
81
|
+
export default {
|
|
82
|
+
title: '报建费用变更',
|
|
83
|
+
props: ['data'],
|
|
84
|
+
data () {
|
|
85
|
+
return {
|
|
86
|
+
model: {}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
ready () {
|
|
90
|
+
let sql = 'singleTable_OrderBy'
|
|
91
|
+
let data2 = {
|
|
92
|
+
tablename: 't_changefee',
|
|
93
|
+
condition: 'id = ' + this.data.id
|
|
94
|
+
}
|
|
95
|
+
this.$info(`加载数据中..., sql:${sql}`)
|
|
96
|
+
this.$refs.pv.load('rs/sql/applysingleTable', {data: data2}).then((a) => {
|
|
97
|
+
this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
|
|
98
|
+
this.model = a.data
|
|
99
|
+
console.log('1111111model', this.model)
|
|
100
|
+
console.log('1111111data', a.data)
|
|
101
|
+
}).catch((error) => {
|
|
102
|
+
if (error.status) {
|
|
103
|
+
this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
|
|
104
|
+
return
|
|
105
|
+
}
|
|
106
|
+
throw error
|
|
107
|
+
})
|
|
108
|
+
},
|
|
109
|
+
methods: {
|
|
110
|
+
// 获取表中字段对应的中文名
|
|
111
|
+
getValue (key) {
|
|
112
|
+
return Table.data[key]
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
</script>
|
|
@@ -54,7 +54,7 @@ export default {
|
|
|
54
54
|
orderitem: 'id'
|
|
55
55
|
}
|
|
56
56
|
this.$info(`加载数据中..., sql:${sql}`)
|
|
57
|
-
this.$refs.pv.load('rs/sql/
|
|
57
|
+
this.$refs.pv.load('rs/sql/applysingleTable', {data:condition}).then((a) => {
|
|
58
58
|
this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
|
|
59
59
|
this.model = a.data
|
|
60
60
|
console.log('1111111model', this.model)
|