apply-clients 5.0.361 → 6.0.3

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.
Files changed (192) hide show
  1. package/build/css-loaders.js +34 -0
  2. package/build/dev-android.js +101 -0
  3. package/build/dev-client.js +8 -0
  4. package/build/dev-server-app.js +76 -0
  5. package/build/dev-server.js +72 -0
  6. package/build/example-server.js +80 -0
  7. package/build/release.sh +28 -0
  8. package/build/utils.js +80 -0
  9. package/build/webpack.base.conf.js +83 -0
  10. package/build/webpack.baseandroid.conf.js +84 -0
  11. package/build/webpack.dev.conf.js +39 -0
  12. package/build/webpack.devandroid.conf.js +34 -0
  13. package/build/webpack.example.conf.js +49 -0
  14. package/build/webpack.prod.conf.js +60 -0
  15. package/build/webpack.prodandroid.conf.js +60 -0
  16. package/build/webpack.test.conf.js +31 -0
  17. package/dist-android/static/.gitkeep +0 -0
  18. package/dist-android/static/batchleft.png +0 -0
  19. package/dist-android/static/batchright.png +0 -0
  20. package/dist-android/static/bluemainbg.jpg +0 -0
  21. package/dist-android/static/huangtengbiaozhi.png +0 -0
  22. package/dist-android/static/login_bg.jpg +0 -0
  23. package/dist-android/static/login_title.png +0 -0
  24. package/dist-android/static/login_title1.png +0 -0
  25. package/dist-android/static/loginbg.jpg +0 -0
  26. package/dist-android/static/loginlogo.png +0 -0
  27. package/dist-android/static/main_logo.png +0 -0
  28. package/dist-android/static/mainbg.jpg +0 -0
  29. package/dist-android/static/menulogo.png +0 -0
  30. package/dist-android/static/newmainbg.jpg +0 -0
  31. package/dist-android/static/psicon.png +0 -0
  32. package/dist-android/static/singleleft.png +0 -0
  33. package/dist-android/static/singleright.png +0 -0
  34. package/dist-android/static/treeopen.png +0 -0
  35. package/dist-android/static/treeout.png +0 -0
  36. package/dist-android/static/treeset.png +0 -0
  37. package/dist-android/static/usericon.png +0 -0
  38. package/dist-android/static/xinxi.png +0 -0
  39. package/package.json +5 -10
  40. package/src/AndroidApp.vue +1 -1
  41. package/src/App.vue +0 -1
  42. package/src/apply.js +172 -104
  43. package/src/applyAndroid.js +0 -5
  44. package/src/assets/shipin1.mp4 +0 -0
  45. package/src/bootstrap/less/bootstrap.less +2 -1
  46. package/src/components/Hello.vue +39 -0
  47. package/src/components/Table.js +2 -2
  48. package/src/components/Test.vue +26 -0
  49. package/src/components/Util.js +6 -11
  50. package/src/components/app_apply/Acceptance.vue +2 -7
  51. package/src/components/app_apply/ApplyApp.vue +6 -16
  52. package/src/components/app_apply/ApplyInfo.vue +1 -1
  53. package/src/components/app_apply/ApplyListUpload.vue +3 -3
  54. package/src/components/app_apply/ApplyToDoList.vue +3 -3
  55. package/src/components/app_apply/ApplyUserInfo.vue +3 -2
  56. package/src/components/app_apply/FieldExploration.vue +1 -3
  57. package/src/components/app_apply/PlaceControler.vue +49 -38
  58. package/src/components/{product/VueUtils → apply/base}/rightview/InstallCardList2.vue +38 -29
  59. package/src/components/{product/VueUtils → apply/base}/rightview/carddetail/ReduceFeeDetail2.vue +77 -77
  60. package/src/components/{product/VueUtils → apply/base}/rightview/carddetail/StopApplyDetail2.vue +1 -1
  61. package/src/components/build/Install/ApplyChargeSearch.vue +210 -0
  62. package/src/components/build/Install/ExplorationSelect.vue +308 -0
  63. package/src/components/build/Install/ExplorationUser.vue +315 -0
  64. package/src/components/build/Install/InstallFee/AddContract.vue +257 -0
  65. package/src/components/build/Install/InstallFee/InstallFee.vue +929 -0
  66. package/src/components/build/Install/InstallFee/InstallFee2.vue +291 -0
  67. package/src/components/{product/Function/functions → build/Install/InstallFee}/InstallFeeInfo.vue +11 -42
  68. package/src/components/build/Install/InstallFee/InstallFunction.vue +242 -0
  69. package/src/components/build/Install/InstallFee/InstallInfoSelect.vue +232 -0
  70. package/src/components/{product/Process → build/Install}/ModifyUserFiles.vue +1 -1
  71. package/src/components/build/Install/Process/BuildJob.vue +242 -0
  72. package/src/components/build/Install/Process/ContratSigne.vue +283 -0
  73. package/src/components/build/Install/Process/CustomerEssentialInfo.vue +325 -0
  74. package/src/components/build/Install/Process/CustomerFile.vue +423 -0
  75. package/src/components/build/Install/Process/CustomerMaterialMessage.vue +414 -0
  76. package/src/components/build/Install/Process/CustomerRecordMessage.vue +749 -0
  77. package/src/components/build/Install/Process/DispatchingJob.vue +261 -0
  78. package/src/components/build/Install/Process/FeeNorme.vue +252 -0
  79. package/src/components/build/Install/Process/FeeNormeAndContratSigne.vue +376 -0
  80. package/src/components/build/Install/Process/FeeVerifier.vue +199 -0
  81. package/src/components/build/Install/Process/IgnitionVentilation.vue +232 -0
  82. package/src/components/build/Install/Process/MeterType.vue +379 -0
  83. package/src/components/build/Install/Process/PlaceControler.vue +304 -0
  84. package/src/components/build/Install/Process/ProjeterFigure.vue +211 -0
  85. package/src/components/build/Install/Process/ReceivingNote.vue +317 -0
  86. package/src/components/build/Install/Process/boneng/qbj_placecontroler.vue +370 -0
  87. package/src/components/build/Install/Process/zhongran/ZR_Construction.vue +388 -0
  88. package/src/components/build/Install/Process/zhongran/ZR_ContratSigne.vue +496 -0
  89. package/src/components/build/Install/Process/zhongran/ZR_CustomerEssentialInfo.vue +415 -0
  90. package/src/components/build/Install/Process/zhongran/ZR_DispatchingJob.vue +409 -0
  91. package/src/components/build/Install/Process/zhongran/ZR_FeeNorme.vue +342 -0
  92. package/src/components/build/Install/Process/zhongran/ZR_IgnitionVentilation.vue +253 -0
  93. package/src/components/build/Install/Process/zhongran/ZR_IgnitionVentilation_transfer.vue +198 -0
  94. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlan.vue +259 -0
  95. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlanExamine.vue +243 -0
  96. package/src/components/build/Install/Process/zhongran/ZR_PlaceControler.vue +426 -0
  97. package/src/components/build/Install/Process/zhongran/ZR_PlaceControler_print.vue +187 -0
  98. package/src/components/build/Install/Process/zhongran/ZR_ReceivingNote.vue +404 -0
  99. package/src/components/build/Install/Process/zhongran/ZR_ReceivingNote1.vue +301 -0
  100. package/src/components/build/Install/Process/zhongran/ZR_TestDesign.vue +441 -0
  101. package/src/components/build/Install/Process/zhongran/ZR_end.vue +20 -0
  102. package/src/components/build/Install/ProcessInfo/BasicInfo.vue +68 -0
  103. package/src/components/build/Install/ProcessInfo/BuildInfo.vue +110 -0
  104. package/src/components/build/Install/ProcessInfo/ContratProcessInfo.vue +116 -0
  105. package/src/components/build/Install/ProcessInfo/DispatchingInfo.vue +114 -0
  106. package/src/components/build/Install/ProcessInfo/FeeNormeInfo.vue +108 -0
  107. package/src/components/build/Install/ProcessInfo/FeeVerifierInfo.vue +102 -0
  108. package/src/components/build/Install/ProcessInfo/IgnitionInfo.vue +99 -0
  109. package/src/components/build/Install/ProcessInfo/MeterProcessInfo.vue +114 -0
  110. package/src/components/build/Install/ProcessInfo/PlaceProcessInfo.vue +115 -0
  111. package/src/components/build/Install/ProcessInfo/ProjeterProcessInfo.vue +107 -0
  112. package/src/components/build/Install/ProcessInfo/ReceivingInfo.vue +107 -0
  113. package/src/components/build/Install/ProcessInfo/zhongran/ZR_BasicInfo.vue +74 -0
  114. package/src/components/build/Install/ProcessInfo/zhongran/ZR_BuildInfo.vue +114 -0
  115. package/src/components/build/Install/ProcessInfo/zhongran/ZR_ContratProcessInfo.vue +114 -0
  116. package/src/components/build/Install/ProcessInfo/zhongran/ZR_DispatchingInfo.vue +119 -0
  117. package/src/components/build/Install/ProcessInfo/zhongran/ZR_FeeNormeInfo.vue +105 -0
  118. package/src/components/build/Install/ProcessInfo/zhongran/ZR_IgnitionInfo.vue +99 -0
  119. package/src/components/build/Install/ProcessInfo/zhongran/ZR_MaterialPlan_info.vue +104 -0
  120. package/src/components/build/Install/ProcessInfo/zhongran/ZR_PlaceProcessInfo.vue +109 -0
  121. package/src/components/build/Install/ProcessInfo/zhongran/ZR_ReceivingInfo.vue +102 -0
  122. package/src/components/build/Install/ProcessInfo/zhongran/ZR_ignition_transfer_info.vue +104 -0
  123. package/src/components/{product/Bill → build/Install/bill}/BillXSDMakeInfo.vue +1 -1
  124. package/src/components/build/Install/monitor/SupervisoryControl.vue +178 -0
  125. package/src/components/build/Install/monitor/SupervisoryList.vue +209 -0
  126. package/src/components/{product/Supervisory → build/Install/monitor}/SupervisoryhCart.vue +3 -29
  127. package/src/components/product/Process/Processes/Service/ServiceControl.vue +91 -1718
  128. package/src/main.js +2 -9
  129. package/src/stores/ApplyLoadParams.js +1 -1
  130. package/src/bootstrap/less/standard.less +0 -208
  131. package/src/components/app_apply/ServiceControl.vue +0 -442
  132. package/src/components/app_apply/ServiceView.vue +0 -356
  133. package/src/components/product/Common/ApplyValidateBill.vue +0 -55
  134. package/src/components/product/Common/PrintBill.vue +0 -120
  135. package/src/components/product/Function/InstallFunction.vue +0 -142
  136. package/src/components/product/Function/InstallInfoSelect.vue +0 -254
  137. package/src/components/product/Function/Service/FunctionServiceControl.vue +0 -328
  138. package/src/components/product/Function/functions/AddContract.vue +0 -301
  139. package/src/components/product/Function/functions/BuyerMessage.vue +0 -512
  140. package/src/components/product/Function/functions/InstallFee.vue +0 -919
  141. package/src/components/product/Function/functions/material_recording.vue +0 -237
  142. package/src/components/product/MaterialBatchList.vue +0 -109
  143. package/src/components/product/MaterialBatchManage.vue +0 -34
  144. package/src/components/product/Process/ExplorationSelect.vue +0 -636
  145. package/src/components/product/Process/ExplorationUser.vue +0 -131
  146. package/src/components/product/Process/MaterialUseList.vue +0 -159
  147. package/src/components/product/Process/ProcessInfo/history_control.vue +0 -134
  148. package/src/components/product/Process/Processes/CustomerMaterialMessage.vue +0 -776
  149. package/src/components/product/Process/Processes/CustomerRecordMessage.vue +0 -910
  150. package/src/components/product/Process/Processes/ProjectSettlement.vue +0 -383
  151. package/src/components/product/Process/Processes/ReceiveBatch.vue +0 -957
  152. package/src/components/product/Process/Processes/SendOrder.vue +0 -47
  153. package/src/components/product/Process/Processes/Service/ApplyAcceptBill.vue +0 -89
  154. package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +0 -305
  155. package/src/components/product/Process/Processes/Service/GasStop.vue +0 -96
  156. package/src/components/product/Process/ShowBackReason.vue +0 -18
  157. package/src/components/product/ServiceView.vue +0 -800
  158. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +0 -407
  159. package/src/components/product/Supervisory/SupervisoryControl.vue +0 -130
  160. package/src/components/product/Supervisory/SupervisoryList.vue +0 -349
  161. package/src/components/product/stopInfo/ApplyStopInfo.vue +0 -280
  162. package/src/plugins/commonService.js +0 -229
  163. package/yarn.lock +0 -8072
  164. /package/src/components/{product/VueUtils → apply/base}/ToolsPage.vue +0 -0
  165. /package/src/components/{product/VueUtils → apply/base}/rightview/carddetail/BuildFeeDetail2.vue +0 -0
  166. /package/src/components/{product/VueUtils → apply/base}/rightview/carddetail/ChangeFeeDetail2.vue +0 -0
  167. /package/src/components/{product/Function/functions → build/Install/InstallFee}/AllSelect.vue +0 -0
  168. /package/src/components/{product/Function → build/Install/InstallFee}/InstallInfoDown.vue +0 -0
  169. /package/src/components/{product/Function/functions → build/Install/InstallFee}/PreparationFee.vue +0 -0
  170. /package/src/components/{product/Function/functions → build/Install/InstallFee}/PrestoreFee.vue +0 -0
  171. /package/src/components/{product/Function/functions → build/Install/InstallFee}/ReduceFee.vue +0 -0
  172. /package/src/components/{product/Function/functions → build/Install/InstallFee}/StopInstall.vue +0 -0
  173. /package/src/components/{product/Function/functions → build/Install/InstallFee}/UpdateFee.vue +0 -0
  174. /package/src/components/{product/Process/Processes → build/Install/Process}/CustomerBuildingMessage.vue +0 -0
  175. /package/src/components/{product/Process/Processes → build/Install/Process}/CustomerEquipmentMessage.vue +0 -0
  176. /package/src/components/{product/Function/functions → build/Install/ProcessInfo}/ApplyRecordCancel.vue +0 -0
  177. /package/src/components/{product/Bill → build/Install/bill}/BillGZK.vue +0 -0
  178. /package/src/components/{product/Bill → build/Install/bill}/BillGZKMakeInfo.vue +0 -0
  179. /package/src/components/{product/Bill → build/Install/bill}/BillGZKRecordInfo.vue +0 -0
  180. /package/src/components/{product/Bill → build/Install/bill}/BillJLB.vue +0 -0
  181. /package/src/components/{product/Bill → build/Install/bill}/BillJLBMakeInfo.vue +0 -0
  182. /package/src/components/{product/Bill → build/Install/bill}/BillJLBRecordInfo.vue +0 -0
  183. /package/src/components/{product/Bill → build/Install/bill}/BillKTK.vue +0 -0
  184. /package/src/components/{product/Bill → build/Install/bill}/BillKTKMakeInfo.vue +0 -0
  185. /package/src/components/{product/Bill → build/Install/bill}/BillKTKRecordInfo.vue +0 -0
  186. /package/src/components/{product/Bill → build/Install/bill}/BillQRK.vue +0 -0
  187. /package/src/components/{product/Bill → build/Install/bill}/BillQRKMakeInfo.vue +0 -0
  188. /package/src/components/{product/Bill → build/Install/bill}/BillQRKRecordInfo.vue +0 -0
  189. /package/src/components/{product/Bill → build/Install/bill}/BillSelect.vue +0 -0
  190. /package/src/components/{product/Bill → build/Install/bill}/BillXSD.vue +0 -0
  191. /package/src/components/{product/Bill → build/Install/bill}/BillXSDRecordInfo.vue +0 -0
  192. /package/src/components/{product/Supervisory → build/Install/monitor}/SupervisoryBaseInfo.vue +0 -0
@@ -0,0 +1,116 @@
1
+ <template>
2
+ <div class="auto" style="padding-right:5px; padding-top: 10px;">
3
+ <validator name="v">
4
+ <div class="panel" v-bind:class="{'panel-default': showdef, ' panel-info' : showinfo}">
5
+ <div class="panel-heading" @click ="hello()">
6
+ <h3 class="panel-title">合同签订信息<span class="pull-right glyphicon" v-bind:class="{'glyphicon-chevron-right': show, 'glyphicon-chevron-down' : hasError}"></span></h3>
7
+ </div>
8
+ <div class="panel-body" v-if="hasError">
9
+ <div class="col-sm-12">
10
+ <span class="col-sm-6">合同编号:{{model.f_contract_number}}</span>
11
+ <span class="col-sm-6">签订日期:{{model.f_contract_time}}</span>
12
+ <span class="col-sm-6">业务办理人:{{model.f_salesman}}</span>
13
+ <span class="col-sm-6">合同金额:{{model.f_contract_money}}</span>
14
+ <span class="col-sm-6">减免费用:{{model.f_jmhj_cost}}</span>
15
+ <span class="col-sm-6">建议金额:{{model.f_advice_money}}</span>
16
+ <span class="col-sm-6">付款方式:{{model.f_pay_type}}</span>
17
+ <span class="col-sm-6">是否签订协议:{{model.f_issign}}</span>
18
+
19
+ <span class="col-sm-12">合同签订备注:{{model.f_contract_remarks}}</span>
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </validator>
24
+ </div>
25
+ </template>
26
+ <script>
27
+ export default {
28
+ title: '合同签订信息',
29
+ data () {
30
+ return {
31
+ title: '合同签订',
32
+ actdefid: 5,
33
+ hasError: false,
34
+ show: true,
35
+ showdef: true,
36
+ showinfo: false,
37
+ model: {
38
+ }
39
+ }
40
+ },
41
+ props: ['contrat'],
42
+ ready() {
43
+ this.model = Object.assign({}, this.model, this.contrat)
44
+ if (!this.contrat.f_contract_number) {
45
+ this.model.f_contract_number = '无'
46
+ this.model.f_contract_time = '无'
47
+ this.model.f_salesman = '无'
48
+ this.model.f_gtren_unit = '无'
49
+ this.model.f_gtren_phone = '无'
50
+ this.model.f_contract_remarks = '无'
51
+
52
+ this.model.f_contract_money = '无'
53
+ this.model.f_jmhj_cost = '无'
54
+ this.model.f_advice_money = '无'
55
+ this.model.f_pay_type = '无'
56
+ this.model.f_issign = '无'
57
+ }
58
+ this.show = false
59
+ this.hasError = false
60
+ if (this.contrat.defname === this.title) {
61
+ this.hasError = true
62
+ } else {
63
+ this.hasError = false
64
+ this.show = true
65
+ }
66
+ if (this.actdefid <= this.model.actdefid) {
67
+ this.showdef = false
68
+ this.showinfo = true
69
+ } else {
70
+ this.showdef = true
71
+ this.showinfo = false
72
+ }
73
+ },
74
+ methods: {
75
+ hello () {
76
+ if (!this.contrat.defname) {
77
+ return
78
+ }
79
+ if (this.actdefid > this.contrat.actdefid) {
80
+ return
81
+ }
82
+ if (this.show) {
83
+ this.show = false
84
+ this.hasError = true
85
+ } else {
86
+ this.show = true
87
+ this.hasError = false
88
+ }
89
+ },
90
+ flush () {
91
+ this.contrat = ''
92
+ this.model = ''
93
+ }
94
+ },
95
+ watch: {
96
+ 'contrat' () {
97
+ this.model = Object.assign({}, this.model, this.contrat)
98
+ this.show = false
99
+ this.hasError = false
100
+ if (this.contrat.defname === this.title) {
101
+ this.hasError = true
102
+ } else {
103
+ this.hasError = false
104
+ this.show = true
105
+ }
106
+ if (this.actdefid <= this.model.actdefid) {
107
+ this.showdef = false
108
+ this.showinfo = true
109
+ } else {
110
+ this.showdef = true
111
+ this.showinfo = false
112
+ }
113
+ }
114
+ }
115
+ }
116
+ </script>
@@ -0,0 +1,114 @@
1
+ <template>
2
+ <div class="auto" style="padding-right:5px; padding-top: 10px;">
3
+ <validator name="v">
4
+ <div class="panel" v-bind:class="{'panel-default': showdef, ' panel-info' : showinfo}">
5
+ <div class="panel-heading" @click ="hello()">
6
+ <h3 class="panel-title">派工单信息<span class="pull-right glyphicon" v-bind:class="{'glyphicon-chevron-right': show, 'glyphicon-chevron-down' : hasError}"></span></h3>
7
+ </div>
8
+ <div class="panel-body" v-if="hasError">
9
+ <div class="col-sm-12">
10
+ <span class="col-sm-6">工程编号:{{model.f_project_number}}</span>
11
+ <span class="col-sm-6">开工日期:{{model.f_work_startdate}}</span>
12
+ <span class="col-sm-6">竣工日期:{{model.f_work_enddate}}</span>
13
+ <span class="col-sm-6">施工部门:{{model.f_construction_unit}}</span>
14
+ <span class="col-sm-6">建设部门:{{model.f_build_unit}}</span>
15
+ <span class="col-sm-6">监理部门:{{model.f_supervision_unit}}</span>
16
+ <span class="col-sm-6">工程负责人:{{model.f_project_principal}}</span>
17
+ <span class="col-sm-6">现场代表:{{model.f_representative}}</span>
18
+ <span class="col-sm-12">负责人电话:{{model.f_principal_phone}}</span>
19
+ <span class="col-sm-12">工程内容:{{model.f_tasking_remarks}}</span>
20
+ </div>
21
+ </div>
22
+ </div>
23
+ </validator>
24
+ </div>
25
+ </template>
26
+ <script>
27
+ export default {
28
+ title: '派工单信息',
29
+ data () {
30
+ return {
31
+ title: '派工单',
32
+ actdefid: 8,
33
+ hasError: false,
34
+ show: true,
35
+ showdef: true,
36
+ showinfo: false,
37
+ model: {
38
+ }
39
+ }
40
+ },
41
+ props: ['dispatch'],
42
+ ready() {
43
+ this.model = Object.assign({}, this.model, this.dispatch)
44
+ if (!this.dispatch.f_project_number) {
45
+ this.model.f_project_number = '无'
46
+ this.model.f_work_startdate = '无'
47
+ this.model.f_work_enddate = '无'
48
+ this.model.f_construction_unit = '无'
49
+ this.model.f_build_unit = '无'
50
+ this.model.f_supervision_unit = '无'
51
+ this.model.f_project_principal = '无'
52
+ this.model.f_representative = '无'
53
+ this.model.f_principal_phone = '无'
54
+ this.model.f_tasking_remarks = '无'
55
+ }
56
+ this.show = false
57
+ this.hasError = false
58
+ if (this.dispatch.defname === this.title) {
59
+ this.hasError = true
60
+ } else {
61
+ this.hasError = false
62
+ this.show = true
63
+ }
64
+ if (this.actdefid <= this.model.actdefid) {
65
+ this.showdef = false
66
+ this.showinfo = true
67
+ } else {
68
+ this.showdef = true
69
+ this.showinfo = false
70
+ }
71
+ },
72
+ methods: {
73
+ hello () {
74
+ if (!this.dispatch.defname) {
75
+ return
76
+ }
77
+ if (this.actdefid > this.dispatch.actdefid) {
78
+ return
79
+ }
80
+ if (this.show) {
81
+ this.show = false
82
+ this.hasError = true
83
+ } else {
84
+ this.show = true
85
+ this.hasError = false
86
+ }
87
+ },
88
+ flush () {
89
+ this.dispatch = ''
90
+ this.model = ''
91
+ }
92
+ },
93
+ watch: {
94
+ 'dispatch' () {
95
+ this.model = Object.assign({}, this.model, this.dispatch)
96
+ this.show = false
97
+ this.hasError = false
98
+ if (this.dispatch.defname === this.title) {
99
+ this.hasError = true
100
+ } else {
101
+ this.hasError = false
102
+ this.show = true
103
+ }
104
+ if (this.actdefid <= this.model.actdefid) {
105
+ this.showdef = false
106
+ this.showinfo = true
107
+ } else {
108
+ this.showdef = true
109
+ this.showinfo = false
110
+ }
111
+ }
112
+ }
113
+ }
114
+ </script>
@@ -0,0 +1,108 @@
1
+ <template>
2
+ <div class="auto" style="padding-right:5px; padding-top: 10px;">
3
+ <validator name="v">
4
+ <div class="panel" v-bind:class="{'panel-default': showdef, ' panel-info' : showinfo}">
5
+ <div class="panel-heading" @click ="hello()">
6
+ <h3 class="panel-title">收费标准信息<span class="pull-right glyphicon" v-bind:class="{'glyphicon-chevron-right': show, 'glyphicon-chevron-down' : hasError}"></span></h3>
7
+ </div>
8
+ <div class="panel-body" v-if="hasError">
9
+ <div class="col-sm-12">
10
+ <span class="col-sm-6">入户安装费:{{model.f_construction_cost}}</span>
11
+ <span class="col-sm-6">材料费:{{model.f_material_cost}}</span>
12
+ <span class="col-sm-6">人工费:{{model.f_labor_cost}}</span>
13
+ <span class="col-sm-6">改管费:{{model.f_change_pipeline_cost}}</span>
14
+ <span class="col-sm-6">设备安装费:{{model.f_sbaz_cost}}</span>
15
+ <span class="col-sm-6">缴费户数:{{model.f_payfee_num}}</span>
16
+ <!--<span class="col-sm-6">费用减免合计:{{model.f_jmhj_cost}}</span>-->
17
+ <!--<span class="col-sm-6">费用合计:{{model.f_total_cost}}</span>-->
18
+ <span class="col-sm-12">气价类型:{{model.f_stair_price}}</span>
19
+ <span class="col-sm-12">用气性质:{{model.f_gasproperties}}</span>
20
+ <span class="col-sm-12">收费标准备注:{{model.f_fee_remarks}}</span>
21
+ </div>
22
+ </div>
23
+ </div>
24
+ </validator>
25
+ </div>
26
+ </template>
27
+ <script>
28
+ export default {
29
+ title: '收费标准信息',
30
+ data () {
31
+ return {
32
+ title: '收费标准',
33
+ actdefid: 4,
34
+ hasError: false,
35
+ show: true,
36
+ showdef: true,
37
+ showinfo: false,
38
+ model: {
39
+ }
40
+ }
41
+ },
42
+ props: ['feen'],
43
+ ready() {
44
+ this.model = Object.assign({}, this.model, this.feen)
45
+ if (!this.feen.f_stair_price) {
46
+ this.model.f_stair_price = '无'
47
+ this.model.f_gasproperties = '无'
48
+ this.model.f_fee_remarks = '无'
49
+ }
50
+ this.show = false
51
+ this.hasError = false
52
+ if (this.feen.defname === this.title) {
53
+ this.hasError = true
54
+ } else {
55
+ this.hasError = false
56
+ this.show = true
57
+ }
58
+ if (this.actdefid <= this.model.actdefid) {
59
+ this.showdef = false
60
+ this.showinfo = true
61
+ } else {
62
+ this.showdef = true
63
+ this.showinfo = false
64
+ }
65
+ },
66
+ methods: {
67
+ hello () {
68
+ if (!this.feen.defname) {
69
+ return
70
+ }
71
+ if (this.actdefid > this.feen.actdefid) {
72
+ return
73
+ }
74
+ if (this.show) {
75
+ this.show = false
76
+ this.hasError = true
77
+ } else {
78
+ this.show = true
79
+ this.hasError = false
80
+ }
81
+ },
82
+ flush () {
83
+ this.feen = ''
84
+ this.model = ''
85
+ }
86
+ },
87
+ watch: {
88
+ 'feen' () {
89
+ this.model = Object.assign({}, this.model, this.feen)
90
+ this.show = false
91
+ this.hasError = false
92
+ if (this.feen.defname === this.title) {
93
+ this.hasError = true
94
+ } else {
95
+ this.hasError = false
96
+ this.show = true
97
+ }
98
+ if (this.actdefid <= this.model.actdefid) {
99
+ this.showdef = false
100
+ this.showinfo = true
101
+ } else {
102
+ this.showdef = true
103
+ this.showinfo = false
104
+ }
105
+ }
106
+ }
107
+ }
108
+ </script>
@@ -0,0 +1,102 @@
1
+ <template>
2
+ <div class="auto" style="padding-right:5px; padding-top: 10px;">
3
+ <validator name="v">
4
+ <div class="panel" v-bind:class="{'panel-default': showdef, ' panel-info' : showinfo}">
5
+ <div class="panel-heading" @click ="hello()">
6
+ <h3 class="panel-title">收费审核信息<span class="pull-right glyphicon" v-bind:class="{'glyphicon-chevron-right': show, 'glyphicon-chevron-down' : hasError}"></span></h3>
7
+ </div>
8
+ <div class="panel-body" v-if="hasError">
9
+ <div class="col-sm-12">
10
+ <span class="col-sm-6" v-if="model.f_agree_install">已同意安装</span>
11
+ <span class="col-sm-6" v-if="model.f_agree_install === false">未同意安装</span>
12
+ <!--<span class="col-sm-6">费用合计:{{model.f_total_cost}}</span>-->
13
+ <!--<span class="col-sm-6">实交费用:{{model.f_actualfee}}</span>-->
14
+ <!--<span class="col-sm-12">收费审核备注:{{model.f_feecheck_remarks}}</span>-->
15
+
16
+ </div>
17
+ </div>
18
+ </div>
19
+ </validator>
20
+ </div>
21
+ </template>
22
+ <script>
23
+ export default {
24
+ title: '收费审核信息',
25
+ data () {
26
+ return {
27
+ title: '收费审核',
28
+ actdefid: 6,
29
+ hasError: false,
30
+ showdef: true,
31
+ showinfo: false,
32
+ show: true,
33
+ model: {
34
+ }
35
+ }
36
+ },
37
+ props: ['feev'],
38
+ ready() {
39
+ this.model = Object.assign({}, this.model, this.feev)
40
+ if (!this.feev.f_feecheck_remarks) {
41
+ // this.model.f_actualfee = '无'
42
+ this.model.f_feecheck_remarks = '无'
43
+ }
44
+ this.show = false
45
+ this.hasError = false
46
+ if (this.feev.defname === this.title) {
47
+ this.hasError = true
48
+ } else {
49
+ this.hasError = false
50
+ this.show = true
51
+ }
52
+ if (this.actdefid <= this.model.actdefid) {
53
+ this.showdef = false
54
+ this.showinfo = true
55
+ } else {
56
+ this.showdef = true
57
+ this.showinfo = false
58
+ }
59
+ },
60
+ methods: {
61
+ hello () {
62
+ if (!this.feev.defname) {
63
+ return
64
+ }
65
+ if (this.actdefid > this.feev.actdefid) {
66
+ return
67
+ }
68
+ if (this.show) {
69
+ this.show = false
70
+ this.hasError = true
71
+ } else {
72
+ this.show = true
73
+ this.hasError = false
74
+ }
75
+ },
76
+ flush () {
77
+ this.feev = ''
78
+ this.model = ''
79
+ }
80
+ },
81
+ watch: {
82
+ 'feev' () {
83
+ this.model = Object.assign({}, this.model, this.feev)
84
+ this.show = false
85
+ this.hasError = false
86
+ if (this.feev.defname === this.title) {
87
+ this.hasError = true
88
+ } else {
89
+ this.hasError = false
90
+ this.show = true
91
+ }
92
+ if (this.actdefid <= this.model.actdefid) {
93
+ this.showdef = false
94
+ this.showinfo = true
95
+ } else {
96
+ this.showdef = true
97
+ this.showinfo = false
98
+ }
99
+ }
100
+ }
101
+ }
102
+ </script>
@@ -0,0 +1,99 @@
1
+ <template>
2
+ <div class="auto" style="padding-right:5px; padding-top: 10px;">
3
+ <validator name="v">
4
+ <div class="panel" v-bind:class="{'panel-default': showdef, ' panel-info' : showinfo}">
5
+ <div class="panel-heading" @click ="hello()">
6
+ <h3 class="panel-title">通气点火信息<span class="pull-right glyphicon" v-bind:class="{'glyphicon-chevron-right': show, 'glyphicon-chevron-down' : hasError}"></span></h3>
7
+ </div>
8
+ <div class="panel-body" v-if="hasError">
9
+ <div class="col-sm-12">
10
+ <span class="col-sm-6">通气人员:{{model.f_gas_name}}</span>
11
+ <span class="col-sm-6">通气户数:{{model.f_gas_number}}</span>
12
+ <span class="col-sm-6">未通气户数:{{model.f_notgas_number}}</span>
13
+ <span class="col-sm-6">调压人员:{{model.f_regulatoruser}}</span>
14
+ <span class="col-sm-6" v-if="model.f_fee_state">费用已结清</span>
15
+ <span class="col-sm-6" v-if="model.f_fee_state === false">费用已结清</span>
16
+ <span class="col-sm-6">通气备注:{{model.f_gas_remarks}}</span>
17
+ </div>
18
+ </div>
19
+ </div>
20
+ </validator>
21
+ </div>
22
+ </template>
23
+ <script>
24
+ export default {
25
+ title: '通气点火信息',
26
+ data () {
27
+ return {
28
+ title: '通气点火',
29
+ actdefid: 11,
30
+ hasError: false,
31
+ show: true,
32
+ showdef: true,
33
+ showinfo: false,
34
+ model: {
35
+ }
36
+ }
37
+ },
38
+ props: ['ignition'],
39
+ ready() {
40
+ this.model = Object.assign({}, this.model, this.ignition)
41
+ this.show = false
42
+ this.hasError = false
43
+ if (this.ignition.defname === this.title) {
44
+ this.hasError = true
45
+ } else {
46
+ this.hasError = false
47
+ this.show = true
48
+ }
49
+ if (this.actdefid <= this.model.actdefid) {
50
+ this.showdef = false
51
+ this.showinfo = true
52
+ } else {
53
+ this.showdef = true
54
+ this.showinfo = false
55
+ }
56
+ },
57
+ methods: {
58
+ hello () {
59
+ if (!this.ignition.defname) {
60
+ return
61
+ }
62
+ if (this.actdefid > this.ignition.actdefid) {
63
+ return
64
+ }
65
+ if (this.show) {
66
+ this.show = false
67
+ this.hasError = true
68
+ } else {
69
+ this.show = true
70
+ this.hasError = false
71
+ }
72
+ },
73
+ flush () {
74
+ this.ignition = ''
75
+ this.model = ''
76
+ }
77
+ },
78
+ watch: {
79
+ 'ignition' () {
80
+ this.model = Object.assign({}, this.model, this.ignition)
81
+ this.show = false
82
+ this.hasError = false
83
+ if (this.ignition.defname === this.title) {
84
+ this.hasError = true
85
+ } else {
86
+ this.hasError = false
87
+ this.show = true
88
+ }
89
+ if (this.actdefid <= this.model.actdefid) {
90
+ this.showdef = false
91
+ this.showinfo = true
92
+ } else {
93
+ this.showdef = true
94
+ this.showinfo = false
95
+ }
96
+ }
97
+ }
98
+ }
99
+ </script>
@@ -0,0 +1,114 @@
1
+ <template>
2
+ <div class="auto" style="padding-right:5px; padding-top: 10px;">
3
+ <validator name="v">
4
+ <div class="panel" v-bind:class="{'panel-default': showdef, ' panel-info' : showinfo}">
5
+ <div class="panel-heading" @click ="hello()">
6
+ <h3 class="panel-title">定表型信息<span class="pull-right glyphicon" v-bind:class="{'glyphicon-chevron-right': show, 'glyphicon-chevron-down' : hasError}"></span></h3>
7
+ </div>
8
+ <div class="panel-body" v-if="hasError">
9
+ <div class="col-sm-12">
10
+ <span class="col-sm-6">气表品牌:{{model.f_meter_brand}}</span>
11
+ <span class="col-sm-6">气表型号:{{model.f_meter_style}}</span>
12
+ <span class="col-sm-6">气表厂家:{{model.f_manufacturers}}</span>
13
+ <span class="col-sm-6">气表类型:{{model.f_meter_type}}</span>
14
+ <span class="col-sm-6">别名:{{model.f_alias}}</span>
15
+ <span class="col-sm-6">调压装置:{{model.f_regulator}}</span>
16
+ <span class="col-sm-6" v-if="model.f_ismaterial">材料已开</span>
17
+ <span class="col-sm-6" v-if="model.f_ismaterial === false">材料未开</span>
18
+ <span class="col-sm-12">材料开据号:{{model.f_material_bill}}</span>
19
+ <span class="col-sm-12">开材料备注:{{model.f_material_remarks}}</span>
20
+ <span class="col-sm-12">其他备注:{{model.f_rest_remarks}}</span>
21
+ </div>
22
+ </div>
23
+ </div>
24
+ </validator>
25
+ </div>
26
+ </template>
27
+ <script>
28
+ export default {
29
+ title: '定表型信息',
30
+ data () {
31
+ return {
32
+ title: '定表型',
33
+ actdefid: 7,
34
+ hasError: false,
35
+ show: true,
36
+ showdef: true,
37
+ showinfo: false,
38
+ model: {
39
+ }
40
+ }
41
+ },
42
+ props: ['meter'],
43
+ ready() {
44
+ this.model = Object.assign({}, this.model, this.meter)
45
+ if (!this.meter.f_meter_brand) {
46
+ this.model.f_meter_brand = '无'
47
+ this.model.f_meter_style = '无'
48
+ this.model.f_manufacturers = '无'
49
+ this.model.f_meter_type = '无'
50
+ this.model.f_alias = '无'
51
+ this.model.f_regulator = '无'
52
+ this.model.f_material_bill = '无'
53
+ this.model.f_material_remarks = '无'
54
+ this.model.f_rest_remarks = '无'
55
+ }
56
+ this.show = false
57
+ this.hasError = false
58
+ if (this.meter.defname === this.title) {
59
+ this.hasError = true
60
+ } else {
61
+ this.hasError = false
62
+ this.show = true
63
+ }
64
+ if (this.actdefid <= this.model.actdefid) {
65
+ this.showdef = false
66
+ this.showinfo = true
67
+ } else {
68
+ this.showdef = true
69
+ this.showinfo = false
70
+ }
71
+ },
72
+ methods: {
73
+ hello () {
74
+ if (!this.meter.defname) {
75
+ return
76
+ }
77
+ if (this.actdefid > this.meter.actdefid) {
78
+ return
79
+ }
80
+ if (this.show) {
81
+ this.show = false
82
+ this.hasError = true
83
+ } else {
84
+ this.show = true
85
+ this.hasError = false
86
+ }
87
+ },
88
+ flush () {
89
+ this.meter = ''
90
+ this.model = ''
91
+ }
92
+ },
93
+ watch: {
94
+ 'meter' () {
95
+ this.model = Object.assign({}, this.model, this.meter)
96
+ this.show = false
97
+ this.hasError = false
98
+ if (this.meter.defname === this.title) {
99
+ this.hasError = true
100
+ } else {
101
+ this.hasError = false
102
+ this.show = true
103
+ }
104
+ if (this.actdefid <= this.model.actdefid) {
105
+ this.showdef = false
106
+ this.showinfo = true
107
+ } else {
108
+ this.showdef = true
109
+ this.showinfo = false
110
+ }
111
+ }
112
+ }
113
+ }
114
+ </script>