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
@@ -5,7 +5,7 @@
5
5
  <div class="row auto">
6
6
  <div class="col-xs-12 col-sm-6 col-md-6 form-input-group mg8">
7
7
  <label class="text-justify lb-left" for="f_install_num">实际可安装用户:</label>
8
- <input type="number" class="form-control" id="f_install_num" v-model="model.f_install_num" >
8
+ <input type="text" class="form-control" id="f_install_num" v-model="model.f_install_num" >
9
9
  </div>
10
10
  <div class="col-xs-12 col-sm-6 col-md-6 form-input-group" >
11
11
  <label class="text-justify lb-left" for="costmatter">缴费户数:</label>
@@ -74,8 +74,6 @@
74
74
  </div>
75
75
  </div>
76
76
  </validator>
77
-
78
-
79
77
  </div>
80
78
  </template>
81
79
  <script>
@@ -16,7 +16,7 @@
16
16
  </li>
17
17
  </div>
18
18
  <div class="col-sm-12 col-xs-12 repair-bg" v-show="routeShow">
19
- <route name='apply' :reuse="false"></route>
19
+ <route name='apply' :reuse="true"></route>
20
20
  </div>
21
21
  <div>
22
22
  <li v-for="(key, value) in tabs" @click="tabSelect(key,$index)" :class="{active1: key === componentName}"
@@ -35,10 +35,9 @@
35
35
  <script>
36
36
  import ApplyUserInfo from "./ApplyUserInfo";
37
37
  import ApplyInfo from "./ApplyInfo";
38
- // import FieldExploration from "./FieldExploration";
39
- // import Ventilation from "./Ventilation";
40
- // import Acceptance from "./Acceptance";
41
- import ServiceControl from "./ServiceControl";
38
+ import FieldExploration from "./FieldExploration";
39
+ import Ventilation from "./Ventilation";
40
+ import Acceptance from "./Acceptance";
42
41
 
43
42
  export default {
44
43
  title: '报建代办详情',
@@ -65,7 +64,7 @@
65
64
  return {
66
65
  routeShow:true,
67
66
  number:0,
68
- // shupingshow:false,
67
+ shupingshow:false,
69
68
  pipeline: {},
70
69
  componentName: 'apply-user-info',
71
70
  tabs: {
@@ -75,12 +74,9 @@
75
74
  },
76
75
  'apply-info': {
77
76
  header: '流程信息', class: 'apply-info-class', props: null
78
- },
79
- 'apply-defame-work': {
80
- header: null, class: 'apply-info-class', props: null
81
77
  }
82
78
  },
83
- // actName: this.$appdata.getParam('用气类型'), // 报建app需提取的流程名称
79
+ actName: this.$appdata.getParam('用气类型'), // 报建app需提取的流程名称
84
80
  faultshow: 8 // 控制 故障汇总 在 菜单里显示与否
85
81
  }
86
82
  },
@@ -104,7 +100,6 @@
104
100
  // 选择tab
105
101
  tabSelect (name,number) {
106
102
  this.number = number
107
- this.tabs[name].props = null
108
103
  // 处理关闭/显示 内容
109
104
  if(this.componentName == name && !this.routeShow ){
110
105
  this.routeShow = true
@@ -114,53 +109,69 @@
114
109
  this.routeShow = true
115
110
  }
116
111
  this.componentName = name
117
- console.log('name=>' + name)
118
- if(name == 'apply-user-info' || name == 'apply-info'){
119
- this.tabs[name].props = {service: this.row, shutype: 'shu'}
120
- }else{
121
- this.row.defname = this.row.f_order_type
122
- // this.row.fields = new Array()
123
- // this.row.buttons = new Array()
124
- this.tabs[name].props = {selectdata: this.row}
125
- }
126
- console.log('即将goto=>' + name + ',props:' + JSON.stringify(this.tabs[name].props))
112
+
127
113
  this.$goto(name, this.tabs[name].props, 'apply')
128
- // this.shupingshow = true
114
+ this.shupingshow = true
129
115
  },
130
116
  setProps() {
131
117
  // 给各自组件添加参数
132
118
  this.tabs['apply-user-info'].props = {service: this.row, shutype: 'shu'}
133
- // this.tabs['apply-info'].props = {service: this.row, shutype: 'shu'}
134
- // this.tabs['apply-defame-work'].props = {model: this.row, shutype: 'shu'}
119
+ this.tabs['apply-info'].props = {service: this.row, shutype: 'shu'}
120
+ if(this.row.f_order_type.indexOf('勘探') != -1){
121
+ this.tabs['fieldexploration'].props = {model: this.row, shutype: 'shu'}
122
+ }
123
+ if(this.row.f_order_type.indexOf('验收')!= -1){
124
+ this.tabs['acceptance'].props = {model: this.row, shutype: 'shu'}
125
+ }
126
+ if(this.row.f_order_type.indexOf('通气')!= -1){
127
+ this.tabs['ventilation'].props = {model: this.row, shutype: 'shu'}
128
+ }
129
+
130
+ // pc模拟测试用
131
+ // this.tabs['fieldexploration'].props = {model: this.row, shutype: 'shu'}
135
132
 
133
+ // 参数设置成功,在转向第一个页签
134
+ console.log("this.tabs[name].props",this.tabs['apply-user-info'].props)
136
135
  this.$goto('apply-user-info', this.tabs[this.componentName].props, 'apply')
137
136
  },
138
137
  },
139
138
  ready () {
140
- var keyName = 'apply-defame-work'
141
- var valueHeader = this.row.f_order_type
142
- var value = {
139
+ let keyName
140
+ let valueHeader
141
+
142
+ // pc模拟测试用
143
+ // keyName = 'fieldexploration'
144
+ // valueHeader = '现场勘探'
145
+
146
+ if(this.row.f_order_type.indexOf('勘探') != -1){
147
+ keyName = 'fieldexploration'
148
+ valueHeader = '现场勘探'
149
+ }
150
+ if(this.row.f_order_type.indexOf('验收') != -1){
151
+ keyName = 'acceptance'
152
+ valueHeader = '竣工验收'
153
+ }
154
+ if(this.row.f_order_type.indexOf('通气') != -1){
155
+ keyName = 'ventilation'
156
+ valueHeader = '通气点火'
157
+ }
158
+ let value = {
143
159
  header:valueHeader,
144
- class: 'apply-info-class',
160
+ class: 'field-exploration-class',
145
161
  props: null
146
162
  }
147
- this.tabs[keyName] = value
148
- console.log( 'this.number=>' + this.number)
149
- // this.$set('tabs.' + keyName ,value)
163
+ this.$set('tabs.' + keyName ,value)
150
164
  this.setProps()
151
165
  },
152
166
  components: {
153
167
  'apply-info': ApplyInfo,
154
168
  'apply-user-info':ApplyUserInfo,
155
- // 'fieldexploration': FieldExploration,
156
- // 'acceptance': Acceptance,
157
- // 'ventilation':Ventilation
158
- 'apply-defame-work': ServiceControl
169
+ 'fieldexploration': FieldExploration,
170
+ 'acceptance': Acceptance,
171
+ 'ventilation':Ventilation
172
+
159
173
  },
160
174
  events: {
161
- 'close'() {
162
- this.$back()
163
- }
164
175
  }
165
176
  }
166
177
  </script>
@@ -4,33 +4,37 @@
4
4
  <criteria-paged :model="model" v-ref:paged :pager="false">
5
5
  <criteria partial='criteria' @condition-changed='$parent.$parent.selfSearch' v-ref:cri>
6
6
  <div novalidate class="flex-row select-overspread" partial style="white-space: nowarp;">
7
- <div class="form-group col-sm-5">
8
- <!-- <label>用户编号:</label> -->
9
- <input type="text" class="form-control" v-model="model.f_user_name" placeholder='联系人' condition="f_user_name like '%{}%'">
10
- </div>
11
- <div class="form-group col-sm-5">
12
- <!-- <label>操作类型:</label> -->
13
7
  <div class="form-group">
14
8
  <!-- <label>用户编号:</label> -->
15
- <input type="text" class="form-control " v-model="model.f_phone" placeholder='电话号码' condition="f_phone like '%{}%'">
9
+ <input type="text" class="form-control width-100" v-model="model.f_userinfo_id" placeholder='报建编号' condition="f_userinfo_id = '{}'">
10
+ </div>
11
+ <div class="form-group" style="flex: 1;">
12
+ <!-- <label>操作类型:</label> -->
13
+ <v-select id="f_paytype"
14
+ v-model="model.f_operat_type"
15
+ placeholder='操作类型'
16
+ :value.sync="model.f_operat_type"
17
+ :options='$parent.$parent.$parent.operationtypes'
18
+ condition="f_operat_type = '{}'"
19
+ close-on-select ></v-select>
20
+ <partial name="cardcriteria"></partial>
21
+ </div>
22
+ <!-- <div class="form-group">
23
+ <partial name="cardcriteria"></partial>
24
+ </div> -->
25
+ <div class="form-group">
26
+ <button class="btn btn-success width-100" @click="search()" id=base-rightVie-cardLis-查询>查询</button>
16
27
  </div>
17
- </div>
18
- <!-- <div class="form-group">
19
- <partial name="cardcriteria"></partial>
20
- </div> -->
21
- <div class="form-group col-sm-2">
22
- <button class="btn btn-success width-100" @click="search()" id=base-rightVie-cardLis-查询>查询</button>
23
- </div>
24
28
 
25
29
  </div>
26
30
  </criteria>
27
31
  <accordion :one-at-atime="true" type="info" partial="list">
28
32
  <panel type="info" v-for="row in model.rows" :is-open="true" :is-click="false" v-show="row.type==='终止报建'">
29
- <span class="panel-title row" slot="header" @click="$parent.$parent.$parent.selected(row)" style="cursor: pointer;">
33
+ <span class="panel-title row" slot="header" style="cursor: pointer;">
30
34
  <div class="col-sm-11">
31
35
  <div class="row">
32
- <div class="col-sm-4">{{row.f_apply_num}}</div>
33
- <div class="col-sm-4"></div>
36
+ <strong class="col-sm-4">{{row.f_userinfo_id}}</strong>
37
+ <span class="col-sm-4">{{$parent.$parent.$parent.dateDes(row.f_operate_date)}}</span>
34
38
  <span class="col-sm-4">{{row.type}}</span>
35
39
  </div>
36
40
  </div>
@@ -41,13 +45,18 @@
41
45
  <span class="glyphicon glyphicon-th-list"></span>
42
46
  </button>
43
47
  <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right" style=" min-width: 60px;">
48
+ <!--<li v-if="row.type === '机表收费' || row.type === '卡表收费' || row.type === '超用收费' || row.type === '发卡售气' || row.type === '其他收费' || row.type === '换表'">-->
49
+ <!--<a href="#" @click.stop="$parent.$parent.$parent.operate('票据补打', row)">票据补打</a>-->
50
+ <!--</li>-->
51
+ <!-- <li v-if="row.state === 1 && row.type !== '档案变更' && row.type !== '新增户档案' && row.type !== '银行代扣' && row.type !== '发卡售气' && row.type !== '卡表收费'&& row.type !== '补气'"> -->
44
52
  <li v-if="row.type === '终止报建'">
45
53
  <a href="#" @click.stop="$parent.$parent.$parent.operate('撤销', row)">撤销</a>
46
54
  </li>
47
55
  </ul>
48
56
  </dropdown>
49
57
  </div>
50
- </span>
58
+
59
+ <!--</span>-->
51
60
  <div class="panel-body" v-if="$parent.$parent.$parent.isSelected(row)">
52
61
  <!--<build-apply-detail v-if="row.type === '报建收费'" :data="row"></build-apply-detail>-->
53
62
  <!--<change-apply-detail v-if="row.type === '报建费用变更'" :data="row"></change-apply-detail>-->
@@ -64,11 +73,11 @@
64
73
  </criteria-paged>
65
74
  </partial-view>
66
75
  </div>
67
- </template>
68
- <script>
76
+ </template>
77
+ <script>
69
78
  /**
70
- *操作记录信息
71
- */
79
+ *操作记录信息
80
+ */
72
81
  import { PagedList } from 'vue-client'
73
82
  import co from 'co'
74
83
  import AppData from '../../../../stores/AppData'
@@ -86,7 +95,7 @@
86
95
  return {
87
96
  operationtypes: this.$appdata.getParam('报建业务类型'),
88
97
  model: new PagedList(`${this.sqlurl}`, 9999,
89
- {items: '"' + this.items + '"', tablename: '"' + this.tablename + '"', orderitem: '"' + this.orderitem + '"'}),
98
+ {condition:'"' +'f_operator= \''+this.$login.f.name+'\''+ '"',items: '"' + this.items + '"', tablename: '"' + this.tablename + '"', orderitem: '"' + this.orderitem + '"'}),
90
99
  show: false,
91
100
  asideTitle: '用户操作',
92
101
  row: Object,
@@ -96,7 +105,7 @@
96
105
  props: {
97
106
  sqlurl: {
98
107
  type: String,
99
- default: 'rs/sql/getinstallrecord'
108
+ default: 'rs/sql/getinstallrecord'
100
109
  },
101
110
  items: {
102
111
  type: String,
@@ -148,7 +157,7 @@
148
157
  let condition = '1=1'
149
158
  // this.$refs.paged.$refs.cri.search()
150
159
  if (!this.$login.f.parent.parent.name.includes('统一资源管理')) {
151
- condition += ` and f_filiale = '${this.$login.f.f_fengongsi}'`
160
+ condition += `and f_filiale = '${this.$login.f.f_fengongsi}'`
152
161
  }
153
162
  this.$refs.pv.load(this.sqlurl, {data: {condition: condition}}).then((a) => {
154
163
  if (a.data.length === 0) {
@@ -167,7 +176,7 @@
167
176
  operate (title, row) {
168
177
  if (title === '票据补打' && (row.type === '机表收费' || row.type === '卡表收费' || row.type === '超用收费' || row.type === '发卡售气')) {
169
178
  this.$resetpost('rs/sql/singleTable_OrderBy', {data: {orderitem: 'id', items: '*',
170
- tablename: 't_sellinggas', condition: 'id = ' + row.id}}).then((res) => {
179
+ tablename: 't_sellinggas', condition: 'id = ' + row.id}}).then((res) => {
171
180
  row = Object.assign({}, row, res.data[0])
172
181
  this.$dispatch('list-select-oper', `${row.type}票据补打`, 'reissue-bill', row)
173
182
  }).catch((error) => {
@@ -179,7 +188,7 @@
179
188
  })
180
189
  } else if (title === '票据补打' && row.type === '其他收费') {
181
190
  this.$resetpost('rs/sql/singleTable_OrderBy', {data: {orderitem: 'id', items: '*',
182
- tablename: 't_othercharge', condition: 'id = ' + row.id}}).then((res) => {
191
+ tablename: 't_othercharge', condition: 'id = ' + row.id}}).then((res) => {
183
192
  if (res.data[0].f_charge_type === '国税发票') {
184
193
  row = Object.assign({}, row, res.data[0])
185
194
  this.$dispatch('list-select-oper', `${row.type}票据补打`, 'reissue-other-bill', row)
@@ -196,7 +205,7 @@
196
205
  })
197
206
  } else if (title === '票据补打' && row.type === '换表') {
198
207
  this.$resetpost('rs/sql/singleTable_OrderBy', {data: {orderitem: 'id', items: '*',
199
- tablename: 't_changemeter', condition: 'id = ' + row.id}}).then((res) => {
208
+ tablename: 't_changemeter', condition: 'id = ' + row.id}}).then((res) => {
200
209
  row = Object.assign({}, row, res.data[0])
201
210
  this.$dispatch('list-select-oper', `${row.type}票据补打`, 'reissue-change-meter-bill', row)
202
211
  }).catch((error) => {
@@ -256,4 +265,4 @@
256
265
  // }
257
266
  },
258
267
  }
259
- </script>
268
+ </script>
@@ -1,77 +1,77 @@
1
- <template>
2
- <div class="auto">
3
- <partial-view v-ref:pv>
4
- <!-- <div class="row"> -->
5
- <!-- <label class = " col-sm-3 control-label">用户姓名:</label> -->
6
- <!-- <span style="padding:0" class = " col-sm-3">{{model[0].f_user_name}}</span> -->
7
- <!-- <label class = "col-sm-3 control-label">操作人:</label>
8
- <span class = "col-sm-3">{{model.f_operator}}</span> -->
9
- <!-- </div> -->
10
- <table class="table table-bordered table-condensed self-table" id="table" >
11
- <!-- <tr>
12
- <td><b>享受减免账户</b></td>
13
- <td>{{data.f_user_name}}</td>
14
- </tr> -->
15
- <tr>
16
- <td><b>减免科目</b></td>
17
- <td>{{model.f_subject}}</td>
18
- </tr>
19
- <tr>
20
- <td><b>减免金额</b></td>
21
- <td>{{model.f_fee}}</td>
22
- </tr>
23
- <tr>
24
- <td><b>审核领导</b></td>
25
- <td>{{model.f_leader}}</td>
26
- </tr>
27
- <tr>
28
- <td><b>操作日期</b></td>
29
- <td>{{model.f_date}}</td>
30
- </tr>
31
- </table>
32
-
33
- </partial-view>
34
- </div>
35
- </template>
36
-
37
- <script>
38
- import Table from '../../../../Table'
39
- export default {
40
- title: '报建费用减免',
41
- props: ['data'],
42
- data () {
43
- return {
44
- model: {}
45
- }
46
- },
47
- ready () {
48
- console.log('dadddddddddddddddddddddreduce', this.data)
49
- let sql = 'singleTable_OrderBy'
50
- let condition = {
51
- items: '*',
52
- tablename: 't_costreduction',
53
- condition: 'id = ' + this.data.id,
54
- orderitem: 'id'
55
- }
56
- this.$info(`加载数据中..., sql:${sql}`)
57
- this.$refs.pv.load('rs/sql/singleTable', {data:condition}).then((a) => {
58
- this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
59
- this.model = a.data
60
- console.log('1111111model', this.model)
61
- console.log('1111111data', a.data)
62
- }).catch((error) => {
63
- if (error.status) {
64
- this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
65
- return
66
- }
67
- throw error
68
- })
69
- },
70
- methods: {
71
- // 获取表中字段对应的中文名
72
- getValue (key) {
73
- return Table.data[key]
74
- }
75
- }
76
- }
77
- </script>
1
+ <template>
2
+ <div class="auto">
3
+ <partial-view v-ref:pv>
4
+ <!-- <div class="row"> -->
5
+ <!-- <label class = " col-sm-3 control-label">用户姓名:</label> -->
6
+ <!-- <span style="padding:0" class = " col-sm-3">{{model[0].f_user_name}}</span> -->
7
+ <!-- <label class = "col-sm-3 control-label">操作人:</label>
8
+ <span class = "col-sm-3">{{model.f_operator}}</span> -->
9
+ <!-- </div> -->
10
+ <table class="table table-bordered table-condensed self-table" id="table" >
11
+ <!-- <tr>
12
+ <td><b>享受减免账户</b></td>
13
+ <td>{{data.f_user_name}}</td>
14
+ </tr> -->
15
+ <tr>
16
+ <td><b>减免科目</b></td>
17
+ <td>{{model.f_subject}}</td>
18
+ </tr>
19
+ <tr>
20
+ <td><b>减免金额</b></td>
21
+ <td>{{model.f_fee}}</td>
22
+ </tr>
23
+ <tr>
24
+ <td><b>审核领导</b></td>
25
+ <td>{{model.f_leader}}</td>
26
+ </tr>
27
+ <tr>
28
+ <td><b>操作日期</b></td>
29
+ <td>{{model.f_date}}</td>
30
+ </tr>
31
+ </table>
32
+
33
+ </partial-view>
34
+ </div>
35
+ </template>
36
+
37
+ <script>
38
+ import Table from '../../../../Table'
39
+ export default {
40
+ title: '报建费用减免',
41
+ props: ['data'],
42
+ data () {
43
+ return {
44
+ model: {}
45
+ }
46
+ },
47
+ ready () {
48
+ console.log('dadddddddddddddddddddddreduce', this.data)
49
+ let sql = 'singleTable_OrderBy'
50
+ let condition = {
51
+ items: '*',
52
+ tablename: 't_costreduction',
53
+ condition: 'id = ' + this.data.id,
54
+ orderitem: 'id'
55
+ }
56
+ this.$info(`加载数据中..., sql:${sql}`)
57
+ this.$refs.pv.load('rs/sql/singleTable', {data:condition}).then((a) => {
58
+ this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
59
+ this.model = a.data
60
+ console.log('1111111model', this.model)
61
+ console.log('1111111data', a.data)
62
+ }).catch((error) => {
63
+ if (error.status) {
64
+ this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
65
+ return
66
+ }
67
+ throw error
68
+ })
69
+ },
70
+ methods: {
71
+ // 获取表中字段对应的中文名
72
+ getValue (key) {
73
+ return Table.data[key]
74
+ }
75
+ }
76
+ }
77
+ </script>
@@ -49,7 +49,7 @@ export default {
49
49
  orderitem: 'id'
50
50
  }
51
51
  this.$info(`加载数据中..., sql:${sql}`)
52
- this.$refs.pv.load('rs/logic/apply_getOneData', {data: {sql: sql, params: condition}}).then((a) => {
52
+ this.$refs.pv.load('rs/logic/getOneData', {data: {sql: sql, params: condition}}).then((a) => {
53
53
  this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
54
54
  this.model = a.data
55
55
  }).catch((error) => {