apply-clients 5.0.35-31 → 5.0.35-34
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/package.json
CHANGED
package/src/apply.js
CHANGED
|
@@ -1,154 +1,156 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
|
|
3
|
-
Vue.config.silent = true
|
|
4
|
-
import ApplyGetSaleParam from './stores/ApplyGetSaleParams'
|
|
5
|
-
import ApplyLoadParams from './stores/ApplyLoadParams'
|
|
6
|
-
import commonService from './plugins/commonService'
|
|
7
|
-
/** ****************服务插件*********************/
|
|
8
|
-
|
|
9
|
-
export default function () {
|
|
10
|
-
Vue.use(ApplyGetSaleParam)
|
|
11
|
-
Vue.use(ApplyLoadParams)
|
|
12
|
-
Vue.use(commonService)
|
|
13
|
-
/** ***************************报建模块*********************************/
|
|
14
|
-
|
|
15
|
-
/** ***********报建流程业务**********/
|
|
16
|
-
// 报建流程业务总入口
|
|
17
|
-
Vue.component('exploration-user', (resolve) => { require(['./components/product/Process/ExplorationUser'], resolve) })
|
|
18
|
-
// 报建流程业务总入口页面list布局
|
|
19
|
-
Vue.component('exploration-select', (resolve) => { require(['./components/product/Process/ExplorationSelect'], resolve) })
|
|
20
|
-
// 报建流程业务报建改装流程入口
|
|
21
|
-
Vue.component('modify-user-files', (resolve) => { require(['./components/product/Process/ModifyUserFiles'], resolve) })
|
|
22
|
-
// 报建收费查看
|
|
23
|
-
Vue.component('apply-charge-search', (resolve) => { require(['./components/product/Process/Processes/Service/ApplyChargeSearch'], resolve) })
|
|
24
|
-
// 材料使用汇总
|
|
25
|
-
Vue.component('material-use-list', (resolve) => { require(['./components/product/Process/MaterialUseList'], resolve) })
|
|
26
|
-
// 预算材料
|
|
27
|
-
Vue.component('material-message', (resolve) => { require(['./components/product/Process/Processes/CustomerMaterialMessage'], resolve) })
|
|
28
|
-
//领取材料
|
|
29
|
-
Vue.component('receive-batch', (resolve) => { require(['./components/product/Process/Processes/ReceiveBatch'], resolve) })
|
|
30
|
-
// 报建材料记录功能
|
|
31
|
-
Vue.component('material_recording', (resolve) => { require(['./components/product/Function/functions/material_recording'], resolve) })
|
|
32
|
-
// 档案tab页
|
|
33
|
-
Vue.component('record-message', (resolve) => { require(['./components/product/Process/Processes/CustomerRecordMessage'], resolve) })
|
|
34
|
-
// 材料tab页
|
|
35
|
-
Vue.component('material-message', (resolve) => { require(['./components/product/Process/Processes/CustomerMaterialMessage'], resolve) })
|
|
36
|
-
// 设备tab页
|
|
37
|
-
Vue.component('equipment-message', (resolve) => { require(['./components/product/Process/Processes/CustomerEquipmentMessage'], resolve) })
|
|
38
|
-
// 楼栋tab页
|
|
39
|
-
Vue.component('building-message', (resolve) => { require(['./components/product/Process/Processes/CustomerBuildingMessage'], resolve) })
|
|
40
|
-
// 业务tab(control层)页
|
|
41
|
-
Vue.component('service-control', (resolve) => { require(['./components/product/Process/Processes/Service/ServiceControl'], resolve) })
|
|
42
|
-
// 公共业务显示(view层)页
|
|
43
|
-
Vue.component('service-view', (resolve) => { require(['./components/product/ServiceView'], resolve) })
|
|
44
|
-
|
|
45
|
-
Vue.component('material-batch-list', (resolve) => { require(['./components/product/MaterialBatchList'], resolve) })
|
|
46
|
-
Vue.component('material-batch-manage', (resolve) => { require(['./components/product/MaterialBatchManage'], resolve) })
|
|
47
|
-
// 派工单tab页 废弃
|
|
48
|
-
// Vue.component('send-order', (resolve) => { require(['./components/product/Process/Processes/SendOrder'], resolve) })
|
|
49
|
-
// 停气碰口tab页
|
|
50
|
-
Vue.component('gas-stop', (resolve) => { require(['./components/product/Process/Processes/Service/GasStop'], resolve) })
|
|
51
|
-
// 显示退回理由tab页
|
|
52
|
-
Vue.component('show-back-reason', (resolve) => { require(['./components/product/Process/ShowBackReason'], resolve) })
|
|
53
|
-
|
|
54
|
-
// 报建历史信息页面
|
|
55
|
-
Vue.component('history_control', (resolve) => { require(['./components/product/Process/ProcessInfo/history_control'], resolve) })
|
|
56
|
-
|
|
57
|
-
// 工程结算
|
|
58
|
-
Vue.component('project-settlement', (resolve) => { require(['./components/product/Process/Processes/ProjectSettlement'], resolve) })
|
|
59
|
-
// 报建功能业务总入口
|
|
60
|
-
Vue.component('install-function', (resolve) => { require(['./components/product/Function/InstallFunction'], resolve) })
|
|
61
|
-
// 报建菜单页面控制层
|
|
62
|
-
Vue.component('function-service-control', (resolve) => { require(['./components/product/Function/Service/FunctionServiceControl'], resolve) })
|
|
63
|
-
// 终止报建业务
|
|
64
|
-
Vue.component('stop-install', (resolve) => { require(['./components/product/Function/functions/StopInstall'], resolve) })
|
|
65
|
-
// 报建业务信息
|
|
66
|
-
Vue.component('installinfoselect', (resolve) => { require(['./components/product/Function/InstallInfoSelect'], resolve) })
|
|
67
|
-
// 报建收费
|
|
68
|
-
Vue.component('installfee', (resolve) => { require(['./components/product/Function/functions/InstallFee'], resolve) })
|
|
69
|
-
// 报建收费
|
|
70
|
-
Vue.component('buyer-message', (resolve) => { require(['./components/product/Function/functions/BuyerMessage'], resolve) })
|
|
71
|
-
// 预缴费收费
|
|
72
|
-
Vue.component('prestorefee', (resolve) => { require(['./components/product/Function/functions/PrestoreFee'], resolve) })
|
|
73
|
-
// 预缴费
|
|
74
|
-
Vue.component('preparationfee', (resolve) => { require(['./components/product/Function/functions/PreparationFee'], resolve) })
|
|
75
|
-
// 操作记录撤销
|
|
76
|
-
Vue.component('apply-record-cancel', (resolve) => { require(['./components/product/Function/functions/ApplyRecordCancel'], resolve) })
|
|
77
|
-
// 费用变更信息
|
|
78
|
-
Vue.component('updatefee', (resolve) => { require(['./components/product/Function/functions/UpdateFee'], resolve) })
|
|
79
|
-
// 费用减免信息
|
|
80
|
-
Vue.component('reducefee', (resolve) => { require(['./components/product/Function/functions/ReduceFee'], resolve) })
|
|
81
|
-
// 报建收费信息
|
|
82
|
-
Vue.component('installfeeinfo', (resolve) => { require(['./components/product/Function/functions/InstallFeeInfo'], resolve) })
|
|
83
|
-
// 报建业务信息
|
|
84
|
-
Vue.component('installinfodown', (resolve) => { require(['./components/product/Function/InstallInfoDown'], resolve) })
|
|
85
|
-
// 详细业务信息
|
|
86
|
-
Vue.component('allselect', (resolve) => { require(['./components/product/Function/functions/AllSelect'], resolve) })
|
|
87
|
-
// 添加合同信息
|
|
88
|
-
Vue.component('addcontract', (resolve) => { require(['./components/product/Function/functions/AddContract'], resolve) })
|
|
89
|
-
// 打印票据
|
|
90
|
-
Vue.component('billselect', (resolve) => { require(['./components/product/Bill/BillSelect'], resolve) })
|
|
91
|
-
// 打印记录表票据
|
|
92
|
-
Vue.component('billjlb', (resolve) => { require(['./components/product/Bill/BillJLB'], resolve) })
|
|
93
|
-
// 打印开通卡票据
|
|
94
|
-
Vue.component('billktk', (resolve) => { require(['./components/product/Bill/BillKTK'], resolve) })
|
|
95
|
-
// 打印确认卡票据
|
|
96
|
-
Vue.component('billqrk', (resolve) => { require(['./components/product/Bill/BillQRK'], resolve) })
|
|
97
|
-
// 打印改装卡票据
|
|
98
|
-
Vue.component('billgzk', (resolve) => { require(['./components/product/Bill/BillGZK'], resolve) })
|
|
99
|
-
// 打印销售单票据
|
|
100
|
-
Vue.component('billxsd', (resolve) => { require(['./components/product/Bill/BillXSD'], resolve) })
|
|
101
|
-
// 销售单票据信息
|
|
102
|
-
Vue.component('billxsdmakeinfo', (resolve) => { require(['./components/product/Bill/BillXSDMakeInfo'], resolve) })
|
|
103
|
-
// 确认卡票据信息
|
|
104
|
-
Vue.component('billqrkmakeinfo', (resolve) => { require(['./components/product/Bill/BillQRKMakeInfo'], resolve) })
|
|
105
|
-
// 改装卡票据信息
|
|
106
|
-
Vue.component('billgzkmakeinfo', (resolve) => { require(['./components/product/Bill/BillGZKMakeInfo'], resolve) })
|
|
107
|
-
// 开通卡票据信息
|
|
108
|
-
Vue.component('billktkmakeinfo', (resolve) => { require(['./components/product/Bill/BillKTKMakeInfo'], resolve) })
|
|
109
|
-
// 销售记录表票据信息
|
|
110
|
-
Vue.component('billjlbmakeinfo', (resolve) => { require(['./components/product/Bill/BillJLBMakeInfo'], resolve) })
|
|
111
|
-
// 销售记录表历史票据信息
|
|
112
|
-
Vue.component('billqrkrecordinfo', (resolve) => { require(['./components/product/Bill/BillQRKRecordInfo'], resolve) })
|
|
113
|
-
// 改装卡历史票据信息
|
|
114
|
-
Vue.component('billgzkrecordinfo', (resolve) => { require(['./components/product/Bill/BillGZKRecordInfo'], resolve) })
|
|
115
|
-
// 销售单历史票据信息
|
|
116
|
-
Vue.component('billxsdrecordinfo', (resolve) => { require(['./components/product/Bill/BillXSDRecordInfo'], resolve) })
|
|
117
|
-
// 开通卡历史票据信息
|
|
118
|
-
Vue.component('billktkrecordinfo', (resolve) => { require(['./components/product/Bill/BillKTKRecordInfo'], resolve) })
|
|
119
|
-
// 开通卡历史票据信息
|
|
120
|
-
Vue.component('billjlbrecordinfo', (resolve) => { require(['./components/product/Bill/BillJLBRecordInfo'], resolve) })
|
|
121
|
-
|
|
122
|
-
// 报建收费卡片详情
|
|
123
|
-
Vue.component('build-apply-detail', (resolve) => { require(['./components/product/VueUtils/rightview/carddetail/BuildFeeDetail2'], resolve) })
|
|
124
|
-
// 报建费用变更详情
|
|
125
|
-
Vue.component('change-apply-detail', (resolve) => { require(['./components/product/VueUtils/rightview/carddetail/ChangeFeeDetail2'], resolve) })
|
|
126
|
-
// 报建费用减免详情
|
|
127
|
-
Vue.component('reduce-apply-detail', (resolve) => { require(['./components/product/VueUtils/rightview/carddetail/ReduceFeeDetail2'], resolve) })
|
|
128
|
-
// 报建费用减免详情
|
|
129
|
-
Vue.component('stopapply-apply-detail', (resolve) => { require(['./components/product/VueUtils/rightview/carddetail/StopApplyDetail2'], resolve) })
|
|
130
|
-
// 报建费用减免详情
|
|
131
|
-
Vue.component('install-apply-cardlist', (resolve) => { require(['./components/product/VueUtils/rightview/InstallCardList2'], resolve) })
|
|
132
|
-
|
|
133
|
-
Vue.component('back-page', (resolve) => { require(['./components/product/VueUtils/ToolsPage'], resolve) })
|
|
134
|
-
// 流程监控总组件
|
|
135
|
-
Vue.component('supervisory-control', (resolve) => { require(['./components/product/Supervisory/SupervisoryControl'], resolve) })
|
|
136
|
-
Vue.component('supervisory-list', (resolve) => { require(['./components/product/Supervisory/SupervisoryList'], resolve) })
|
|
137
|
-
Vue.component('supervisory-chart', (resolve) => { require(['./components/product/Supervisory/SupervisoryhCart'], resolve) })
|
|
138
|
-
Vue.component('supervisory-baseinfo', (resolve) => { require(['./components/product/Supervisory/SupervisoryBaseInfo'], resolve) })
|
|
139
|
-
// 业务tab(control层)页
|
|
140
|
-
Vue.component('supervisory-service-control', (resolve) => { require(['./components/product/Supervisory/Service/SupervisoryServiceControl'], resolve) })
|
|
141
|
-
// 发票号验证
|
|
142
|
-
Vue.component('apply-validate-bill', (resolve) => { require(['./components/product/Common/ApplyValidateBill'], resolve) })
|
|
143
|
-
// 售气发票打印
|
|
144
|
-
Vue.component('printbill', (resolve) => { require(['./components/product/Common/PrintBill'], resolve) })
|
|
145
|
-
Vue.component('apply-accept-bill', (resolve) => { require(['./components/product/Process/Processes/Service/ApplyAcceptBill'], resolve) })
|
|
146
|
-
// 售气发票打印
|
|
147
|
-
Vue.component('bjpaper-ticket-bill', (resolve) => { require(['./components/product/Process/Processes/Service/PaperTicketBill'], resolve) })
|
|
148
|
-
// APP图片显示
|
|
149
|
-
Vue.component('apply-upload', (resolve) => { require(['./components/product/Function/functions/ApplyUpload'], resolve) })
|
|
150
|
-
|
|
151
|
-
Vue.component('apply-stop', (resolve) => { require(['./components/product/stopInfo/ApplyStopInfo'], resolve) })
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
|
|
3
|
+
Vue.config.silent = true
|
|
4
|
+
import ApplyGetSaleParam from './stores/ApplyGetSaleParams'
|
|
5
|
+
import ApplyLoadParams from './stores/ApplyLoadParams'
|
|
6
|
+
import commonService from './plugins/commonService'
|
|
7
|
+
/** ****************服务插件*********************/
|
|
8
|
+
|
|
9
|
+
export default function () {
|
|
10
|
+
Vue.use(ApplyGetSaleParam)
|
|
11
|
+
Vue.use(ApplyLoadParams)
|
|
12
|
+
Vue.use(commonService)
|
|
13
|
+
/** ***************************报建模块*********************************/
|
|
14
|
+
|
|
15
|
+
/** ***********报建流程业务**********/
|
|
16
|
+
// 报建流程业务总入口
|
|
17
|
+
Vue.component('exploration-user', (resolve) => { require(['./components/product/Process/ExplorationUser'], resolve) })
|
|
18
|
+
// 报建流程业务总入口页面list布局
|
|
19
|
+
Vue.component('exploration-select', (resolve) => { require(['./components/product/Process/ExplorationSelect'], resolve) })
|
|
20
|
+
// 报建流程业务报建改装流程入口
|
|
21
|
+
Vue.component('modify-user-files', (resolve) => { require(['./components/product/Process/ModifyUserFiles'], resolve) })
|
|
22
|
+
// 报建收费查看
|
|
23
|
+
Vue.component('apply-charge-search', (resolve) => { require(['./components/product/Process/Processes/Service/ApplyChargeSearch'], resolve) })
|
|
24
|
+
// 材料使用汇总
|
|
25
|
+
Vue.component('material-use-list', (resolve) => { require(['./components/product/Process/MaterialUseList'], resolve) })
|
|
26
|
+
// 预算材料
|
|
27
|
+
Vue.component('material-message', (resolve) => { require(['./components/product/Process/Processes/CustomerMaterialMessage'], resolve) })
|
|
28
|
+
//领取材料
|
|
29
|
+
Vue.component('receive-batch', (resolve) => { require(['./components/product/Process/Processes/ReceiveBatch'], resolve) })
|
|
30
|
+
// 报建材料记录功能
|
|
31
|
+
Vue.component('material_recording', (resolve) => { require(['./components/product/Function/functions/material_recording'], resolve) })
|
|
32
|
+
// 档案tab页
|
|
33
|
+
Vue.component('record-message', (resolve) => { require(['./components/product/Process/Processes/CustomerRecordMessage'], resolve) })
|
|
34
|
+
// 材料tab页
|
|
35
|
+
Vue.component('material-message', (resolve) => { require(['./components/product/Process/Processes/CustomerMaterialMessage'], resolve) })
|
|
36
|
+
// 设备tab页
|
|
37
|
+
Vue.component('equipment-message', (resolve) => { require(['./components/product/Process/Processes/CustomerEquipmentMessage'], resolve) })
|
|
38
|
+
// 楼栋tab页
|
|
39
|
+
Vue.component('building-message', (resolve) => { require(['./components/product/Process/Processes/CustomerBuildingMessage'], resolve) })
|
|
40
|
+
// 业务tab(control层)页
|
|
41
|
+
Vue.component('service-control', (resolve) => { require(['./components/product/Process/Processes/Service/ServiceControl'], resolve) })
|
|
42
|
+
// 公共业务显示(view层)页
|
|
43
|
+
Vue.component('service-view', (resolve) => { require(['./components/product/ServiceView'], resolve) })
|
|
44
|
+
|
|
45
|
+
Vue.component('material-batch-list', (resolve) => { require(['./components/product/MaterialBatchList'], resolve) })
|
|
46
|
+
Vue.component('material-batch-manage', (resolve) => { require(['./components/product/MaterialBatchManage'], resolve) })
|
|
47
|
+
// 派工单tab页 废弃
|
|
48
|
+
// Vue.component('send-order', (resolve) => { require(['./components/product/Process/Processes/SendOrder'], resolve) })
|
|
49
|
+
// 停气碰口tab页
|
|
50
|
+
Vue.component('gas-stop', (resolve) => { require(['./components/product/Process/Processes/Service/GasStop'], resolve) })
|
|
51
|
+
// 显示退回理由tab页
|
|
52
|
+
Vue.component('show-back-reason', (resolve) => { require(['./components/product/Process/ShowBackReason'], resolve) })
|
|
53
|
+
|
|
54
|
+
// 报建历史信息页面
|
|
55
|
+
Vue.component('history_control', (resolve) => { require(['./components/product/Process/ProcessInfo/history_control'], resolve) })
|
|
56
|
+
|
|
57
|
+
// 工程结算
|
|
58
|
+
Vue.component('project-settlement', (resolve) => { require(['./components/product/Process/Processes/ProjectSettlement'], resolve) })
|
|
59
|
+
// 报建功能业务总入口
|
|
60
|
+
Vue.component('install-function', (resolve) => { require(['./components/product/Function/InstallFunction'], resolve) })
|
|
61
|
+
// 报建菜单页面控制层
|
|
62
|
+
Vue.component('function-service-control', (resolve) => { require(['./components/product/Function/Service/FunctionServiceControl'], resolve) })
|
|
63
|
+
// 终止报建业务
|
|
64
|
+
Vue.component('stop-install', (resolve) => { require(['./components/product/Function/functions/StopInstall'], resolve) })
|
|
65
|
+
// 报建业务信息
|
|
66
|
+
Vue.component('installinfoselect', (resolve) => { require(['./components/product/Function/InstallInfoSelect'], resolve) })
|
|
67
|
+
// 报建收费
|
|
68
|
+
Vue.component('installfee', (resolve) => { require(['./components/product/Function/functions/InstallFee'], resolve) })
|
|
69
|
+
// 报建收费
|
|
70
|
+
Vue.component('buyer-message', (resolve) => { require(['./components/product/Function/functions/BuyerMessage'], resolve) })
|
|
71
|
+
// 预缴费收费
|
|
72
|
+
Vue.component('prestorefee', (resolve) => { require(['./components/product/Function/functions/PrestoreFee'], resolve) })
|
|
73
|
+
// 预缴费
|
|
74
|
+
Vue.component('preparationfee', (resolve) => { require(['./components/product/Function/functions/PreparationFee'], resolve) })
|
|
75
|
+
// 操作记录撤销
|
|
76
|
+
Vue.component('apply-record-cancel', (resolve) => { require(['./components/product/Function/functions/ApplyRecordCancel'], resolve) })
|
|
77
|
+
// 费用变更信息
|
|
78
|
+
Vue.component('updatefee', (resolve) => { require(['./components/product/Function/functions/UpdateFee'], resolve) })
|
|
79
|
+
// 费用减免信息
|
|
80
|
+
Vue.component('reducefee', (resolve) => { require(['./components/product/Function/functions/ReduceFee'], resolve) })
|
|
81
|
+
// 报建收费信息
|
|
82
|
+
Vue.component('installfeeinfo', (resolve) => { require(['./components/product/Function/functions/InstallFeeInfo'], resolve) })
|
|
83
|
+
// 报建业务信息
|
|
84
|
+
Vue.component('installinfodown', (resolve) => { require(['./components/product/Function/InstallInfoDown'], resolve) })
|
|
85
|
+
// 详细业务信息
|
|
86
|
+
Vue.component('allselect', (resolve) => { require(['./components/product/Function/functions/AllSelect'], resolve) })
|
|
87
|
+
// 添加合同信息
|
|
88
|
+
Vue.component('addcontract', (resolve) => { require(['./components/product/Function/functions/AddContract'], resolve) })
|
|
89
|
+
// 打印票据
|
|
90
|
+
Vue.component('billselect', (resolve) => { require(['./components/product/Bill/BillSelect'], resolve) })
|
|
91
|
+
// 打印记录表票据
|
|
92
|
+
Vue.component('billjlb', (resolve) => { require(['./components/product/Bill/BillJLB'], resolve) })
|
|
93
|
+
// 打印开通卡票据
|
|
94
|
+
Vue.component('billktk', (resolve) => { require(['./components/product/Bill/BillKTK'], resolve) })
|
|
95
|
+
// 打印确认卡票据
|
|
96
|
+
Vue.component('billqrk', (resolve) => { require(['./components/product/Bill/BillQRK'], resolve) })
|
|
97
|
+
// 打印改装卡票据
|
|
98
|
+
Vue.component('billgzk', (resolve) => { require(['./components/product/Bill/BillGZK'], resolve) })
|
|
99
|
+
// 打印销售单票据
|
|
100
|
+
Vue.component('billxsd', (resolve) => { require(['./components/product/Bill/BillXSD'], resolve) })
|
|
101
|
+
// 销售单票据信息
|
|
102
|
+
Vue.component('billxsdmakeinfo', (resolve) => { require(['./components/product/Bill/BillXSDMakeInfo'], resolve) })
|
|
103
|
+
// 确认卡票据信息
|
|
104
|
+
Vue.component('billqrkmakeinfo', (resolve) => { require(['./components/product/Bill/BillQRKMakeInfo'], resolve) })
|
|
105
|
+
// 改装卡票据信息
|
|
106
|
+
Vue.component('billgzkmakeinfo', (resolve) => { require(['./components/product/Bill/BillGZKMakeInfo'], resolve) })
|
|
107
|
+
// 开通卡票据信息
|
|
108
|
+
Vue.component('billktkmakeinfo', (resolve) => { require(['./components/product/Bill/BillKTKMakeInfo'], resolve) })
|
|
109
|
+
// 销售记录表票据信息
|
|
110
|
+
Vue.component('billjlbmakeinfo', (resolve) => { require(['./components/product/Bill/BillJLBMakeInfo'], resolve) })
|
|
111
|
+
// 销售记录表历史票据信息
|
|
112
|
+
Vue.component('billqrkrecordinfo', (resolve) => { require(['./components/product/Bill/BillQRKRecordInfo'], resolve) })
|
|
113
|
+
// 改装卡历史票据信息
|
|
114
|
+
Vue.component('billgzkrecordinfo', (resolve) => { require(['./components/product/Bill/BillGZKRecordInfo'], resolve) })
|
|
115
|
+
// 销售单历史票据信息
|
|
116
|
+
Vue.component('billxsdrecordinfo', (resolve) => { require(['./components/product/Bill/BillXSDRecordInfo'], resolve) })
|
|
117
|
+
// 开通卡历史票据信息
|
|
118
|
+
Vue.component('billktkrecordinfo', (resolve) => { require(['./components/product/Bill/BillKTKRecordInfo'], resolve) })
|
|
119
|
+
// 开通卡历史票据信息
|
|
120
|
+
Vue.component('billjlbrecordinfo', (resolve) => { require(['./components/product/Bill/BillJLBRecordInfo'], resolve) })
|
|
121
|
+
|
|
122
|
+
// 报建收费卡片详情
|
|
123
|
+
Vue.component('build-apply-detail', (resolve) => { require(['./components/product/VueUtils/rightview/carddetail/BuildFeeDetail2'], resolve) })
|
|
124
|
+
// 报建费用变更详情
|
|
125
|
+
Vue.component('change-apply-detail', (resolve) => { require(['./components/product/VueUtils/rightview/carddetail/ChangeFeeDetail2'], resolve) })
|
|
126
|
+
// 报建费用减免详情
|
|
127
|
+
Vue.component('reduce-apply-detail', (resolve) => { require(['./components/product/VueUtils/rightview/carddetail/ReduceFeeDetail2'], resolve) })
|
|
128
|
+
// 报建费用减免详情
|
|
129
|
+
Vue.component('stopapply-apply-detail', (resolve) => { require(['./components/product/VueUtils/rightview/carddetail/StopApplyDetail2'], resolve) })
|
|
130
|
+
// 报建费用减免详情
|
|
131
|
+
Vue.component('install-apply-cardlist', (resolve) => { require(['./components/product/VueUtils/rightview/InstallCardList2'], resolve) })
|
|
132
|
+
|
|
133
|
+
Vue.component('back-page', (resolve) => { require(['./components/product/VueUtils/ToolsPage'], resolve) })
|
|
134
|
+
// 流程监控总组件
|
|
135
|
+
Vue.component('supervisory-control', (resolve) => { require(['./components/product/Supervisory/SupervisoryControl'], resolve) })
|
|
136
|
+
Vue.component('supervisory-list', (resolve) => { require(['./components/product/Supervisory/SupervisoryList'], resolve) })
|
|
137
|
+
Vue.component('supervisory-chart', (resolve) => { require(['./components/product/Supervisory/SupervisoryhCart'], resolve) })
|
|
138
|
+
Vue.component('supervisory-baseinfo', (resolve) => { require(['./components/product/Supervisory/SupervisoryBaseInfo'], resolve) })
|
|
139
|
+
// 业务tab(control层)页
|
|
140
|
+
Vue.component('supervisory-service-control', (resolve) => { require(['./components/product/Supervisory/Service/SupervisoryServiceControl'], resolve) })
|
|
141
|
+
// 发票号验证
|
|
142
|
+
Vue.component('apply-validate-bill', (resolve) => { require(['./components/product/Common/ApplyValidateBill'], resolve) })
|
|
143
|
+
// 售气发票打印
|
|
144
|
+
Vue.component('printbill', (resolve) => { require(['./components/product/Common/PrintBill'], resolve) })
|
|
145
|
+
Vue.component('apply-accept-bill', (resolve) => { require(['./components/product/Process/Processes/Service/ApplyAcceptBill'], resolve) })
|
|
146
|
+
// 售气发票打印
|
|
147
|
+
Vue.component('bjpaper-ticket-bill', (resolve) => { require(['./components/product/Process/Processes/Service/PaperTicketBill'], resolve) })
|
|
148
|
+
// APP图片显示
|
|
149
|
+
Vue.component('apply-upload', (resolve) => { require(['./components/product/Function/functions/ApplyUpload'], resolve) })
|
|
150
|
+
|
|
151
|
+
Vue.component('apply-stop', (resolve) => { require(['./components/product/stopInfo/ApplyStopInfo'], resolve) })
|
|
152
|
+
|
|
153
|
+
Vue.component('apply-report', (resolve) => { require(['./components/product/applyReport/ApplyReport'], resolve) })
|
|
154
|
+
|
|
155
|
+
Vue.component('print-report-order', (resolve) => { require(['./components/product/applyReport/PrintApplyReport'], resolve) })
|
|
156
|
+
}
|
|
@@ -249,7 +249,7 @@
|
|
|
249
249
|
price: new PagedList('rs/sql/getChargeAll', 999999, {orderitem: '`f_charge_money`'}),
|
|
250
250
|
human: [],
|
|
251
251
|
filiale: [],
|
|
252
|
-
method:
|
|
252
|
+
method: this.$appdata.getParam('付款方式'),
|
|
253
253
|
usertype:[
|
|
254
254
|
{label: '民用', value: '民用'},
|
|
255
255
|
{label: '非民用', value: '非民用'}
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="d1 flex">
|
|
3
|
+
<div class="left col-sm-12">
|
|
4
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
+
<criteria partial='criteria' @condition-changed='search' v-ref:cri style="padding: 20px;background-color: #f6f6f6;">
|
|
6
|
+
<form novalidate class="" partial>
|
|
7
|
+
<div class="row">
|
|
8
|
+
<button type="button" class="btn btn-success" @click='$parent.$parent.showQuery=!$parent.$parent.showQuery'>
|
|
9
|
+
打印
|
|
10
|
+
</button>
|
|
11
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
12
|
+
:field="$parent.$parent.getfield"
|
|
13
|
+
sqlurl="rs/logic/exportfile"
|
|
14
|
+
sql-name="checkuserReport"
|
|
15
|
+
template-name='报装统计导出'
|
|
16
|
+
:choose-col="true"></export-excel>
|
|
17
|
+
<button class="btn btn-primary btn-sm" type="button" @click="search(),$parent.$parent.showpager()" style="margin-left:10%">
|
|
18
|
+
<span class="glyphicon glyphicon-search"></span>查询
|
|
19
|
+
</button>
|
|
20
|
+
</div>
|
|
21
|
+
</form>
|
|
22
|
+
</criteria>
|
|
23
|
+
<data-grid :model="model" partial='list' v-ref:grid class="list_area" is-fixed='false'>
|
|
24
|
+
<template partial='head'>
|
|
25
|
+
<tr>
|
|
26
|
+
<th colspan="6"><h4>报装人员勘察 安装 通气 统计查询</h4></th>
|
|
27
|
+
</tr>
|
|
28
|
+
<tr>
|
|
29
|
+
<th colspan="1" rowspan="2">报装人员</th>
|
|
30
|
+
<th colspan="2">个人报建</th>
|
|
31
|
+
<th colspan="3">集体报建</th>
|
|
32
|
+
</tr>
|
|
33
|
+
<tr class="title">
|
|
34
|
+
<th>
|
|
35
|
+
<nobr>踏勘</nobr>
|
|
36
|
+
</th>
|
|
37
|
+
<th>
|
|
38
|
+
<nobr>安装</nobr>
|
|
39
|
+
</th>
|
|
40
|
+
<th>
|
|
41
|
+
<nobr>踏勘</nobr>
|
|
42
|
+
</th>
|
|
43
|
+
<th>
|
|
44
|
+
<nobr>安装</nobr>
|
|
45
|
+
</th>
|
|
46
|
+
<th>
|
|
47
|
+
<nobr>通气</nobr>
|
|
48
|
+
</th>
|
|
49
|
+
</tr>
|
|
50
|
+
</template>
|
|
51
|
+
<template partial='body'>
|
|
52
|
+
<tr>
|
|
53
|
+
<td style="text-align: center;">
|
|
54
|
+
<nobr>{{row.username}}</nobr>
|
|
55
|
+
</td>
|
|
56
|
+
<td style="text-align: center;">
|
|
57
|
+
<nobr>{{row.gsurvey_name}}</nobr>
|
|
58
|
+
</td>
|
|
59
|
+
<td style="text-align: center;">
|
|
60
|
+
<nobr>{{row.gconstruction_unit}}</nobr>
|
|
61
|
+
</td>
|
|
62
|
+
<td style="text-align: center;">
|
|
63
|
+
<nobr>{{row.jsurvey_name}}</nobr>
|
|
64
|
+
</td>
|
|
65
|
+
<td style="text-align: center;">
|
|
66
|
+
<nobr>{{row.jconstruction_unit}}</nobr>
|
|
67
|
+
</td>
|
|
68
|
+
|
|
69
|
+
<td style="text-align: center;">
|
|
70
|
+
<nobr>{{row.jgas_name}}</nobr>
|
|
71
|
+
</td>
|
|
72
|
+
</tr>
|
|
73
|
+
</template>
|
|
74
|
+
</data-grid>
|
|
75
|
+
</criteria-paged>
|
|
76
|
+
</div>
|
|
77
|
+
<modal :show.sync="showQuery" v-ref:modal :large="true" :backdrop="false" title="打印预览">
|
|
78
|
+
<header slot="modal-header" class="modal-header">
|
|
79
|
+
<button type="button" class="close" @click="showQuery = !showQuery"><span>×</span></button>
|
|
80
|
+
<h4 class="modal-title">打印预览</h4>
|
|
81
|
+
</header>
|
|
82
|
+
<article slot="modal-body" class="modal-body clearfix">
|
|
83
|
+
<print-report-order :purchase-records="purchaseRecords" :report="model.rows" v-ref:print></print-report-order>
|
|
84
|
+
</article>
|
|
85
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
86
|
+
<button type="button" class="btn btn-primary" @click="print()">打印</button>
|
|
87
|
+
</footer>
|
|
88
|
+
</modal>
|
|
89
|
+
</div>
|
|
90
|
+
</template>
|
|
91
|
+
<script>
|
|
92
|
+
Date.prototype.Format = function (fmt) {
|
|
93
|
+
var o = {
|
|
94
|
+
"M+": this.getMonth() + 1, //月份
|
|
95
|
+
"d+": this.getDate(), //日
|
|
96
|
+
"H+": this.getHours(), //小时
|
|
97
|
+
"m+": this.getMinutes(), //分
|
|
98
|
+
"s+": this.getSeconds(), //秒
|
|
99
|
+
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
|
|
100
|
+
"S": this.getMilliseconds() //毫秒
|
|
101
|
+
};
|
|
102
|
+
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
|
|
103
|
+
for (var k in o)
|
|
104
|
+
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
|
|
105
|
+
return fmt;
|
|
106
|
+
}
|
|
107
|
+
import {
|
|
108
|
+
PagedList
|
|
109
|
+
} from 'vue-client'
|
|
110
|
+
import * as Util from '../../Util'
|
|
111
|
+
|
|
112
|
+
export default {
|
|
113
|
+
title: '报建统计',
|
|
114
|
+
data() {
|
|
115
|
+
return {
|
|
116
|
+
usertype: this.$appdata.getParam('用户类型'),
|
|
117
|
+
showbtn: false,
|
|
118
|
+
model: new PagedList('rs/sql/checkuserReport', 20, {
|
|
119
|
+
data: {
|
|
120
|
+
id: this.$login.f.id,
|
|
121
|
+
fengongsi: this.$login.f.f_fengongsi,
|
|
122
|
+
}
|
|
123
|
+
}),
|
|
124
|
+
condition: '',
|
|
125
|
+
showQuery:false,
|
|
126
|
+
showstopinfoflag:false,
|
|
127
|
+
stopremarks:"",
|
|
128
|
+
getfield: {
|
|
129
|
+
'username': '报装人员',
|
|
130
|
+
'gsurvey_name': '个体报建踏勘次数',
|
|
131
|
+
'gconstruction_unit': '个体报建安装次数',
|
|
132
|
+
'jsurvey_name': '集体报建踏勘次数',
|
|
133
|
+
'jconstruction_unit': '集体报建安装次数',
|
|
134
|
+
'jgas_name': '集体报建通气次数'
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
ready() {
|
|
139
|
+
this.$refs.cp.$refs.cri.model.startDate = Util.toStandardDateString() + ' 00:00:00'
|
|
140
|
+
this.$refs.cp.$refs.cri.model.endDate = Util.toStandardDateString() + ' 23:59:59'
|
|
141
|
+
this.$refs.cp.$refs.cri.search()
|
|
142
|
+
},
|
|
143
|
+
methods: {
|
|
144
|
+
print () {
|
|
145
|
+
this.$refs.print.$refs.print.PrintTable()
|
|
146
|
+
},
|
|
147
|
+
getCondition() {
|
|
148
|
+
return {
|
|
149
|
+
condition: this.$refs.cp.$refs.cri.condition,
|
|
150
|
+
data: {
|
|
151
|
+
orgid: this.$login.f.orgid
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
stopinfoshow(index){
|
|
156
|
+
this.showstopinfoflag = true;
|
|
157
|
+
let remakrs = this.model.rows[index].f_stop_remarks;
|
|
158
|
+
console.log(JSON.stringify(remakrs))
|
|
159
|
+
console.log(remakrs)
|
|
160
|
+
|
|
161
|
+
this.stopremarks= remakrs;
|
|
162
|
+
},
|
|
163
|
+
clifun(row) {
|
|
164
|
+
this.$refs.cp.$refs.grid.model.rows = [row]
|
|
165
|
+
this.$refs.cp.pager = false
|
|
166
|
+
this.$dispatch('showbtn', row)
|
|
167
|
+
},
|
|
168
|
+
showpager() {
|
|
169
|
+
this.$refs.cp.pager = true
|
|
170
|
+
this.$dispatch('hiddenbtn')
|
|
171
|
+
},
|
|
172
|
+
closestopinfo(){
|
|
173
|
+
this.showstopinfoflag = close;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
</script>
|
|
178
|
+
<style scoped>
|
|
179
|
+
label {
|
|
180
|
+
display: flex;
|
|
181
|
+
justify-content:center;
|
|
182
|
+
align-items:Center;
|
|
183
|
+
padding-top: 8px;
|
|
184
|
+
}
|
|
185
|
+
</style>
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<style id="style">
|
|
3
|
+
td{
|
|
4
|
+
height: 30px;
|
|
5
|
+
padding: 0px;
|
|
6
|
+
text-align: center;
|
|
7
|
+
}
|
|
8
|
+
.cen{
|
|
9
|
+
text-align: center;
|
|
10
|
+
}
|
|
11
|
+
table{
|
|
12
|
+
margin: auto;
|
|
13
|
+
width: 100%;
|
|
14
|
+
border-collapse:collapse;
|
|
15
|
+
border: 1px solid black;
|
|
16
|
+
}
|
|
17
|
+
h1,h2,h3,h4,h5,h6 {
|
|
18
|
+
text-align: center;
|
|
19
|
+
}
|
|
20
|
+
</style>
|
|
21
|
+
<div id="print">
|
|
22
|
+
<table border="1">
|
|
23
|
+
<tr>
|
|
24
|
+
<th colspan="6"><h4>报装人员勘察 安装 通气 统计查询</h4></th>
|
|
25
|
+
</tr>
|
|
26
|
+
<tr>
|
|
27
|
+
<th colspan="1" rowspan="2" class="cen">报装人员</th>
|
|
28
|
+
<th colspan="2" class="cen">个人报建</th>
|
|
29
|
+
<th colspan="3" class="cen">集体报建</th>
|
|
30
|
+
</tr>
|
|
31
|
+
<tr class="title">
|
|
32
|
+
<th class="cen">
|
|
33
|
+
<nobr>踏勘</nobr>
|
|
34
|
+
</th>
|
|
35
|
+
<th class="cen">
|
|
36
|
+
<nobr>安装</nobr>
|
|
37
|
+
</th>
|
|
38
|
+
<th class="cen">
|
|
39
|
+
<nobr>踏勘</nobr>
|
|
40
|
+
</th>
|
|
41
|
+
<th class="cen">
|
|
42
|
+
<nobr>安装</nobr>
|
|
43
|
+
</th>
|
|
44
|
+
<th class="cen">
|
|
45
|
+
<nobr>通气</nobr>
|
|
46
|
+
</th>
|
|
47
|
+
</tr>
|
|
48
|
+
<tr v-for="item in report">
|
|
49
|
+
<td>{{item.username}}</td>
|
|
50
|
+
<td>{{ item.gsurvey_name }}</td>
|
|
51
|
+
<td>{{ item.gconstruction_unit }}</td>
|
|
52
|
+
<td>{{ item.jsurvey_name }}</td>
|
|
53
|
+
<td>{{ item.jconstruction_unit }}</td>
|
|
54
|
+
<td>{{ item.jgas_name }}</td>
|
|
55
|
+
</tr>
|
|
56
|
+
<tr v-for="item in supplement">
|
|
57
|
+
<td></td>
|
|
58
|
+
<td></td>
|
|
59
|
+
<td></td>
|
|
60
|
+
<td></td>
|
|
61
|
+
<td></td>
|
|
62
|
+
<td></td>
|
|
63
|
+
</tr>
|
|
64
|
+
</table>
|
|
65
|
+
</div>
|
|
66
|
+
|
|
67
|
+
<print-element v-show="false" v-ref:print id='print' styleid='style'
|
|
68
|
+
top='10' left='60' width='100%' height='100%'>
|
|
69
|
+
</print-element>
|
|
70
|
+
</template>
|
|
71
|
+
|
|
72
|
+
<script>
|
|
73
|
+
Date.prototype.Format = function (fmt) {
|
|
74
|
+
var o = {
|
|
75
|
+
"M+": this.getMonth() + 1, //月份
|
|
76
|
+
"d+": this.getDate(), //日
|
|
77
|
+
"H+": this.getHours(), //小时
|
|
78
|
+
"m+": this.getMinutes(), //分
|
|
79
|
+
"s+": this.getSeconds(), //秒
|
|
80
|
+
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
|
|
81
|
+
"S": this.getMilliseconds() //毫秒
|
|
82
|
+
};
|
|
83
|
+
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
|
|
84
|
+
for (var k in o)
|
|
85
|
+
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
|
|
86
|
+
return fmt;
|
|
87
|
+
}
|
|
88
|
+
export default {
|
|
89
|
+
title: '打印统计单',
|
|
90
|
+
props: ['report'],
|
|
91
|
+
data () {
|
|
92
|
+
return {}
|
|
93
|
+
},
|
|
94
|
+
ready () {
|
|
95
|
+
},
|
|
96
|
+
methods: {
|
|
97
|
+
},
|
|
98
|
+
computed: {
|
|
99
|
+
supplement () {
|
|
100
|
+
if (this.material.length < 10) {
|
|
101
|
+
return 10 - this.material.length
|
|
102
|
+
}
|
|
103
|
+
return 0
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
</script>
|
|
108
|
+
|
|
109
|
+
<style scoped>
|
|
110
|
+
|
|
111
|
+
</style>
|