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,115 @@
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' : showDown}"></span></h3>
7
+ </div>
8
+ <div class="panel-body" v-if="showDown">
9
+ <div class="col-sm-12">
10
+ <span class="col-sm-6">安装户数:{{model.f_install_num}}</span>
11
+ <span class="col-sm-6">缴费户数:{{model.f_payfee_num}}</span>
12
+ <span class="col-sm-6">用气类型:{{model.f_gas_type}}</span>
13
+ <span class="col-sm-6" v-if="model.f_isdesign">可以设计出图</span>
14
+ <span class="col-sm-6" v-if="model.f_isdesign === false">不可以设计出图</span>
15
+ <span class="col-sm-6">勘查人员:{{model.f_survey_name}}</span>
16
+ <span class="col-sm-6">勘查时间:{{model.f_survey_time}} </span>
17
+ <span class="col-sm-12">勘查意见:{{model.f_survey_remarks}}</span>
18
+ <span class="col-sm-6">设计周期:{{model.f_design_cycle}} 天</span>
19
+ <span class="col-sm-6">派工日期:{{model.f_design_start_date}}</span>
20
+ <span class="col-sm-6">完成日期:{{model.f_design_end_date}}</span>
21
+ <span class="col-sm-6">设计人:{{model.f_designer}}</span>
22
+ <span class="col-sm-6">审计单位:{{model.f_design_unit}}</span>
23
+ <span class="col-sm-6">审核人:{{model.f_design_check_name}}</span>
24
+ <span class="col-sm-12">设计出图说明:{{model.f_design_remarks}}</span>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </validator>
29
+ </div>
30
+ </template>
31
+ <script>
32
+ export default {
33
+ title: '现场勘探信息',
34
+ data () {
35
+ return {
36
+ title: '现场勘探',
37
+ actdefid: 2,
38
+ showDown: false,
39
+ show: true,
40
+ showdef: true,
41
+ showinfo: false,
42
+ model: {
43
+ }
44
+ }
45
+ },
46
+ props: ['palceinfo'],
47
+ ready() {
48
+ this.model = Object.assign({}, this.model, this.palceinfo)
49
+ if (!this.palceinfo.f_gas_type) {
50
+ this.model.f_gas_type= '无'
51
+ this.model.f_survey_name = '无'
52
+ this.model.f_survey_time = '无'
53
+ this.model.f_survey_remarks = '无'
54
+ }
55
+ this.show = false
56
+ this.showDown = false
57
+ if (this.palceinfo.defname === this.title) {
58
+ this.showDown = true
59
+ } else {
60
+ this.showDown = false
61
+ this.show = true
62
+ }
63
+ if (this.actdefid <= this.model.actdefid) {
64
+ this.showdef = false
65
+ this.showinfo = true
66
+ } else {
67
+ this.showdef = true
68
+ this.showinfo = false
69
+ }
70
+ },
71
+ methods: {
72
+ hello () {
73
+ if (!this.palceinfo.defname) {
74
+ return
75
+ }
76
+ if (this.actdefid > this.palceinfo.actdefid) {
77
+ return
78
+ }
79
+ if (this.show) {
80
+ this.show = false
81
+ this.showDown = true
82
+ } else {
83
+ this.show = true
84
+ this.showDown = false
85
+ }
86
+ },
87
+ flush () {
88
+ this.palceinfo = ''
89
+ this.model = ''
90
+ }
91
+ },
92
+ watch: {
93
+ 'palceinfo' () {
94
+ this.model = Object.assign({}, this.model, this.palceinfo)
95
+ this.show = false
96
+ this.showDown = false
97
+ if (this.palceinfo.defname === this.title) {
98
+ this.showDown = true
99
+ console.log('11111111111111111111')
100
+ } else {
101
+ this.showDown = false
102
+ this.show = true
103
+ console.log('22222222222222222222222')
104
+ }
105
+ if (this.actdefid <= this.model.actdefid) {
106
+ this.showdef = false
107
+ this.showinfo = true
108
+ } else {
109
+ this.showdef = true
110
+ this.showinfo = false
111
+ }
112
+ }
113
+ }
114
+ }
115
+ </script>
@@ -0,0 +1,107 @@
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_design_cycle}} 天</span>
11
+ <span class="col-sm-6">派工日期:{{model.f_design_start_date}}</span>
12
+ <span class="col-sm-6">完成日期:{{model.f_design_end_date}}</span>
13
+ <span class="col-sm-6">设计人:{{model.f_designer}}</span>
14
+ <span class="col-sm-6">审计单位:{{model.f_design_unit}}</span>
15
+ <span class="col-sm-6">审核人:{{model.f_design_check_name}}</span>
16
+ <span class="col-sm-12">设计出图说明:{{model.f_design_remarks}}</span>
17
+
18
+ </div>
19
+ </div>
20
+ </div>
21
+ </validator>
22
+ </div>
23
+ </template>
24
+ <script>
25
+ export default {
26
+ title: '设计出图信息',
27
+ data () {
28
+ return {
29
+ title: '设计出图',
30
+ actdefid: 3,
31
+ hasError: false,
32
+ show: true,
33
+ showdef: true,
34
+ showinfo: false,
35
+ model: {
36
+ }
37
+ }
38
+ },
39
+ props: ['projeterinfo'],
40
+ ready() {
41
+ this.model = Object.assign({}, this.model, this.projeterinfo)
42
+ if (!this.projeterinfo.f_designer) {
43
+ this.model.f_design_cycle= 0
44
+ this.model.f_designer = '无'
45
+ this.model.f_design_unit = '无'
46
+ this.model.f_design_check_name = '无'
47
+ this.model.f_design_remarks = '无'
48
+ }
49
+ this.show = false
50
+ this.hasError = false
51
+ if (this.projeterinfo.defname === this.title) {
52
+ this.hasError = true
53
+ } else {
54
+ this.hasError = false
55
+ this.show = true
56
+ }
57
+ if (this.actdefid <= this.model.actdefid) {
58
+ this.showdef = false
59
+ this.showinfo = true
60
+ } else {
61
+ this.showdef = true
62
+ this.showinfo = false
63
+ }
64
+ },
65
+ methods: {
66
+ hello () {
67
+ if (!this.projeterinfo.defname) {
68
+ return
69
+ }
70
+ if (this.actdefid > this.projeterinfo.actdefid) {
71
+ return
72
+ }
73
+ if (this.show) {
74
+ this.show = false
75
+ this.hasError = true
76
+ } else {
77
+ this.show = true
78
+ this.hasError = false
79
+ }
80
+ },
81
+ flush () {
82
+ this.projeterinfo = ''
83
+ this.model = ''
84
+ }
85
+ },
86
+ watch: {
87
+ 'projeterinfo' () {
88
+ this.model = Object.assign({}, this.model, this.projeterinfo)
89
+ this.show = false
90
+ this.hasError = false
91
+ if (this.projeterinfo.defname === this.title) {
92
+ this.hasError = true
93
+ } else {
94
+ this.hasError = false
95
+ this.show = true
96
+ }
97
+ if (this.actdefid <= this.model.actdefid) {
98
+ this.showdef = false
99
+ this.showinfo = true
100
+ } else {
101
+ this.showdef = true
102
+ this.showinfo = false
103
+ }
104
+ }
105
+ }
106
+ }
107
+ </script>
@@ -0,0 +1,107 @@
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_install_name}}</span>
11
+ <span class="col-sm-6">竣工日期:{{model.f_project_enddate}}</span>
12
+ <span class="col-sm-6" v-if="model.f_check_indoorproject">户内工程验收通过</span>
13
+ <span class="col-sm-6" v-if="model.f_check_indoorproject === false">户内工程验收未通过</span>
14
+ <span class="col-sm-6" v-if="model.f_check_outdoorsproject">庭院工程验收通过</span>
15
+ <span class="col-sm-6" v-if="model.f_check_outdoorsproject === false">庭院工程验收未通过</span>
16
+ <span class="col-sm-12">施工单位签字人:{{model.f_constructionunit_name}}</span>
17
+ <span class="col-sm-12">施工单位签字日期:{{model.f_constructionunit_date}}</span>
18
+ <span class="col-sm-12">设计单位签字人:{{model.f_designunit_name}}</span>
19
+ <span class="col-sm-12">设计单位签字日期:{{model.f_designunit_date}}</span>
20
+ <span class="col-sm-12">建设单位签字人:{{model.f_buildunit_name}}</span>
21
+ <span class="col-sm-12">建设单位签字日期:{{model.f_buildunit_date}}</span>
22
+ <span class="col-sm-12">监理单位签字人:{{model.f_supervisionunit_name}}</span>
23
+ <span class="col-sm-12">监理单位签字日期:{{model.f_upervisionunit_date}}</span>
24
+ <span class="col-sm-12">竣工验收备注:{{model.f_completed_remarks}}</span>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </validator>
29
+ </div>
30
+ </template>
31
+ <script>
32
+ export default {
33
+ title: '竣工验收单信息',
34
+ data () {
35
+ return {
36
+ title: '竣工验收单',
37
+ actdefid: 10,
38
+ hasError: false,
39
+ show: true,
40
+ showdef: true,
41
+ showinfo: false,
42
+ model: {
43
+ }
44
+ }
45
+ },
46
+ props: ['note'],
47
+ ready() {
48
+ this.model = Object.assign({}, this.model, this.note)
49
+ this.show = false
50
+ this.hasError = false
51
+ if (this.note.defname === this.title) {
52
+ this.hasError = true
53
+ } else {
54
+ this.hasError = false
55
+ this.show = true
56
+ }
57
+ if (this.actdefid <= this.model.actdefid) {
58
+ this.showdef = false
59
+ this.showinfo = true
60
+ } else {
61
+ this.showdef = true
62
+ this.showinfo = false
63
+ }
64
+ },
65
+ methods: {
66
+ hello () {
67
+ if (!this.note.defname) {
68
+ return
69
+ }
70
+ if (this.actdefid > this.note.actdefid) {
71
+ return
72
+ }
73
+ if (this.show) {
74
+ this.show = false
75
+ this.hasError = true
76
+ } else {
77
+ this.show = true
78
+ this.hasError = false
79
+ }
80
+ },
81
+ flush () {
82
+ this.note = ''
83
+ this.model = ''
84
+ }
85
+ },
86
+ watch: {
87
+ 'note' () {
88
+ this.model = Object.assign({}, this.model, this.note)
89
+ this.show = false
90
+ this.hasError = false
91
+ if (this.note.defname === this.title) {
92
+ this.hasError = true
93
+ } else {
94
+ this.hasError = false
95
+ this.show = true
96
+ }
97
+ if (this.actdefid <= this.model.actdefid) {
98
+ this.showdef = false
99
+ this.showinfo = true
100
+ } else {
101
+ this.showdef = true
102
+ this.showinfo = false
103
+ }
104
+ }
105
+ }
106
+ }
107
+ </script>
@@ -0,0 +1,74 @@
1
+ <template>
2
+ <div class="auto" style="padding-right:5px;">
3
+ <div class="panel panel-info">
4
+ <div class="panel-heading">
5
+ <h3 class="panel-title">报建基本信息</h3>
6
+ </div>
7
+ <div class="panel-body">
8
+ <span class="col-sm-6">客户姓名:{{model.f_user_name}}</span>
9
+ <span class="col-sm-6">工程名称:{{model.f_project_name}}</span>
10
+ <span class="col-sm-6">证件类型:{{model.f_credentials}}</span>
11
+ <span class="col-sm-6">证件号码:{{model.f_idnumber}}</span>
12
+ <span class="col-sm-6">客户电话:{{model.f_phone}}</span>
13
+ <span class="col-sm-6">客户类型:{{model.f_customer_type}}</span>
14
+ <span class="col-sm-6">客户电话:{{model.f_phone}}</span>
15
+ <span class="col-sm-6">报装类型:{{model.f_apply_type}}</span>
16
+ <span class="col-sm-6">片区:{{model.f_area}}</span>
17
+ <span class="col-sm-6">用户类型:{{model.f_apply_type}}</span>
18
+ <span class="col-sm-6">用户单位:{{model.f_company_name}}</span>
19
+ <span class="col-sm-6">申请户数:{{model.f_apply_count}}</span>
20
+ <span class="col-sm-6">房屋类型:{{model.f_house_type}}</span>
21
+ <span class="col-sm-6">小区:{{model.f_residential_area}}</span>
22
+ <span class="col-sm-6">地址:{{model.f_address}}</span>
23
+ <span v-if="model.f_apply_type.includes( '改装报建')">改装原因:{{model.f_apply_remarks}}</span>
24
+ <span class="col-sm-6" v-else>报建备注:{{model.f_apply_remarks}}</span>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </template>
29
+ <script>
30
+ export default {
31
+ title: '基本信息',
32
+ data () {
33
+ return {
34
+ model: {
35
+ f_user_name: '无',
36
+ f_address: '无',
37
+ f_apply_count: '无',
38
+ f_phone: '无',
39
+ f_apply_type: '无',
40
+ f_area: '无',
41
+ f_user_type: '无',
42
+ f_house_type: '无',
43
+ f_residential_area: '无',
44
+ f_apply_remarks: '无'
45
+ }
46
+ }
47
+ },
48
+ props: ['basic'],
49
+ ready () {
50
+ this.model = Object.assign({}, this.model, this.basic)
51
+ },
52
+ methods: {
53
+ flush() {
54
+ this.model.f_user_name = '无'
55
+ this.model.f_address = '无'
56
+ this.model.f_apply_count = '无'
57
+ this.model.f_phone = '无'
58
+ this.model.f_apply_type = '无'
59
+ this.model.f_area = '无'
60
+ this.model.f_user_type = '无'
61
+ this.model.f_house_type = '无'
62
+ this.model.f_residential_area = '无'
63
+ this.model.f_apply_remarks = '无'
64
+ }
65
+ },
66
+ watch: {
67
+ 'basic' () {
68
+ this.model = Object.assign({}, this.model, this.basic)
69
+ }
70
+ }
71
+ }
72
+ </script>
73
+ <style>
74
+ </style>
@@ -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
+
11
+
12
+ <span class="col-sm-6">工程名称:{{model.f_project_name}}</span>
13
+ <span class="col-sm-6">客户联系人:{{model.f_customer_contact}}</span>
14
+ <span class="col-sm-6">联系电话:{{model.f_contact}}</span>
15
+ <span class="col-sm-6">签订合同时间:{{model.f_contract_time}}</span>
16
+ <span class="col-sm-6">合同总金额:{{model.f_contract_total_money}}</span>
17
+ <span class="col-sm-12">当前回款金额:{{model.f_now_backamount}}</span>
18
+ <span class="col-sm-12">回款比例:{{model.f_repayment_ratio}}</span>
19
+ <span class="col-sm-12">合同总户数:{{model.f_contract_total_households}}</span>
20
+ <span class="col-sm-12">回款户数:{{model.f_backamount_household}}</span>
21
+ <span class="col-sm-12">用户详细地址:{{model.f_usegasren_address}}</span>
22
+ </div>
23
+ </div>
24
+ </div>
25
+ </validator>
26
+ </div>
27
+ </template>
28
+ <script>
29
+ export default {
30
+ title: '施工信息',
31
+ data () {
32
+ return {
33
+ title: '施工',
34
+ actdefid: 9,
35
+ hasError: false,
36
+ show: true,
37
+ showdef: true,
38
+ showinfo: false,
39
+ model: {
40
+ }
41
+ }
42
+ },
43
+ props: ['build'],
44
+ ready() {
45
+ this.model = Object.assign({}, this.model, this.build)
46
+ if (!this.build.f_project_startdate) {
47
+ this.model.f_project_startdate = '无'
48
+ this.model.f_project_material = '无'
49
+ this.model.f_blue_print = '无'
50
+ this.model.f_indoor_startdate = '无'
51
+ this.model.f_indoor_enddate = '无'
52
+ this.model.f_outdoors_startdate = '无'
53
+ this.model.f_outdoors_enddate = '无'
54
+ this.model.f_project_remarks = '无'
55
+ }
56
+ this.show = false
57
+ this.hasError = false
58
+ if (this.build.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.build.defname) {
75
+ return
76
+ }
77
+ if (this.actdefid > this.build.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.build = ''
90
+ this.model = ''
91
+ }
92
+ },
93
+ watch: {
94
+ 'build' () {
95
+ this.model = Object.assign({}, this.model, this.build)
96
+ this.show = false
97
+ this.hasError = false
98
+ if (this.build.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,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_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
+ <span class="col-sm-12">合同签订备注:{{model.f_contract_remarks}}</span>
19
+ </div>
20
+ </div>
21
+ </div>
22
+ </validator>
23
+ </div>
24
+ </template>
25
+ <script>
26
+ export default {
27
+ title: '合同签订信息',
28
+ data () {
29
+ return {
30
+ title: '合同签订',
31
+ actdefid: 5,
32
+ hasError: false,
33
+ show: true,
34
+ showdef: true,
35
+ showinfo: false,
36
+ model: {
37
+ }
38
+ }
39
+ },
40
+ props: ['contrat'],
41
+ ready() {
42
+ this.model = Object.assign({}, this.model, this.contrat)
43
+ if (!this.contrat.f_contract_number) {
44
+ this.model.f_contract_number = '无'
45
+ this.model.f_contract_time = '无'
46
+ this.model.f_salesman = '无'
47
+ this.model.f_gtren_unit = '无'
48
+ this.model.f_gtren_phone = '无'
49
+ this.model.f_contract_remarks = '无'
50
+ this.model.f_contract_money = '无'
51
+ this.model.f_jmhj_cost = '无'
52
+ this.model.f_advice_money = '无'
53
+ this.model.f_pay_type = '无'
54
+ this.model.f_issign = '无'
55
+ }
56
+ this.show = false
57
+ this.hasError = false
58
+ if (this.contrat.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.contrat.defname) {
75
+ return
76
+ }
77
+ if (this.actdefid > this.contrat.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.contrat = ''
90
+ this.model = ''
91
+ }
92
+ },
93
+ watch: {
94
+ 'contrat' () {
95
+ this.model = Object.assign({}, this.model, this.contrat)
96
+ this.show = false
97
+ this.hasError = false
98
+ if (this.contrat.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>