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,232 @@
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="col-sm-10">
8
+ <div class="col-sm-2">
9
+ <div class="col-sm-11">
10
+ <input type="text" class="form-control" v-model="model.f_user_name" v-on:keyup.enter="search"
11
+ condition="f_user_name like '{}%'" placeholder="用户姓名">
12
+ </div>
13
+ </div>
14
+ <div class="col-sm-2">
15
+ <div class="col-sm-11">
16
+ <input type="text" class="form-control" v-model="model.f_apply_num" v-on:keyup.enter="search"
17
+ condition="f_apply_num like '{}%'" placeholder="报建编号">
18
+ </div>
19
+ </div>
20
+ <!-- <div class="col-sm-2">
21
+ <label for="f_user_name" class="col-sm-6"><nobr> 地址:</nobr></label>
22
+ <div class="col-sm-6">
23
+ <input type="text" class="form-control" v-model="model.f_address" v-on:keyup.enter="search"
24
+ condition="f_address like '{}%'" >
25
+ </div>
26
+ </div> -->
27
+ <div class="col-sm-2">
28
+ <!--<label for="f_user_name" class="col-sm-6"><nobr> 小区:</nobr></label>-->
29
+ <div class="col-sm-11">
30
+ <input type="text" class="form-control" v-model="model.f_residential_area" v-on:keyup.enter="search"
31
+ condition="f_residential_area like '{}%'" placeholder="小区">
32
+ </div>
33
+ </div>
34
+ <div class="col-sm-2">
35
+ <!--<label for="f_user_name" class="col-sm-6"><nobr> 用户类型:</nobr></label>-->
36
+ <div class="col-sm-11" v-if="this.$login.f.f_fengongsi.includes('西昌')">
37
+ <v-select :options="$parent.$parent.fapplytype" placeholder='用户类型' condition="f_user_type like '{}%'"
38
+ v-model="model.f_apply_type" :value.sync="model.f_apply_type" close-on-select>
39
+ </v-select>
40
+ </div>
41
+ <div class="col-sm-11" v-else>
42
+ <v-select :options="$parent.$parent.usertype" placeholder='用户类型' condition="f_user_type like '{}%'"
43
+ v-model="model.f_user_type" :value.sync="model.f_user_type" close-on-select>
44
+ </v-select>
45
+ </div>
46
+ </div>
47
+ <!--<div class="col-sm-2">-->
48
+ <!--&lt;!&ndash;<label for="f_user_type" class="col-sm-6"><nobr> 流程状态:</nobr></label>&ndash;&gt;-->
49
+ <!--<div class="col-sm-12">-->
50
+ <!--<v-select :options="$parent.$parent.defnameType" placeholder='流程状态'-->
51
+ <!--condition="act.defname like '%{}%'"-->
52
+ <!--v-model="model.defname" :value.sync="model.defname" close-on-select>-->
53
+ <!--</v-select>-->
54
+ <!--</div>-->
55
+ <!--</div>-->
56
+ <div class="col-sm-2">
57
+ <!--<label for="f_apply_type" class="col-sm-6"><nobr> 报装类型:</nobr></label>-->
58
+ <div class="col-sm-6">
59
+ <v-select :options="$parent.$parent.applytype" placeholder='报装类型' condition="f_apply_type like '{}%'"
60
+ v-model="model.f_apply_type" :value.sync="model.f_apply_type" close-on-select>
61
+ </v-select>
62
+ </div>
63
+ </div>
64
+ </div>
65
+
66
+ <div class="col-sm-2">
67
+ <center>
68
+ <div class="col-sm-10 pull-right">
69
+ <button class="btn btn-primary btn-sm" type="button" @click="search(),$parent.$parent.showpager()">
70
+ <span class="glyphicon glyphicon-search"></span>查询</button>
71
+ </div>
72
+ </center>
73
+ </div>
74
+ </form>
75
+ </criteria>
76
+ <data-grid :model="model" partial='list' v-ref:grid class="data-grid" is-fixed='false' style="overflow-x:auto">
77
+ <template partial='head'>
78
+ <tr class="title">
79
+ <th>
80
+ <nobr>序号</nobr>
81
+ </th>
82
+ <th>
83
+ <nobr>当前状态</nobr>
84
+ </th>
85
+ <th>
86
+ <nobr>用户姓名</nobr>
87
+ </th>
88
+ <th>
89
+ <nobr>小区</nobr>
90
+ </th>
91
+ <th v-if="!this.$login.f.f_fengongsi.includes('西昌')">
92
+ <nobr>用户类型</nobr>
93
+ </th>
94
+ <th>
95
+ <nobr>流程状态</nobr>
96
+ </th>
97
+ <th>
98
+ <nobr>报建日期</nobr>
99
+ </th>
100
+ <th>
101
+ <nobr>申请户数</nobr>
102
+ </th>
103
+ <th>
104
+ <nobr>操作</nobr>
105
+ </th>
106
+ </tr>
107
+ </template>
108
+ <template partial='body'>
109
+ <tr>
110
+ <td style="text-align: center;">
111
+ <nobr>{{$index+1}}</nobr>
112
+ </td>
113
+ <td style="text-align: center;">
114
+ <nobr>{{row.defname}}</nobr>
115
+ </td>
116
+ <td style="text-align: center;">
117
+ <nobr>{{row.f_user_name}}</nobr>
118
+ </td>
119
+ <td style="text-align: center;">
120
+ <nobr>{{row.f_residential_area}}</nobr>
121
+ </td>
122
+ <td style="text-align: center;" v-if="!this.$login.f.f_fengongsi.includes('西昌')">
123
+ <nobr>{{row.f_user_type}}</nobr>
124
+ </td>
125
+ <td style="text-align: center;">
126
+ <nobr>{{row.defname}}</nobr>
127
+ </td>
128
+ <td style="text-align: center;">
129
+ <nobr>{{row.f_apply_date}}</nobr>
130
+ </td>
131
+ <td style="text-align: center;">
132
+ <nobr>{{row.f_apply_count}}</nobr>
133
+ </td>
134
+ <td style="text-align: center;">
135
+ <dropdown v-if="row.defname != '完工'">
136
+ <button type="button" data-toggle="dropdown" style="border: 0px;background: none;">
137
+ <span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
138
+ </button>
139
+ <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
140
+ <!--<li v-if="$parent.$parent.$parent.judge(row)">-->
141
+ <!--<a href="#" @click="$parent.$parent.$parent.$parent.reducefee(row)">费用减免</a>-->
142
+ <!--</li>-->
143
+ <li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
144
+ <a href="#" @click="$parent.$parent.$parent.$parent.updatefee(row)">费用变更</a>
145
+ </li>
146
+ <li v-if="$parent.$parent.$parent.judge(row)&&$parent.$parent.$parent.$login.f.f_fengongsi.includes('彩虹')&&!row.f_apply_type.includes('个')">
147
+ <a href="#" @click="$parent.$parent.$parent.$parent.instalfee(row,'预付扣款')">预付扣款</a>
148
+ </li>
149
+ <li v-if="$parent.$parent.$parent.judge(row)&&row.defname.includes('合同签订')||row.defname.includes('材料计划')
150
+ ||row.defname.includes('材料审核')||row.defname.includes('施工报建')||row.defname.includes('竣工验收') ||row.defname.includes('工程施工任务书')||row.defname.includes('资料移交')||row.defname.includes('通气点火')
151
+ " >
152
+ <a v-else href="#" @click="$parent.$parent.$parent.$parent.instalfee(row,'报建收费')">报建收费</a>
153
+ </li>
154
+ <li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
155
+ <a href="#" @click="$parent.$parent.$parent.$parent.bill(row)">打印票据</a>
156
+ </li>
157
+ <li v-if="$parent.$parent.$parent.judge(row)" v-show="!this.$login.f.f_fengongsi.includes('西昌')">
158
+ <a href="#" @click="$parent.$parent.$parent.$parent.contract(row)">补充协议</a>
159
+ </li>
160
+ <li v-if="$parent.$parent.$parent.judge(row) && $parent.$parent.$parent.$login.f.f_fengongsi.includes('彩虹')">
161
+ <a href="#" @click="$parent.$parent.$parent.$parent.preparation(row)">预付款</a>
162
+ </li>
163
+ <li>
164
+ <a href="#" @click="$parent.$parent.$parent.$parent.stopInstall(row)">终止报建</a>
165
+ </li>
166
+ </ul>
167
+ </dropdown>
168
+ </td>
169
+ </tr>
170
+ </template>
171
+ </data-grid>
172
+ </criteria-paged>
173
+ </div>
174
+ </div>
175
+ </template>
176
+ <script>
177
+ import {
178
+ PagedList
179
+ } from 'vue-client'
180
+
181
+ export default {
182
+ title: '报建业务信息',
183
+ data() {
184
+ return {
185
+ usertype: this.$appdata.getParam('用户类型'),
186
+ defnameType: this.$appdata.getParam('流程状态'),
187
+ applytype: this.$appdata.getParam('报装类型'),
188
+ //西昌 专用
189
+ fapplytype: this.$appdata.getParam('用户类型'),
190
+ arr: ['报建登记', '现场勘探', '设计出图'],
191
+ showbtn: false,
192
+ model: new PagedList('rs/sql/checkuserfunction', 20, {
193
+ data: {
194
+ id: this.$login.f.id,
195
+ fengongsi: this.$login.f.f_fengongsi
196
+ }
197
+ }),
198
+ condition: ''
199
+ }
200
+ },
201
+ ready() {
202
+ this.$refs.cp.$refs.cri.search()
203
+ },
204
+ methods: {
205
+ judge(row) {
206
+ // let flag = false
207
+ // if (!this.arr.includes(row.defname)) {
208
+ // if ((!row.f_actualfee) || (!row.f_total_fee)) { //至少一个不存在
209
+ // flag = true
210
+ // } else { // 两个都存在
211
+ // if (row.f_actualfee < row.f_total_fee) {
212
+ // flag = true
213
+ // } else {
214
+ // flag = false
215
+ // }
216
+ // }
217
+ // }
218
+ let flag = true
219
+ return flag
220
+ },
221
+ clifun(row) {
222
+ this.$refs.cp.$refs.grid.model.rows = [row]
223
+ this.$refs.cp.pager = false
224
+ this.$dispatch('showbtn', row)
225
+ },
226
+ showpager() {
227
+ this.$refs.cp.pager = true
228
+ this.$dispatch('hiddenbtn')
229
+ }
230
+ }
231
+ }
232
+ </script>
@@ -153,7 +153,7 @@
153
153
  'title': '用户档案',
154
154
  data () {
155
155
  return {
156
- model: new PagedList('rs/sql/singleTable_OrderBy', 30, {items: '"*"', tablename: '"t_userinfo"', orderitem: '"CONVERT(bigint,f_userinfo_id) desc"'}),
156
+ model: new PagedList('rs/sql/singleTable_OrderBy', 30, {items: '"*"', tablename: '"t_userinfo"', orderitem: '"CONVERT(int,f_userinfo_id) desc"'}),
157
157
  row: null, // 选择一条用户信息,对其进行修改
158
158
  arearow: null, // 新建修改小区使用的数据小区使用
159
159
  areainfo: null, // 小区批量建档使用的数据
@@ -0,0 +1,242 @@
1
+ <template>
2
+ <div class="auto select-overspread">
3
+ <div class="panel panel-info">
4
+ <div class="panel-heading">
5
+ <h3 class="panel-title">施工</h3>
6
+ </div>
7
+ </div>
8
+ <validator name="v">
9
+ <form class="form-horizontal">
10
+ <div class="col-sm-4 form-group">
11
+ <label class="control-label col-sm-6">实际开工日期</label>
12
+ <div class="col-sm-6">
13
+ <datepicker width="600.76px;"
14
+ :value.sync="model.f_project_startdate"
15
+ :format="'yyyy-MM-dd'"
16
+ v-model="model.f_project_startdate" readonly="readonly"
17
+ :show-reset-button="reset">
18
+ </datepicker>
19
+ </div>
20
+ </div>
21
+ <!--<div class="col-sm-4 form-group" :class="[$v.pprincipal.required ? 'has-error select-error': '']">-->
22
+ <!--<label class="control-label col-sm-6">工程负责人:</label>-->
23
+ <!--<div class="col-sm-6">-->
24
+ <!--<v-select :is-all-line="true" :value.sync="model.f_project_principal" v-model="model.f_project_principal" v-ref:pprincipal-->
25
+ <!--:options='fprojectprincipal' placeholder="全部" close-on-select></v-select>-->
26
+ <!--</div>-->
27
+ <!--</div>-->
28
+ <div class="col-sm-4 form-group">
29
+ <label class="control-label col-sm-6">工程负责人:</label>
30
+ <div class="col-sm-6">
31
+ <input class="form-control" type="text" v-model="model.f_project_principal" readonly/>
32
+ <!--<v-select :is-all-line="true" style="hight:200px" :value.sync="model.f_project_principal" v-model="model.f_project_principal" v-ref:pprincipal-->
33
+ <!--:options='fprojectprincipal' placeholder="全部" close-on-select></v-select>-->
34
+ </div>
35
+ </div>
36
+ <div class="col-sm-12"></div>
37
+ <div class="col-sm-4 form-group">
38
+ <div class="col-sm-5"></div>
39
+ <div class="col-sm-5">
40
+ <input type="checkbox" class="" id="checkbox" v-model="model.f_indoor_project" v-validate:f_indoor_project='{required: true }'/>
41
+ <label for="checkbox" class="font-size" :class="[$v.f_indoor_project.required ? 'text-danger' : '']">户内工程</label>
42
+ </div>
43
+ </div>
44
+ <div class="col-sm-4 form-group">
45
+ <label class="control-label col-sm-4">户内开工日期:</label>
46
+ <div class="col-sm-6">
47
+ <datepicker width="600.76px;"
48
+ :value.sync="model.f_indoor_startdate"
49
+ :format="'yyyy-MM-dd'"
50
+ v-model="model.f_indoor_startdate" readonly="readonly"
51
+ :show-reset-button="reset">
52
+ </datepicker>
53
+ </div>
54
+ </div>
55
+ <div class="col-sm-4 form-group">
56
+ <label class="control-label col-sm-4">户内完工日期:</label>
57
+ <div class="col-sm-6">
58
+ <datepicker width="600.76px;"
59
+ :value.sync="model.f_indoor_enddate"
60
+ :format="'yyyy-MM-dd'" readonly="readonly"
61
+ v-model="model.f_indoor_enddate"
62
+ :show-reset-button="reset">
63
+ </datepicker>
64
+ </div>
65
+ </div>
66
+ <div class="col-sm-4 form-group">
67
+ <div class="col-sm-5"></div>
68
+ <div class="col-sm-5">
69
+ <input type="checkbox" class="" id="checkbox2" v-model="model.f_outdoors_project" v-validate:f_outdoors_project='{required: true }'>
70
+ <label for="checkbox2" class="font-size" :class="[$v.f_outdoors_project.required ? 'text-danger' : '']">庭院工程</label>
71
+ </div>
72
+ </div>
73
+ <div class="col-sm-4 form-group">
74
+ <label class="control-label col-sm-4">庭院开工日期:</label>
75
+ <div class="col-sm-6">
76
+ <datepicker width="600.76px;"
77
+ :value.sync="model.f_outdoors_startdate"
78
+ :format="'yyyy-MM-dd'"
79
+ v-model="model.f_outdoors_startdate" readonly="readonly"
80
+ :show-reset-button="reset">
81
+ </datepicker>
82
+ </div>
83
+ </div>
84
+ <div class="col-sm-4 form-group">
85
+ <label class="control-label col-sm-4">庭院完工日期:</label>
86
+ <div class="col-sm-6">
87
+ <datepicker width="600.76px;"
88
+ :value.sync="model.f_outdoors_enddate"
89
+ :format="'yyyy-MM-dd'"
90
+ v-model="model.f_outdoors_enddate" readonly="readonly"
91
+ :show-reset-button="reset">
92
+ </datepicker>
93
+ </div>
94
+ </div>
95
+ <div class="col-sm-12 form-group">
96
+ <label class="control-label col-sm-2">施工备注:</label>
97
+ <div class="col-sm-9">
98
+ <textarea class="form-control" rows="3" v-model="model.f_project_remarks"></textarea>
99
+ </div>
100
+ </div>
101
+ <div class="form-group col-sm-6">
102
+ <label class=" col-sm-4 control-label" for="f_filiale">分公司:</label>
103
+ <div class="col-sm-5" id="f_filiale">
104
+ <input class="form-control" type="text" v-model="model.f_filiale" disabled>
105
+ </div>
106
+ </div>
107
+ <div class="col-sm-6 form-group">
108
+ <label class="control-label col-sm-4">操作日期:</label>
109
+ <div class="col-sm-5">
110
+ <input type="text" class="form-control" disabled v-model="model.f_project_date"/>
111
+ </div>
112
+ </div>
113
+ <div class="col-sm-6 form-group">
114
+ <label class="control-label col-sm-4">部门:</label>
115
+ <div class="col-sm-5">
116
+ <input type="text" class="form-control" disabled v-model="model.f_project_department"/>
117
+ </div>
118
+ </div>
119
+ <div class="col-sm-6 form-group">
120
+ <label class="control-label col-sm-4">操作人:</label>
121
+ <div class="col-sm-5">
122
+ <input type="text" class="form-control" disabled v-model="model.f_project_operator"/>
123
+ </div>
124
+ </div>
125
+ </form>
126
+ </validator>
127
+ <div class="from-group col-sm-12">
128
+ <center>
129
+ <button type="button" @click="confirm()" class="btn btn-primary" style="width:80px; margin-left:50px;">
130
+ 保存
131
+ </button>
132
+ <button type="button" @click="commit()" class="btn btn-primary" style="width:80px; margin-left:50px;">
133
+ 提交
134
+ </button>
135
+ <button type="button" @click="back()" class="btn btn-warning" style="width:80px; margin-left:50px;">
136
+ 退回
137
+ </button>
138
+ </center>
139
+ </div>
140
+ </div>
141
+ </template>
142
+ <script>
143
+ import co from 'co'
144
+ import {HttpResetClass} from 'vue-client'
145
+ import * as Util from '../../../Util'
146
+ let gen = function * (self, val) {
147
+ val.f_sub_state = ''
148
+ val.f_temp_date = Util.toStandardTimeString()
149
+ let data ={
150
+ tablename:'t_apply',
151
+ parameters:val
152
+ }
153
+ yield self.$resetpost('rs/logic/save', {data:data})
154
+ data = {
155
+ model: {
156
+ f_processid: self.selectdata.f_process_id,
157
+ },
158
+ loginUser: {
159
+ id:self.$login.f.id,
160
+ name: self.$login.f.name,
161
+ ename: self.$login.f.ename
162
+ },
163
+ subdep: '提交'
164
+ }
165
+ self.$resetpost(`rs/logic/buildjobnext`,
166
+ {data: data})
167
+ .then(() => {
168
+ self.reset()
169
+ })
170
+ }
171
+ export default {
172
+ title: '施工',
173
+ data () {
174
+ return {
175
+ fprojectprincipal: this.$appdata.getParam('工程负责人'),
176
+ model: {
177
+ actid: ''
178
+ }
179
+ }
180
+ },
181
+ props: ['selectdata'],
182
+ ready () {
183
+ this.$nextTick(() => {
184
+ this.model = Object.assign({}, this.model, this.selectdata)
185
+ this.model.f_project_date = this.$login.toStandardDateString(),
186
+ this.model.f_project_department = this.$login.f.f_parentname,
187
+ this.model.f_project_operator = this.$login.f.name
188
+ })
189
+ },
190
+ methods: {
191
+ back() {
192
+
193
+ let data = {
194
+ model: {
195
+ f_processid: this.selectdata.f_process_id,
196
+ },
197
+ loginUser: {
198
+ id: this.$login.f.id,
199
+ name: this.$login.f.name,
200
+ ename: this.$login.f.ename
201
+ },
202
+ subdep: '退回'
203
+ }
204
+ this.$resetpost(`rs/logic/buildjobnext`,
205
+ {data: data})
206
+ .then(() => {
207
+ this.reset()
208
+ })
209
+ },
210
+ async confirm() {
211
+ let http = new HttpResetClass()
212
+ // this.model.f_sub_state = '完成'
213
+ let data ={
214
+ tablename:'t_apply',
215
+ parameters:this.model
216
+ }
217
+ await http.load('POST','rs/logic/save', {data:data})
218
+ .then(() => {
219
+ this.reset()
220
+ })
221
+ },
222
+ commit () {
223
+ let getGen = gen(this, this.model)
224
+ co(getGen)
225
+ },
226
+ reset () {
227
+ this.$dispatch('close')
228
+ this.$dispatch('selfsearch')
229
+ }
230
+ },
231
+ watch: {
232
+ 'selectdata'() {
233
+ this.$nextTick(() => {
234
+ this.model = Object.assign({}, this.model, this.selectdata)
235
+ this.model.f_project_date = this.$login.toStandardDateString(),
236
+ this.model.f_project_department = this.$login.f.f_parentname,
237
+ this.model.f_project_operator = this.$login.f.name
238
+ })
239
+ }
240
+ }
241
+ }
242
+ </script>