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
@@ -1,349 +0,0 @@
1
- <template>
2
- <div class="d1">
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="col-sm-12">
8
- <div class="col-sm-2 ">
9
- <label class="col-sm-4 control-label ">联系人</label>
10
- <div class="col-sm-8">
11
- <input type="text" class="form-control" placeholder='联系人' v-model="model.f_user_name"
12
- v-on:keyup.enter="search"
13
- condition="f_user_name like '%{}%'">
14
- </div>
15
- </div>
16
-
17
- <div class="col-sm-2 ">
18
- <label class="col-sm-4 control-label">报建编号</label>
19
- <div class="col-sm-8">
20
- <input type="text" class="form-control" placeholder='报建编号' v-model="model.f_phone"
21
- v-on:keyup.enter="search"
22
- condition="f_apply_num like '{}%'">
23
- </div>
24
- </div>
25
-
26
- <div class="col-sm-2 ">
27
- <label class="col-sm-4 control-label">地址</label>
28
- <div class="col-sm-8">
29
- <input type="text" class="form-control" placeholder='地址' v-model="model.f_address"
30
- v-on:keyup.enter="search"
31
- condition="f_address like '%{}%'">
32
- </div>
33
- </div>
34
-
35
- <div class="col-sm-2 ">
36
- <label class="col-sm-4 control-label">单位/小区名称</label>
37
- <div class="col-sm-8">
38
- <input type="text" class="form-control" placeholder='单位/小区名称' v-model="model.f_residential_area"
39
- v-on:keyup.enter="search"
40
- condition="f_residential_area like '%{}%'">
41
- </div>
42
- </div>
43
- <div class="col-sm-2 ">
44
- <label class="col-sm-4 control-label">用户类型</label>
45
- <div class="col-sm-8">
46
- <v-select :options="$parent.$parent.usertype"
47
- placeholder='用户类型'
48
- condition="f_user_type like '{}%'"
49
- :width="100"
50
- style="width:100%"
51
- v-model="model.f_user_type"
52
- :value.sync="model.f_user_type" close-on-select>
53
- </v-select>
54
- </div>
55
- </div>
56
-
57
- </div>
58
- <div class="col-sm-12" style="margin-top:5px;">
59
- <div class="col-sm-2">
60
- <label class="col-sm-4 control-label">流程状态</label>
61
- <div class="col-sm-8">
62
- <v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="$parent.$parent.alloptions"
63
- condition="defname = '{}'" placeholder='流程状态'
64
- v-model="model.defname" :value.sync="model.defname" close-on-select>
65
- </v-select>
66
- </div>
67
- </div>
68
- <div class="col-sm-2" >
69
- <label class="col-sm-4 control-label">业务类型</label>
70
- <div class="col-sm-8">
71
- <v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="[{label:'全部',value:''},{label:'新报装',value:'新报装'},{label:'改管',value:'改管'}]"
72
- condition="f_work_type = '{}'" placeholder='业务类型'
73
- v-model="model.f_work_type" :value.sync="model.f_work_type" close-on-select>
74
- </v-select>
75
- </div>
76
- </div>
77
- <div class="col-sm-2">
78
- <label for="startDate" class="col-sm-4 control-label">开始日期</label>
79
- <div class="col-sm-8">
80
- <datepicker @change="$dispatch('setQueryCondition',model)" id="startDate" placeholder="开始日期"
81
- style="display: block;"
82
- v-model="model.startDate"
83
- :value.sync="model.startDate"
84
- :format="'yyyy-MM-dd HH:mm:ss'"
85
- :show-reset-button="true"
86
- condition="f_apply_date >= '{}'">
87
- </datepicker>
88
- </div>
89
- </div>
90
- <div class="col-sm-2">
91
- <label for="startDate" class="col-sm-4 control-label">终止日期</label>
92
- <div class="col-sm-8">
93
- <datepicker @change="$dispatch('setQueryCondition',model)" id="endDate" placeholder="终止日期"
94
- style="display: block;"
95
- v-model="model.endDate"
96
- :value.sync="model.endDate"
97
- :format="'yyyy-MM-dd HH:mm:ss'"
98
- :show-reset-button="true"
99
- condition="f_apply_date <= '{}'">
100
- </datepicker>
101
- </div>
102
-
103
- </div>
104
- <div class="col-sm-2">
105
- <label class="col-sm-4 control-label">终止查询</label>
106
- <div class="col-sm-8">
107
- <v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="[{label:'是',value:'终止'},{label:'否',value:''}]"
108
- condition="f_sub_state = '{}'" placeholder='终止查询'
109
- v-model="model.f_sub_state" :value.sync="model.f_sub_state" close-on-select>
110
- </v-select>
111
- </div>
112
- </div>
113
- <div class="col-sm-2" style="float: left">
114
- <label class="col-sm-4 control-label">报装来源</label>
115
- <div class="col-sm-8">
116
- <v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="[{label:'全部',value:''},{label:'燃气系统',value:'燃气系统'},{label:'微信',value:'微信'}]"
117
- condition="f_apply_source = '{}'" placeholder='报装来源'
118
- v-model="model.f_apply_source" :value.sync="model.f_apply_source" close-on-select>
119
- </v-select>
120
- </div>
121
- </div>
122
- <div class="col-sm-1" style="margin-left:20px;">
123
- <button style="margin-left:5%;" class="btn btn-primary btn-sm width-80 button_spacing" type="button" @click="search(),$parent.$parent.close()">
124
- <span class="glyphicon glyphicon-search"></span>查询
125
- </button>
126
- <button class="btn-primary btn btn-sm button_spacing" @click.prevent="$parent.$parent.clear()">清空</button>
127
- </div>
128
- </div>
129
- </form>
130
- </criteria>
131
- <data-grid :model="model" partial='list' v-ref:grid class="data-grid" is-fixed='false' style="overflow-x:auto">
132
- <template partial='head'>
133
- <tr class="title">
134
- <th>
135
- <nobr>序号</nobr>
136
- </th>
137
- <th>
138
- <nobr>来源</nobr>
139
- </th>
140
- <th>
141
- <nobr>当前状态</nobr>
142
- </th>
143
- <th>
144
- <nobr>报建编号</nobr>
145
- </th>
146
- <th>
147
- <nobr>业务类型</nobr>
148
- </th>
149
- <th>
150
- <nobr>客户名称</nobr>
151
- </th>
152
- <th>
153
- <nobr>用户类型</nobr>
154
- </th>
155
- <th>
156
- <nobr>电话</nobr>
157
- </th>
158
- <th>
159
- <nobr>地址</nobr>
160
- </th>
161
- <th>
162
- <nobr>流程状态</nobr>
163
- </th>
164
- <th>
165
- <nobr>报建类型</nobr>
166
- </th>
167
- <th>
168
- <nobr>报建日期</nobr>
169
- </th>
170
- </tr>
171
- </template>
172
- <template partial='body'>
173
- <tr>
174
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
175
- <nobr>{{$index+1}}</nobr>
176
- </td>
177
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
178
- <nobr>{{row.f_apply_source}}</nobr>
179
- </td>
180
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
181
- <nobr>{{row.f_sub_state==''||!row.f_sub_state ?'未完工':row.f_sub_state}}</nobr>
182
- </td>
183
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
184
- <nobr>{{row.f_apply_num}}</nobr>
185
- </td>
186
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
187
- <nobr>{{row.f_work_type}}</nobr>
188
- </td>
189
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
190
- <nobr>{{row.f_user_name}}</nobr>
191
- </td>
192
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
193
- <nobr>{{row.f_user_type}}</nobr>
194
- </td>
195
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
196
- <nobr>{{row.f_phone}}</nobr>
197
- </td>
198
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
199
- <nobr>{{row.f_address}}</nobr>
200
- </td>
201
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
202
- <nobr>{{row.defname}}</nobr>
203
- </td>
204
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
205
- <nobr>{{row.f_apply_type}}</nobr>
206
- </td>
207
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
208
- <nobr>{{row.f_apply_date}}</nobr>
209
- </td>
210
- </tr>
211
- </template>
212
- </data-grid>
213
- </criteria-paged>
214
- </div>
215
- </div>
216
- </template>
217
- <script>
218
- import AppData from '../../../stores/AppData.js'
219
-
220
- import {
221
- PagedList
222
- } from 'vue-client'
223
- import getNowDate from '../../getNowDate.js'
224
- import {HttpResetClass} from 'vue-client'
225
- import * as Util from '../../Util'
226
- Date.prototype.Format = function (fmt) {
227
- var o = {
228
- "M+": this.getMonth() + 1, //月份
229
- "d+": this.getDate(), //日
230
- "H+": this.getHours(), //小时
231
- "m+": this.getMinutes(), //分
232
- "s+": this.getSeconds(), //秒
233
- "q+": Math.floor((this.getMonth() + 3) / 3), //季度
234
- "S": this.getMilliseconds() //毫秒
235
- };
236
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
237
- for (var k in o)
238
- if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
239
- return fmt;
240
- }
241
-
242
- export default {
243
- title: '勘探详情',
244
- data() {
245
- return {
246
- model: new PagedList('rs/sql/supervisory', 20, {
247
- data: {
248
- id: `${this.$login.f.name}`,
249
- fengongsi: `${this.$login.f.f_fengongsi}`
250
- }
251
- }),
252
- condition: '',
253
- select: '',
254
- alloptions:[]
255
- }
256
- },
257
- ready() {
258
- this.$refs.cp.$refs.cri.model.startDate = Util.toStandardDateString() + ' 00:00:00'
259
- this.$refs.cp.$refs.cri.model.endDate = Util.toStandardDateString() + ' 23:59:59'
260
- this.$refs.cp.$refs.cri.search()
261
- this.getConfig();
262
- },
263
- methods: {
264
- clear(){
265
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
266
- this.$refs.cp.$refs.cri.model[key] = []
267
- })
268
- },
269
- getapplyName(datas){
270
- console.log("开始获取所有名")
271
- let str = datas
272
- console.log("开始获取所有名"+JSON.stringify(str))
273
- let param = [];
274
- // let workflow = JSON.parse(str);
275
- param.push({label:"全部",value:""})
276
- str.activitys.forEach(function(item){
277
- let title = item.title;
278
- console.log(title)
279
- param.push({label:title,value:title});
280
- })
281
- this.alloptions = param;
282
-
283
- },
284
- async getConfig(){
285
- let http = new HttpResetClass()
286
- await http.load('POST','rs/logic/ApplyGetConfigs', {data:this.$login.f}, {resolveMsg: null, rejectMsg: null}
287
- ).then((res)=>{
288
- if(res.data.code && res.data.code == 200){
289
- this.getapplyName(res.data.workflow_vue);
290
- }else{
291
- this.$showMessage('获取报建配置失败,原因:' + res.data.msg)
292
- return
293
- }
294
- })
295
-
296
- },
297
- generateUUID() {
298
- var d = new Date().getTime()
299
- var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
300
- var r = (d + Math.random() * 16) % 16 | 0
301
- d = Math.floor(d / 16)
302
- return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16)
303
- })
304
- return uuid
305
- },
306
- check(val) {
307
- val.appid=val.id
308
- this.$dispatch('check', val)
309
- },
310
- close() {
311
- this.$dispatch('close')
312
- },
313
- compare(val) {
314
- val === '完工'
315
- console.log('完工', val)
316
- return false
317
- }
318
- },
319
- computed: {
320
- date() {
321
- return getNowDate()
322
- },
323
- selected() {
324
- return this.$refs.cp.$refs.grid.selected
325
- },
326
- usertype() {
327
- return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
328
- },
329
- defnameType() {
330
- return [{label: '全部', value: ''}, ...this.$appdata.getParam('流程状态')]
331
- },
332
- applytype() {
333
- return [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')]
334
- }
335
- }
336
- }
337
- </script>
338
- <style>
339
- label {
340
- display: flex;
341
- justify-content:center;
342
- align-items:Center;
343
- padding-top: 8px;
344
- }
345
- tr.title {
346
- background-color: #6666ff;
347
- }
348
-
349
- </style>
@@ -1,280 +0,0 @@
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
- <div class="col-sm-2">
9
- <label class="col-sm-4 control-label ">联系人</label>
10
- <div class="col-sm-8">
11
- <input type="text" class="form-control" v-model="model.f_user_name" v-on:keyup.enter="search"
12
- condition="u.f_user_name like '{}%'" placeholder="联系人">
13
- </div>
14
- </div>
15
- <div class="col-sm-2">
16
- <label class="col-sm-4 control-label ">项目名称</label>
17
- <div class="col-sm-8">
18
- <input type="text" class="form-control" v-model="model.f_entry_name" v-on:keyup.enter="search"
19
- condition="u.f_entry_name like '{}%'" placeholder="项目名称">
20
- </div>
21
- </div>
22
- <div class="col-sm-2">
23
- <label class="col-sm-4 control-label ">报建编号</label>
24
- <div class="col-sm-8">
25
- <input type="text" class="form-control" v-model="model.f_apply_num" v-on:keyup.enter="search"
26
- condition="u.f_apply_num like '{}%'" placeholder="报建编号">
27
- </div>
28
- </div>
29
-
30
- <div class="col-sm-2">
31
- <label class="col-sm-4 control-label ">小区</label>
32
- <div class="col-sm-8">
33
- <input type="text" class="form-control" v-model="model.f_residential_area" v-on:keyup.enter="search"
34
- condition="f_residential_area like '{}%'" placeholder="小区">
35
- </div>
36
- </div>
37
- <div class="col-sm-2 ">
38
- <label class="col-sm-4 control-label ">开始日期</label>
39
- <div class="col-sm-8">
40
- <datepicker @change="$dispatch('setQueryCondition',model)" id="startDate" placeholder="开始日期"
41
- style="display: block"
42
- v-model="model.startDate"
43
- :value.sync="model.startDate"
44
- :format="'yyyy-MM-dd HH:mm:ss'"
45
- :show-reset-button="true"
46
- condition="u.f_apply_date >= '{}'">
47
- </datepicker>
48
- </div>
49
- </div>
50
- </div>
51
- <div class="row" style="margin-top:5px;">
52
- <div class="col-sm-2">
53
- <label class="col-sm-4 control-label ">终止日期</label>
54
- <div class="col-sm-8">
55
- <datepicker @change="$dispatch('setQueryCondition',model)" id="endDate" placeholder="终止日期"
56
- style="display: block"
57
- v-model="model.endDate"
58
- :value.sync="model.endDate"
59
- :format="'yyyy-MM-dd HH:mm:ss'"
60
- :show-reset-button="true"
61
- condition="u.f_apply_date <= '{}'">
62
- </datepicker>
63
- </div>
64
- </div>
65
-
66
- <div class="col-sm-2">
67
- <label class="col-sm-4 control-label ">用户类型</label>
68
- <div class="col-sm-8">
69
- <v-select :options="$parent.$parent.usertype" placeholder='用户类型' condition="f_user_type like '{}'"
70
- :width="100" style="width:100%"
71
- v-model="model.f_user_type" :value.sync="model.f_user_type" close-on-select>
72
- </v-select>
73
- </div>
74
- </div>
75
-
76
- <div class="col-sm-2">
77
- <label class="col-sm-4 control-label ">报建类型</label>
78
- <div class="col-sm-8">
79
- <v-select :options="$parent.$parent.applytype" placeholder='报建类型' condition="f_apply_type like '{}%'"
80
- :width="100"
81
- v-model="model.f_apply_type" :value.sync="model.f_apply_type" style="width: 100%" close-on-select>
82
- </v-select>
83
- </div>
84
- </div>
85
- <div class="col-sm-4">
86
- <button class="btn btn-primary btn-sm" type="button" @click="search(),$parent.$parent.showpager()" style="margin-left:10%">
87
- <span class="glyphicon glyphicon-search"></span>查询</button>
88
- <button class="btn-primary btn btn-sm" @click.prevent="$parent.$parent.clear()">清空</button>
89
- </div>
90
- </div>
91
-
92
- </form>
93
- </criteria>
94
- <data-grid :model="model" partial='list' v-ref:grid class="list_area" is-fixed='false'>
95
- <template partial='head'>
96
- <tr class="title">
97
- <th>
98
- <nobr>序号</nobr>
99
- </th>
100
- <th>
101
- <nobr>项目名称</nobr>
102
- </th>
103
- <th>
104
- <nobr>终止流程</nobr>
105
- </th>
106
- <th>
107
- <nobr>报建编号</nobr>
108
- </th>
109
- <th>
110
- <nobr>联系人</nobr>
111
- </th>
112
- <th>
113
- <nobr>小区</nobr>
114
- </th>
115
- <th v-if="!this.$login.f.f_fengongsi.includes('中燃')">
116
- <nobr>用户类型</nobr>
117
- </th>
118
- <th>
119
- <nobr>报建类型</nobr>
120
- </th>
121
- <th>
122
- <nobr>报建日期</nobr>
123
- </th>
124
- <th>
125
- <nobr>终止日期</nobr>
126
- </th>
127
- <th>
128
- <nobr>项目状态</nobr>
129
- </th>
130
- <th>
131
- <nobr>终止人</nobr>
132
- </th>
133
- <th>
134
- <nobr>终止原因</nobr>
135
- </th>
136
- </tr>
137
- </template>
138
- <template partial='body'>
139
- <tr>
140
- <td style="text-align: center;">
141
- <nobr>{{$index+1}}</nobr>
142
- </td>
143
- <td style="text-align: center;">
144
- <nobr>{{row.f_entry_name}}</nobr>
145
- </td>
146
- <td style="text-align: center;">
147
- <nobr>{{row.f_apply_num}}</nobr>
148
- </td>
149
- <td style="text-align: center;">
150
- <nobr>{{row.defname}}</nobr>
151
- </td>
152
- <td style="text-align: center;">
153
- <nobr>{{row.f_user_name}}</nobr>
154
- </td>
155
-
156
- <td style="text-align: center;">
157
- <nobr>{{row.f_residential_area}}</nobr>
158
- </td>
159
- <td style="text-align: center;" v-if="!this.$login.f.f_fengongsi.includes('中燃')">
160
- <nobr>{{row.f_user_type}}</nobr>
161
- </td>
162
- <td style="text-align: center;">
163
- <nobr>{{row.f_apply_type}}</nobr>
164
- </td>
165
- <td style="text-align: center;">
166
- <nobr>{{row.f_apply_date}}</nobr>
167
- </td>
168
- <td style="text-align: center;">
169
- <nobr>{{row.f_date}}</nobr>
170
- </td>
171
- <td style="text-align: center;">
172
- <nobr>{{row.f_sub_state}}</nobr>
173
- </td>
174
- <td style="text-align: center;">
175
- <nobr>{{row.f_operator}}</nobr>
176
- </td>
177
- <td style="text-align: center;">
178
- <nobr><button @click="$parent.$parent.$parent.stopinfoshow($index)">查看终止原因</button></nobr>
179
- </td>
180
-
181
- </tr>
182
- </template>
183
- </data-grid>
184
- </criteria-paged>
185
- </div>
186
- <modal :show.sync="showstopinfoflag" v-ref:modal backdrop="false">
187
- <header slot="modal-header" class="modal-header">
188
- <button type="button" class="close" @click="closestopinfo"><span>&times;</span></button>
189
- <h4 class="modal-title">终止原因</h4>
190
- </header>
191
- <article slot="modal-body" class="modal-body">
192
- <p >{{stopremarks}}</p>
193
- </article>
194
- <footer slot="modal-footer" class="modal-footer">
195
- </footer>
196
- </modal>
197
- </div>
198
- </template>
199
- <script>
200
- Date.prototype.Format = function (fmt) {
201
- var o = {
202
- "M+": this.getMonth() + 1, //月份
203
- "d+": this.getDate(), //日
204
- "H+": this.getHours(), //小时
205
- "m+": this.getMinutes(), //分
206
- "s+": this.getSeconds(), //秒
207
- "q+": Math.floor((this.getMonth() + 3) / 3), //季度
208
- "S": this.getMilliseconds() //毫秒
209
- };
210
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
211
- for (var k in o)
212
- if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
213
- return fmt;
214
- }
215
- import {
216
- PagedList
217
- } from 'vue-client'
218
- import * as Util from '../../Util'
219
-
220
- export default {
221
- title: '报建终止查询',
222
- data() {
223
- return {
224
- usertype: this.$appdata.getParam('用户类型'),
225
- defnameType: this.$appdata.getParam('流程状态'),
226
- applytype: this.$appdata.getParam('报建类型'),
227
- //中燃 专用
228
- fapplytype: this.$appdata.getParam('用户类型'),
229
- showbtn: false,
230
- model: new PagedList('rs/sql/checkuserStop', 20, {
231
- data: {
232
- id: this.$login.f.id,
233
- fengongsi: this.$login.f.f_fengongsi
234
- }
235
- }),
236
- condition: '',
237
- showstopinfoflag:false,
238
- stopremarks:""
239
- }
240
- },
241
- ready() {
242
- this.$refs.cp.$refs.cri.model.startDate = Util.toStandardDateString() + ' 00:00:00'
243
- this.$refs.cp.$refs.cri.model.endDate = Util.toStandardDateString() + ' 23:59:59'
244
- this.$refs.cp.$refs.cri.search()
245
- },
246
- methods: {
247
- clear(){
248
- this.$refs.cp.$refs.cri.model = {}
249
- },
250
- stopinfoshow(index){
251
- this.showstopinfoflag = true;
252
- let remakrs = this.model.rows[index].f_stop_remarks;
253
- console.log(JSON.stringify(remakrs))
254
- console.log(remakrs)
255
-
256
- this.stopremarks= remakrs;
257
- },
258
- clifun(row) {
259
- this.$refs.cp.$refs.grid.model.rows = [row]
260
- this.$refs.cp.pager = false
261
- this.$dispatch('showbtn', row)
262
- },
263
- showpager() {
264
- this.$refs.cp.pager = true
265
- this.$dispatch('hiddenbtn')
266
- },
267
- closestopinfo(){
268
- this.showstopinfoflag = close;
269
- }
270
- }
271
- }
272
- </script>
273
- <style scoped>
274
- label {
275
- display: flex;
276
- justify-content:center;
277
- align-items:Center;
278
- padding-top: 8px;
279
- }
280
- </style>