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,47 +0,0 @@
1
- <template>
2
- <div class="col-sm-12" style="height: auto">
3
- <div class="form-group col-sm-4 form-input-group">
4
- <label class="control-label">材料类型:</label>
5
- <div class="col-sm-6">
6
- <input class="form-control" type="text" v-model="model.f_material_type">
7
- <!--<v-select v-else :value.sync="model.f_customer_type" v-model="model.f_customer_type" v-ref:f_customer_types
8
- :options='funit'
9
- placeholder='请选择' close-on-select></v-select>-->
10
- </div>
11
- </div>
12
- <div class="form-group col-sm-4 form-input-group">
13
- <label class="control-label">材料名称:</label>
14
- <div class="col-sm-6">
15
- <input class="form-control" type="text" v-model="model.f_material_name">
16
- </div>
17
- </div>
18
- <div class="form-group col-sm-4 form-input-group">
19
- <label class="control-label">材料数量:</label>
20
- <div class="col-sm-6">
21
- <input class="form-control" type="text" v-model="model.f_material_num">
22
- </div>
23
- </div>
24
- </div>
25
- </template>
26
- <script>
27
-
28
- export default {
29
- title: '楼栋信息',
30
- data() {
31
- return {
32
- ffloor: this.$appdata.getParam('房屋类型'),
33
- model: {}
34
- }
35
- },
36
- ready() {
37
-
38
- },
39
- methods: {
40
- impexcel() {
41
- this.$showMessage(this.$refs.file.$el.querySelector('input').value)
42
- this.showFile = true
43
- }
44
- }
45
-
46
- }
47
- </script>
@@ -1,89 +0,0 @@
1
- <template>
2
- <div class="auto form-horizontal" >
3
- <modal :show.sync="show" v-ref:modal large backdrop="false">
4
- <header slot="modal-header" class="modal-header">
5
- <h3 style="color:black" class="modal-title">受理单</h3>
6
- </header>
7
- <article slot="modal-body" style = "display: flex;justify-content: center;" id="bill">
8
- <div v-if="bill.data">
9
- {{{bill.data}}}
10
- </div>
11
- </article>
12
- <footer slot="modal-footer" class="modal-footer">
13
- <button type="button" class="btn btn-success" @click='print()'>打印</button>
14
- <!--<report-print id='bill' top='15mm' left='5mm' width='90%' height='70%' :notrepeat="true" v-ref:reportprint></report-print>-->
15
- <report-print id='bill' top='15mm' left='5mm' width='90%' height='70%' :notrepeat="false" :showbtn="false" v-ref:reportprint></report-print>
16
- <button type="button" class="btn btn-default" @click='cancel()' v-if="!billManager">取消</button>
17
- </footer>
18
- </modal>
19
- </div>
20
- </template>
21
- <script>
22
- import { DataModel } from 'vue-client'
23
-
24
- let getBillData = async function(self) {
25
- console.log('看看打票里面的data', self.billUrl)
26
- // console.log('看看打票里面的self.billdata111', self.billdata)
27
- Object.assign(self.billdata,{reprint: "'正常'"},{operator:`'${self.$login.f.name}'`})
28
- console.log('看看打票里面的self.billdata222', self.billdata)
29
- // console.log('看看打票里面的self.billdata333', {reprint: "'正常'",reason: `'${self.billdata.reason}'`, cardfee: `'${self.billdata.f_cardfees}'`,operator:`'${self.$login.f.name}'`})
30
- // self.bill = new DataModel(self.billUrl, {reprint: "'正常'",reason: `'${self.billdata.reason}'`, cardfee: `'${self.billdata.f_cardfees}'`,operator:`'${self.$login.f.name}'`})
31
- self.bill = new DataModel(self.billUrl, self.billdata)
32
- console.log('看看打票里面的self.billdata3333')
33
- await self.bill.search(1)
34
- }
35
-
36
- export default {
37
- title: '收费发票',
38
- data () {
39
- return {
40
- bill: {}
41
- }
42
- },
43
- props: ['show', 'data', 'billUrl','billdata'],
44
- ready () {
45
- },
46
- methods: {
47
- cancel () {
48
- this.$dispatch('toggle')
49
- },
50
- async print () {
51
- // 更新系统发票号
52
- try{
53
- console.log('不需要票号,直接打印')
54
- this.$refs.reportprint.print()
55
- } catch (error) {
56
- this.$dispatch('refresh')
57
- }
58
-
59
- }
60
- },
61
- watch: {
62
- 'show' (val) {
63
- if (val) {
64
- getBillData(this, val).then(() => {
65
- this.$emit('ready')
66
- }).catch((error) => {
67
- this.$emit('error', error)
68
- })
69
- }
70
- }
71
- },
72
- events: {
73
- 'print-success' () {
74
- // 对票据明细进行更新或插入操作
75
- this.$dispatch('closeaccept')
76
- },
77
- 'print' () {
78
- // 对票据明细进行更新或插入操作
79
- this.$dispatch('printok', '发票打印', this.data)
80
- },
81
- 'print-error' () {
82
- this.$dispatch('error', '发票打印', this.data, null)
83
- }
84
- }
85
- }
86
-
87
- </script>
88
- <style >
89
- </style>
@@ -1,305 +0,0 @@
1
- <template>
2
- <div class="flex bg-white p-10 datapanel" >
3
- <div style="flex: 1.5;height: 100%" class="flex">
4
- <p class="bg-info text-center" style="padding: 8px;font-size: 20px">报建收费记录
5
- </p>
6
- <div class="flex" style="height: 90%">
7
- <criteria-paged :model="model" v-ref:paged >
8
- <criteria partial='criteria' v-ref:criteria @condition-changed="$parent.selfSearch">
9
-
10
- <div novalidate class="form-inline auto" partial>
11
- <div class="form-group col-sm-2">
12
- <label class="col-sm-4 control-label linehhh">报建编号</label>
13
- <div class="col-sm-8">
14
- <input type="text" class="form-control" v-model="model.f_apply_num"
15
- style="width:100%"
16
- condition="a.f_apply_num like '%{}%'" placeholder='报建编号'>
17
- </div>
18
- </div>
19
- <div class="form-group col-sm-2 ">
20
- <label class="col-sm-4 control-label linehhh ">开始日期</label>
21
- <div class="col-sm-8">
22
- <datepicker placeholder="开始日期"
23
- v-model="model.f_operate_start_date"
24
- style="width:100%"
25
- :value.sync="model.f_operate_start_date"
26
- :format="'yyyy-MM-dd 00:00:00'"
27
- condition="f_charge_date >= '{}'"
28
- ></datepicker>
29
- </div>
30
- </div>
31
- <div class="form-group col-sm-2">
32
- <label class="col-sm-4 control-label linehhh ">结束日期</label>
33
- <div class="col-sm-8">
34
- <datepicker placeholder="结束日期"
35
- style="width:100%"
36
- v-model="model.f_operate_end_date"
37
- :value.sync="model.f_operate_end_date"
38
- :format="'yyyy-MM-dd 23:59:59'"
39
- condition="f_charge_date <= '{}'"
40
- ></datepicker>
41
- </div>
42
- </div>
43
- <div class="form-group col-sm-2">
44
- <label class="col-sm-4 control-label linehhh">收费人员</label>
45
- <div class="col-sm-8">
46
- <v-select :value.sync="model.f_charge_collectors" v-model="model.f_charge_collectors"
47
- :options='$parent.$parent.human' placeholder='收费人员' width="100%"
48
- close-on-select condition="f_charge_collectors = '{}'">
49
- </v-select>
50
- </div>
51
- </div>
52
-
53
- <div class="form-group col-sm-2">
54
- <label class="col-sm-4 control-label linehhh">是否冲正</label>
55
- <div class="col-sm-8">
56
- <v-select :value.sync="model.f_is_correct" v-model="model.f_is_correct"
57
- :options='$parent.$parent.correct' placeholder='是否冲正' :width="100" style="width:100%"
58
- close-on-select condition="f_is_correct = '{}'">
59
- </v-select>
60
- </div>
61
- </div>
62
- <div class="form-group col-sm-2">
63
- <label class="col-sm-4 control-label linehhh">是否有效</label>
64
- <div class="col-sm-8">
65
- <v-select :value.sync="model.f_charging_status" v-model="model.f_charging_status"
66
- :options='$parent.$parent.state' placeholder='是否有效' width="100%"
67
- close-on-select condition="f_charging_status = '{}'">
68
- </v-select>
69
- </div>
70
- </div>
71
- <div class="form-group col-sm-2">
72
- <label class="col-sm-4 control-label linehhh">收费方式</label>
73
- <div class="col-sm-8">
74
- <v-select :value.sync="model.f_payment_method" v-model="model.f_payment_method"
75
- :options='$parent.$parent.method' placeholder='收费方式' width="100%"
76
- close-on-select condition="f_payment_method = '{}'">
77
- </v-select>
78
- </div>
79
- </div>
80
- <div class="form-group col-sm-2">
81
- <label class="col-sm-4 control-label linehhh ">用户地址</label>
82
- <div class="col-sm-8">
83
- <input type="text" class="form-control" placeholder='用户地址' v-model="model.f_address"
84
- v-on:keyup.enter="search" style="width:100%"
85
- condition="f_address like '%{}%'">
86
- </div>
87
- </div>
88
- <div class="form-group col-sm-2">
89
- <label class="col-sm-4 control-label linehhh">联系人</label>
90
- <div class="col-sm-8">
91
- <input type="text" class="form-control" placeholder='联系人'
92
- v-model="model.f_user_name"
93
- v-on:keyup.enter="search" style="width:100%"
94
- condition="a.f_user_name like '%{}%'">
95
- </div>
96
- </div>
97
-
98
- <div class="form-group col-sm-2">
99
- <label class="col-sm-4 control-label linehhh">组织机构</label>
100
- <div class="col-sm-8">
101
- <right-tree :userid.sync='$parent.$parent.userid' :source.sync='$parent.$parent.source'
102
- @re-res="$parent.$parent.getRes" condition="f_orgstr like {}"></right-tree>
103
- </div>
104
- </div>
105
-
106
-
107
- <div class="form-group">
108
- <button class="btn btn-primary" @click="search(),$parent.$parent.showpager()">
109
- <span class="glyphicon glyphicon-search"></span>查询</button>
110
- <button class="btn-primary btn btn-sm" @click.prevent="$parent.$parent.clear()">清空</button>
111
- </div>
112
- </div>
113
- </criteria>
114
- <data-grid :model="model" v-ref:grid partial='list'>
115
- <template partial='head'>
116
- <tr>
117
- <th><nobr>序号</nobr></th>
118
- <th><nobr>收费金额</nobr></th>
119
- <th><nobr>用户</nobr></th>
120
- <th><nobr>地址</nobr></th>
121
- <th><nobr>收费人员</nobr></th>
122
- <th><nobr>是否有效</nobr></th>
123
- <th><nobr>付款方式</nobr></th>
124
- <th><nobr>收费日期</nobr></th>
125
- <th><nobr>报建编号</nobr></th>
126
- <th><nobr>分公司</nobr></th>
127
- <th><nobr>营业网点</nobr></th>
128
- <th><nobr>发票号码</nobr></th>
129
- <th><nobr>票据类型</nobr></th>
130
- <th><nobr>总应缴金额</nobr></th>
131
- <th><nobr>已交金额</nobr></th>
132
- <th><nobr>未交金额</nobr></th>
133
- <!-- <th><nobr>发票冲正</nobr></th>-->
134
- </tr>
135
- </template>
136
- <template partial='body'>
137
- <td style="text-align: center;">{{$index+1}}</td>
138
- <td style="text-align: center;">{{row.f_charge_money}}</td>
139
- <td style="text-align: center;">{{row.f_charge_user}}</td>
140
- <td style="text-align: center;">{{row.f_charge_address}}</td>
141
- <!-- <td style="text-align: center;">{{// row.f_charge_item}}</td>-->
142
- <td style="text-align: center;">{{row.f_charge_collectors}}</td>
143
- <td style="text-align: center;">{{row.f_charging_status}}</td>
144
- <td style="text-align: center;">{{row.f_payment_method}}</td>
145
- <td style="text-align: center;">{{row.f_charge_date}}</td>
146
- <td style="text-align: center;">{{row.f_apply_num}}</td>
147
- <td style="text-align: center;">{{row.f_filiale}}</td>
148
- <td style="text-align: center;">{{row.f_outlets}}</td>
149
- <td style="text-align: center;">{{row.f_bill_number}}</td>
150
- <td style="text-align: center;">{{row.f_bill_style}}</td>
151
- <td style="text-align: center;">{{row.f_total_cost}}</td>
152
- <td style="text-align: center;">{{row.app_f_cumulative_money}}</td>
153
- <td style="text-align: center;">{{row.f_unaccounts_money}}</td>
154
- <!-- <td style="text-align: center;">{{row.f_is_correct}}</td>-->
155
- </template>
156
- </data-grid>
157
- </criteria-paged>
158
- </div>
159
- <div class="flex" style="height: 10%">
160
- <div novalidate class="form-inline auto" partial>
161
- <p class="bg-info text-center" style="padding: 8px;font-size: 20px">合计收费记录共
162
- <span style="color: red">{{modeluse.rows.length}}</span>笔,合计金额<span style="color: red">{{price.rows[0].f_charge_money}}</span>元
163
- </p>
164
- </div>
165
- </div>
166
- </div>
167
-
168
- </div>
169
- </template>
170
- <script>
171
- import * as Util from '../../../../Util'
172
-
173
- import { PagedList } from 'vue-client'
174
-
175
- Date.prototype.Format = function (fmt) {
176
- var o = {
177
- "M+": this.getMonth() + 1, //月份
178
- "d+": this.getDate(), //日
179
- "H+": this.getHours(), //小时
180
- "m+": this.getMinutes(), //分
181
- "s+": this.getSeconds(), //秒
182
- "q+": Math.floor((this.getMonth() + 3) / 3), //季度
183
- "S": this.getMilliseconds() //毫秒
184
- };
185
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
186
- for (var k in o)
187
- if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
188
- return fmt;
189
- }
190
-
191
- export default {
192
- title: '报建收费查看',
193
- name: 'ApplyChargeSearch',
194
- data () {
195
- return {
196
- filialeNameStr: null,
197
- filialeCodeStr: this.$login.f.f_orgids,
198
- userid: this.$login.f.id,
199
- source:`tool.getFullTree(this.getRights().where(row.getType() != $zone$).where(row.getType() != $role$))`,
200
- // f_operate_start_date:new Date().Format('yyyy-MM-dd HH:mm:ss'),
201
- // f_operate_end_date: new Date().Format('yyyy-MM-dd HH:mm:ss'),
202
- model: new PagedList('rs/sql/getApplyCharge', 30, { orderitem: '`id`'}),
203
- modeluse: new PagedList('rs/sql/getApplyCharge', 999999, { orderitem: '`id`'}),
204
- price: new PagedList('rs/sql/getChargeAll', 999999, { orderitem: '`f_charge_money`'}),
205
- human:[],
206
- filiale:[],
207
- method:[],
208
- correct:[
209
- {label: '是', value: '是'},
210
- {label:'否', value: '否'}
211
- ],
212
- state:[
213
- {label: '有效', value: '有效'},
214
- {label:'无效', value: '无效'}
215
- ]
216
- }
217
- },
218
- ready () {
219
- this.$refs.cp.$refs.cri.model.f_operate_start_date = Util.toStandardDateString() + ' 00:00:00'
220
- this.$refs.cp.$refs.cri.model.f_operate_end_date = Util.toStandardDateString() + ' 23:59:59'
221
- this.search()
222
- this.gethuman()
223
- },
224
- methods: {
225
- clear(){
226
- this.$refs.cp.$refs.cri.model = {}
227
- },
228
- getRes(obj) {
229
- this.filialeNameStr = obj.res
230
- this.filialeCodeStr = obj.resids
231
- console.log(this.filialeNameStr)
232
- console.log(this.filialeCodeStr)
233
- },
234
- showpager() {
235
- // this.$refs.cp.pager = true
236
- this.$dispatch('hiddenbtn')
237
- },
238
- search () {
239
- let condition = "1=1 and r.f_filiale like '%"+this.$login.f.f_fengongsi+"%'"
240
- this.model.search(condition)
241
- this.modeluse.search(condition)
242
- this.price.search(condition)
243
- },
244
-
245
- selfSearch(args) {
246
- args.condition = args.condition + ` and tbd.f_orgstr like '%${this.filialeCodeStr}%'`
247
- this.model.search(args.condition, args.model)
248
- },
249
- cleaner() {
250
- Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
251
- this.$refs.paged.$refs.criteria.model[key] = ''
252
- })
253
- console.log('condition:', this.$refs.paged.$refs.criteria.condition)
254
- this.$refs.paged.$refs.criteria.condition = this.$refs.paged.$refs.criteria.condition+" and r.f_filiale like '%"+this.$login.f.f_fengongsi+"%'"
255
- this.model.search(this.$refs.paged.$refs.criteria.condition)
256
- this.modeluse.search(this.$refs.paged.$refs.criteria.condition)
257
- this.price.search(this.$refs.paged.$refs.criteria.condition)
258
- },
259
- gethuman(){
260
- console.log('获取人员')
261
- this.$resetpost('rs/logic/getChargeList', {data: {condition: `1=1`}}, {resolveMsg: null, rejectMsg: null}).then((res) => {
262
- // this.params.rows.splice(index, 1)
263
- console.log('获取成功',res)
264
- let house = []
265
- for (let row of res.data.human){
266
- house.push({label: row.f_charge_collectors,value: row.f_charge_collectors})
267
- }
268
- this.human = house
269
- let house2 = []
270
- for (let row of res.data.f){
271
- house2.push({label: row.f_filiale,value: row.f_filiale})
272
- }
273
- this.filiale = house2
274
- let house3 = []
275
- for (let row of res.data.method){
276
- house3.push({label: row.f_payment_method,value: row.f_payment_method})
277
- }
278
- this.method = house3
279
- })
280
-
281
- },
282
-
283
- },
284
- computed: {
285
-
286
- },
287
- events: {
288
-
289
- },
290
- watch: {
291
-
292
- }
293
- }
294
- </script>
295
- <style >
296
- .linehhh{
297
- line-height: 35px;
298
- }
299
- .datapanel {
300
- color: #333;
301
- background-color: white;
302
- padding: 10px 20px;
303
- border-radius:15px;
304
- }
305
- </style>
@@ -1,96 +0,0 @@
1
- <template xmlns="http://www.w3.org/1999/xhtml" xmlns:v-validate="http://www.w3.org/1999/xhtml">
2
- <div class="auto select-overspread">
3
- <validator name="v">
4
- <form class="form-horizontal">
5
- <div class="form-group col-sm-11">
6
- <div class="form-group col-sm-4 form-input-group">
7
- <div class="col-sm-3"></div>
8
- <div class="col-sm-6">
9
- <input type="checkbox" class="" id="checkbox" v-model="model.f_isdesign"
10
- v-validate:f_isdesign='{required: true }'/>
11
- <label for="checkbox" class="font-size">是否需要停气</label>
12
- </div>
13
- </div>
14
- </div>
15
-
16
-
17
- <div class="col-sm-11">
18
- <div class="form-group col-sm-4">
19
- <label for="f_designer" class=" col-sm-6 control-label">项目名称:</label>
20
- <div class="col-sm-6" id="f_entry_name">
21
- <input class="form-control" type="text" v-model="model.f_entry_name">
22
- </div>
23
- </div>
24
- <div class="form-group col-sm-4 form-input-group" :class="[$v.surveytime.required ? 'has-error' : '']">
25
- <label for="f_survey_time" class="col-sm-6 control-label">停气碰口时间:</label>
26
- <div class="col-sm-6" id="f_survey_time">
27
- <input type="text" v-show="false" v-model="$refs.surveytime.value"
28
- v-validate:surveytime='{required: true}'/>
29
- <datepicker id="f_survey_time" width="200.72px;" v-ref:surveytime
30
- :value.sync="model.f_survey_time"
31
- :disabled-days-of-Week="[]"
32
- :format="'yyyy-MM-dd'"
33
- v-model="model.f_survey_time"
34
- :show-reset-button="reset" readonly="readonly">
35
- </datepicker>
36
- </div>
37
- </div>
38
- <div class="form-group col-sm-4">
39
- <label for="f_designer" class=" col-sm-6 control-label">停气区域:</label>
40
- <div class="col-sm-6" id="f_entry_name">
41
- <input class="form-control" type="text" v-model="model.f_gas_stoparea">
42
- </div>
43
- </div>
44
- </div>
45
- </form>
46
- </validator>
47
- <button type="button" @click="xx($index, row)" class="btn btn-primary">
48
- +
49
- </button>
50
- </div>
51
- </template>
52
- <script>
53
- import {HttpResetClass} from 'vue-client'
54
- import * as Util from '../../../../Util'
55
- export default {
56
- title: "基本信息",
57
- data () {
58
- return {
59
- imgadd: 'images/mainicon/adddevice.png'
60
- }
61
- },
62
- methods: {
63
- addDevice () {
64
- this.devicesinfo.push({
65
- f_devices_type: '',
66
- f_userinfo_id: this.userinfoid
67
- })
68
- },
69
- },
70
- watch: {
71
- 'model.f_customer_type'() {
72
- if (this.model.f_customer_type == '企业') {
73
- this.$parent.$parent.$parent.$parent.flagg = true
74
- } else {
75
- this.$parent.$parent.$parent.$parent.flagg = false
76
- }
77
- }
78
- },
79
- computed: {
80
- village() {
81
- let temp = []
82
- for (var i = 0; i < this.$login.f.f_allArea.length; i++) {
83
- temp.push({label: this.$login.f.f_allArea[i].label, value: this.$login.f.f_allArea[i].label})
84
- }
85
- return temp
86
- },
87
- allvillages() {
88
- let temp = []
89
- for (var i = 0; i < this.$login.f.f_allArea.length; i++) {
90
- if (this.model.f_residential_area[0] == this.$login.f.f_allArea[i].label)
91
- return this.$login.f.f_allArea[i].value
92
- }
93
- }
94
- }
95
- }
96
- </script>
@@ -1,18 +0,0 @@
1
- <template>
2
- <div style="height: auto;margin-bottom: 1%">
3
- <span style="color: red;font-family: 微软雅黑;font-weight: bold;font-size: 18px"> 请注意被退回原因为:{{data.f_back_reason}}</span>
4
- </div>
5
- </template>
6
- <script>
7
-
8
- export default {
9
- title: '退回原因展示',
10
- props:['data'],
11
- data() {
12
- return {
13
-
14
- }
15
- }
16
-
17
- }
18
- </script>