apply-clients 4.1.63-weinan → 4.1.64-weinan

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 (31) hide show
  1. package/index.html +30 -30
  2. package/package.json +1 -1
  3. package/src/apply.js +81 -81
  4. package/src/applyAndroid.js +52 -52
  5. package/src/components/app_apply/AppChargeManagement.vue +753 -749
  6. package/src/components/app_apply/AppInstallationDetails.vue +529 -529
  7. package/src/components/app_apply/AppProcessSupervisory.vue +214 -214
  8. package/src/components/app_apply/AppSupervisoryCart.vue +68 -68
  9. package/src/components/app_apply/AppTakePic.vue +146 -146
  10. package/src/components/app_apply/AppdevicesDetails.vue +867 -867
  11. package/src/components/app_apply/ApplyInfo.vue +56 -56
  12. package/src/components/app_apply/ApplyToDoList.vue +292 -292
  13. package/src/components/app_apply/PlaceControler.vue +274 -274
  14. package/src/components/app_apply/ServiceControl.vue +440 -440
  15. package/src/components/app_apply/ServiceView.vue +394 -394
  16. package/src/components/app_apply/materialshoufei.vue +248 -248
  17. package/src/components/product/ApplyCharge/ApplyChargeList.vue +252 -252
  18. package/src/components/product/Process/ExplorationSelect.vue +377 -377
  19. package/src/components/product/Process/ExplorationUser.vue +134 -134
  20. package/src/components/product/Process/Processes/InstallationDetails.vue +515 -515
  21. package/src/components/product/Process/Processes/chargeManagement.vue +545 -545
  22. package/src/components/product/Process/Processes/devicesDetails.vue +843 -843
  23. package/src/components/product/Process/Processes/materialshoufei.vue +187 -187
  24. package/src/components/product/Process/Service/ServiceControl.vue +1490 -1490
  25. package/src/components/product/Stop/StopApply.vue +101 -101
  26. package/src/components/product/Stop/StopApplyList.vue +266 -266
  27. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +200 -200
  28. package/src/components/product/Supervisory/SupervisoryControl.vue +124 -124
  29. package/src/components/product/Supervisory/SupervisoryList.vue +221 -221
  30. package/src/components/product/VueUtils/ApplyUpload.vue +276 -276
  31. package/src/main.js +25 -25
@@ -1,252 +1,252 @@
1
- <template>
2
- <criteria-paged :model="model" v-ref:cp>
3
- <criteria partial='criteria' @condition-changed='search' v-ref:cri>
4
- <div class="form-horizontal select-overspread container-fluid auto" partial>
5
- <div class="row">
6
- <div class="form-group col-sm-3">
7
- <label class="font_normal_body">项目名称:</label>
8
- <input type="text" class="input_search" style="width: 60%" v-model="model.f_entry_name"
9
- v-on:keyup.enter="$parent.$parent.search()" condition="a.f_entry_name like '%{}%'" placeholder='项目名'>
10
- </div>
11
- <div class="form-group col-sm-3">
12
- <label for="startDate" class="font_normal_body">开始时间:</label>
13
- <datepicker id="startDate" placeholder="开始日期"
14
- style="width: 60%!important;"
15
- v-model="model.startDate"
16
- :value.sync="model.startDate"
17
- :format="'yyyy-MM-dd HH:mm:ss'"
18
- :show-reset-button="true"
19
- condition="cr.f_charge_date >= '{}'">
20
- </datepicker>
21
- </div>
22
- <div class="form-group col-sm-3">
23
- <label for="endDate" class="font_normal_body">结束时间:</label>
24
- <datepicker id="endDate" placeholder="结束日期"
25
- style="width: 60%!important;"
26
- v-model="model.endDate"
27
- :value.sync="model.endDate"
28
- :format="'yyyy-MM-dd HH:mm:ss'"
29
- :show-reset-button="true"
30
- condition="cr.f_charge_date <= '{}'">
31
- </datepicker>
32
- </div>
33
- <div class="form-group col-sm-3 button-range">
34
- <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
35
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
36
- <export-excel :data="$parent.$parent.getCondition"
37
- :field="$parent.$parent.getfield"
38
- sqlurl="rs/logic/applyExportfile"
39
- sql-name="getApplyCharge"
40
- template-name='收费记录信息导出'
41
- :choose-col="true"></export-excel>
42
- <div
43
- :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
44
- @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
45
- class="button_spacing"
46
- style="float: right">
47
- </div>
48
- </div>
49
- </div>
50
- <div class="row" v-show="$parent.$parent.criteriaShow">
51
- <div class="form-group col-sm-3">
52
- <label class="font_normal_body">报建编号:</label>
53
- <input type="text" style="width: 60%" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
54
- v-on:keyup.enter="$parent.$parent.search()"
55
- condition="a.f_apply_num = '{}'">
56
- </div>
57
- <div class="form-group col-sm-3">
58
- <label class="font_normal_body">合同编号:</label>
59
- <input type="text" style="width: 60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
60
- v-on:keyup.enter="$parent.$parent.search()"
61
- condition="a.f_contract_number = '{}'">
62
- </div>
63
- <div class="form-group col-sm-3">
64
- <label class="font_normal_body">报建类型:</label>
65
- <v-select
66
- v-model="model.f_apply_type"
67
- placeholder='请选择'
68
- condition="a.f_apply_type = '{}'"
69
- :value.sync="model.f_apply_type"
70
- :options='$parent.$parent.applytype'
71
- class="select select_list"
72
- :value-single="true"
73
- close-on-select ></v-select>
74
- </div>
75
- <div class="form-group col-sm-3">
76
- <label class="font_normal_body">收费人员:</label>
77
- <input type="text" class="input_search" style="width: 60%" placeholder='收费人员' v-model="model.f_charge_collectors"
78
- v-on:keyup.enter="$parent.$parent.search()"
79
- condition="cr.f_charge_collectors like '%{}%'">
80
- </div>
81
- <div class="form-group col-sm-3">
82
- <label class="font_normal_body">付款方式:</label>
83
- <v-select
84
- v-model="model.f_payment_method"
85
- placeholder='请选择'
86
- condition="cr.f_payment_method = '{}'"
87
- :value.sync="model.f_payment_method"
88
- :options='$parent.$parent.paymentMethod'
89
- class="select select_list"
90
- :value-single="true"
91
- close-on-select ></v-select>
92
- </div>
93
- <div class="form-group col-sm-3">
94
- <label class="font_normal_body">缴费状态:</label>
95
- <v-select
96
- v-model="model.f_charge_status"
97
- placeholder='请选择'
98
- condition="cr.f_charge_status = '{}'"
99
- :value.sync="model.f_charge_status"
100
- :options='$parent.$parent.chargingStatus'
101
- class="select select_list"
102
- :value-single="true"
103
- close-on-select ></v-select>
104
- </div>
105
- </div>
106
- </div>
107
- </criteria>
108
- <data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
109
- <template partial='head'>
110
- <tr>
111
- <th>序号</th>
112
- <th>报建编号</th>
113
- <th>项目名称</th>
114
- <th>合同编号</th>
115
- <th>报建类型</th>
116
- <th>缴费编码</th>
117
- <th>收费金额</th>
118
- <th>付款方式</th>
119
- <th>收费人员</th>
120
- <th>收费日期</th>
121
- <th>状态</th>
122
- <th>地址</th>
123
- </tr>
124
- </template>
125
- <template partial='body'>
126
- <tr >
127
- <td style="text-align: center;">
128
- <nobr><font>{{$index+1}}</font></nobr>
129
- </td>
130
- <td style="text-align: center;">
131
- <nobr><font>{{row.f_apply_num}}</font></nobr>
132
- </td>
133
- <td style="text-align: center;">
134
- <nobr><font>{{row.f_entry_name}}</font></nobr>
135
- </td>
136
- <td style="text-align: center;">
137
- <nobr><font>{{row.f_contract_number}}</font></nobr>
138
- </td>
139
- <td style="text-align: center;">
140
- <nobr><font>{{row.f_apply_type}}</font></nobr>
141
- </td>
142
- <td style="text-align: center;">
143
- <nobr><font>{{row.f_charge_number}}</font></nobr>
144
- </td>
145
- <td style="text-align: center;">
146
- <nobr><font>{{row.f_charge_money}}</font></nobr>
147
- </td>
148
- <td style="text-align: center;">
149
- <nobr><font>{{row.f_payment_method}}</font></nobr>
150
- </td>
151
- <td style="text-align: center;">
152
- <nobr><font>{{row.f_charge_collectors}}</font></nobr>
153
- </td>
154
- <td style="text-align: center;">
155
- <nobr><font>{{row.f_charge_date}}</font></nobr>
156
- </td>
157
- <td style="text-align: center;">
158
- <nobr><font>{{row.f_charge_status}}</font></nobr>
159
- </td>
160
- <td style="text-align: center;">
161
- <nobr><font>{{row.f_address}}</font></nobr>
162
- </td>
163
- </tr>
164
- </template>
165
- </data-grid>
166
- </criteria-paged>
167
- </template>
168
-
169
- <script>
170
- import {PagedList} from 'vue-client'
171
- import {HttpResetClass} from 'vue-client'
172
- export default {
173
- title: '报建收费列表',
174
- data () {
175
- return {
176
- model: new PagedList('rs/sql/getApplyCharge', 30, {
177
- data: {
178
- orgid: this.$login.f.orgid
179
- }
180
- }, {
181
- f_charge_money: 0
182
- }),
183
- applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
184
- paymentMethod: [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')],
185
- chargingStatus: [
186
- {label: '全部', value: ''},
187
- {label: '有效', value: '有效'},
188
- {label: '无效', value: '无效'},
189
- {label: '作废', value: '作废'}
190
- ],
191
- criteriaShow: false,
192
- chargeAll: {
193
- count: 0,
194
- sum: 0
195
- },
196
- getfield: {
197
- 'f_apply_num': '报建编号',
198
- 'f_entry_name': '项目名称',
199
- 'f_contract_number': '合同编号',
200
- 'f_apply_type': '报建类型',
201
- 'f_charge_money': '收费金额',
202
- 'f_payment_method': '付款方式',
203
- 'f_charge_collectors': '收费人员',
204
- 'f_charge_date': '收费日期',
205
- 'f_charge_status': '状态',
206
- 'f_address': '地址'
207
- }
208
- }
209
- },
210
- ready () {
211
- // 调用查询
212
- this.search()
213
- },
214
- methods: {
215
- clear () {
216
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
217
- this.$refs.cp.$refs.cri.model[key] = []
218
- })
219
- },
220
- // 查询
221
- search () {
222
- this.$refs.cp.$refs.cri.search()
223
- this.getChargeAll()
224
- },
225
- async getChargeAll () {
226
- let http = new HttpResetClass()
227
- let data = {
228
- condition: this.model.condition,
229
- data: {
230
- orgid: this.$login.f.orgid
231
- }
232
- }
233
- let res = await http.load('POST', 'rs/sql/getChargeAll', {data: data}, {resolveMsg: null, rejectMsg: null})
234
-
235
- this.chargeAll = res.data[0]
236
- }
237
- },
238
- computed: {
239
- getCondition () {
240
- return {
241
- condition: this.$refs.cp.$refs.cri.condition,
242
- data: {
243
- orgid: this.$login.f.orgid
244
- }
245
- }
246
- }
247
- }
248
- }
249
- </script>
250
-
251
- <style scoped>
252
- </style>
1
+ <template>
2
+ <criteria-paged :model="model" v-ref:cp>
3
+ <criteria partial='criteria' @condition-changed='search' v-ref:cri>
4
+ <div class="form-horizontal select-overspread container-fluid auto" partial>
5
+ <div class="row">
6
+ <div class="form-group col-sm-3">
7
+ <label class="font_normal_body">项目名称:</label>
8
+ <input type="text" class="input_search" style="width: 60%" v-model="model.f_entry_name"
9
+ v-on:keyup.enter="$parent.$parent.search()" condition="a.f_entry_name like '%{}%'" placeholder='项目名'>
10
+ </div>
11
+ <div class="form-group col-sm-3">
12
+ <label for="startDate" class="font_normal_body">开始时间:</label>
13
+ <datepicker id="startDate" placeholder="开始日期"
14
+ style="width: 60%!important;"
15
+ v-model="model.startDate"
16
+ :value.sync="model.startDate"
17
+ :format="'yyyy-MM-dd HH:mm:ss'"
18
+ :show-reset-button="true"
19
+ condition="cr.f_charge_date >= '{}'">
20
+ </datepicker>
21
+ </div>
22
+ <div class="form-group col-sm-3">
23
+ <label for="endDate" class="font_normal_body">结束时间:</label>
24
+ <datepicker id="endDate" placeholder="结束日期"
25
+ style="width: 60%!important;"
26
+ v-model="model.endDate"
27
+ :value.sync="model.endDate"
28
+ :format="'yyyy-MM-dd HH:mm:ss'"
29
+ :show-reset-button="true"
30
+ condition="cr.f_charge_date <= '{}'">
31
+ </datepicker>
32
+ </div>
33
+ <div class="form-group col-sm-3 button-range">
34
+ <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
35
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
36
+ <export-excel :data="$parent.$parent.getCondition"
37
+ :field="$parent.$parent.getfield"
38
+ sqlurl="rs/logic/applyExportfile"
39
+ sql-name="getApplyCharge"
40
+ template-name='收费记录信息导出'
41
+ :choose-col="true"></export-excel>
42
+ <div
43
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
44
+ @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
45
+ class="button_spacing"
46
+ style="float: right">
47
+ </div>
48
+ </div>
49
+ </div>
50
+ <div class="row" v-show="$parent.$parent.criteriaShow">
51
+ <div class="form-group col-sm-3">
52
+ <label class="font_normal_body">报建编号:</label>
53
+ <input type="text" style="width: 60%" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
54
+ v-on:keyup.enter="$parent.$parent.search()"
55
+ condition="a.f_apply_num = '{}'">
56
+ </div>
57
+ <div class="form-group col-sm-3">
58
+ <label class="font_normal_body">合同编号:</label>
59
+ <input type="text" style="width: 60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
60
+ v-on:keyup.enter="$parent.$parent.search()"
61
+ condition="a.f_contract_number = '{}'">
62
+ </div>
63
+ <div class="form-group col-sm-3">
64
+ <label class="font_normal_body">报建类型:</label>
65
+ <v-select
66
+ v-model="model.f_apply_type"
67
+ placeholder='请选择'
68
+ condition="a.f_apply_type = '{}'"
69
+ :value.sync="model.f_apply_type"
70
+ :options='$parent.$parent.applytype'
71
+ class="select select_list"
72
+ :value-single="true"
73
+ close-on-select ></v-select>
74
+ </div>
75
+ <div class="form-group col-sm-3">
76
+ <label class="font_normal_body">收费人员:</label>
77
+ <input type="text" class="input_search" style="width: 60%" placeholder='收费人员' v-model="model.f_charge_collectors"
78
+ v-on:keyup.enter="$parent.$parent.search()"
79
+ condition="cr.f_charge_collectors like '%{}%'">
80
+ </div>
81
+ <div class="form-group col-sm-3">
82
+ <label class="font_normal_body">付款方式:</label>
83
+ <v-select
84
+ v-model="model.f_payment_method"
85
+ placeholder='请选择'
86
+ condition="cr.f_payment_method = '{}'"
87
+ :value.sync="model.f_payment_method"
88
+ :options='$parent.$parent.paymentMethod'
89
+ class="select select_list"
90
+ :value-single="true"
91
+ close-on-select ></v-select>
92
+ </div>
93
+ <div class="form-group col-sm-3">
94
+ <label class="font_normal_body">缴费状态:</label>
95
+ <v-select
96
+ v-model="model.f_charge_status"
97
+ placeholder='请选择'
98
+ condition="cr.f_charge_status = '{}'"
99
+ :value.sync="model.f_charge_status"
100
+ :options='$parent.$parent.chargingStatus'
101
+ class="select select_list"
102
+ :value-single="true"
103
+ close-on-select ></v-select>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ </criteria>
108
+ <data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
109
+ <template partial='head'>
110
+ <tr>
111
+ <th>序号</th>
112
+ <th>报建编号</th>
113
+ <th>项目名称</th>
114
+ <th>合同编号</th>
115
+ <th>报建类型</th>
116
+ <th>缴费编码</th>
117
+ <th>收费金额</th>
118
+ <th>付款方式</th>
119
+ <th>收费人员</th>
120
+ <th>收费日期</th>
121
+ <th>状态</th>
122
+ <th>地址</th>
123
+ </tr>
124
+ </template>
125
+ <template partial='body'>
126
+ <tr >
127
+ <td style="text-align: center;">
128
+ <nobr><font>{{$index+1}}</font></nobr>
129
+ </td>
130
+ <td style="text-align: center;">
131
+ <nobr><font>{{row.f_apply_num}}</font></nobr>
132
+ </td>
133
+ <td style="text-align: center;">
134
+ <nobr><font>{{row.f_entry_name}}</font></nobr>
135
+ </td>
136
+ <td style="text-align: center;">
137
+ <nobr><font>{{row.f_contract_number}}</font></nobr>
138
+ </td>
139
+ <td style="text-align: center;">
140
+ <nobr><font>{{row.f_apply_type}}</font></nobr>
141
+ </td>
142
+ <td style="text-align: center;">
143
+ <nobr><font>{{row.f_charge_number}}</font></nobr>
144
+ </td>
145
+ <td style="text-align: center;">
146
+ <nobr><font>{{row.f_charge_money}}</font></nobr>
147
+ </td>
148
+ <td style="text-align: center;">
149
+ <nobr><font>{{row.f_payment_method}}</font></nobr>
150
+ </td>
151
+ <td style="text-align: center;">
152
+ <nobr><font>{{row.f_charge_collectors}}</font></nobr>
153
+ </td>
154
+ <td style="text-align: center;">
155
+ <nobr><font>{{row.f_charge_date}}</font></nobr>
156
+ </td>
157
+ <td style="text-align: center;">
158
+ <nobr><font>{{row.f_charge_status}}</font></nobr>
159
+ </td>
160
+ <td style="text-align: center;">
161
+ <nobr><font>{{row.f_address}}</font></nobr>
162
+ </td>
163
+ </tr>
164
+ </template>
165
+ </data-grid>
166
+ </criteria-paged>
167
+ </template>
168
+
169
+ <script>
170
+ import {PagedList} from 'vue-client'
171
+ import {HttpResetClass} from 'vue-client'
172
+ export default {
173
+ title: '报建收费列表',
174
+ data () {
175
+ return {
176
+ model: new PagedList('rs/sql/getApplyCharge', 30, {
177
+ data: {
178
+ orgid: this.$login.f.orgid
179
+ }
180
+ }, {
181
+ f_charge_money: 0
182
+ }),
183
+ applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
184
+ paymentMethod: [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')],
185
+ chargingStatus: [
186
+ {label: '全部', value: ''},
187
+ {label: '有效', value: '有效'},
188
+ {label: '无效', value: '无效'},
189
+ {label: '作废', value: '作废'}
190
+ ],
191
+ criteriaShow: false,
192
+ chargeAll: {
193
+ count: 0,
194
+ sum: 0
195
+ },
196
+ getfield: {
197
+ 'f_apply_num': '报建编号',
198
+ 'f_entry_name': '项目名称',
199
+ 'f_contract_number': '合同编号',
200
+ 'f_apply_type': '报建类型',
201
+ 'f_charge_money': '收费金额',
202
+ 'f_payment_method': '付款方式',
203
+ 'f_charge_collectors': '收费人员',
204
+ 'f_charge_date': '收费日期',
205
+ 'f_charge_status': '状态',
206
+ 'f_address': '地址'
207
+ }
208
+ }
209
+ },
210
+ ready () {
211
+ // 调用查询
212
+ this.search()
213
+ },
214
+ methods: {
215
+ clear () {
216
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
217
+ this.$refs.cp.$refs.cri.model[key] = []
218
+ })
219
+ },
220
+ // 查询
221
+ search () {
222
+ this.$refs.cp.$refs.cri.search()
223
+ this.getChargeAll()
224
+ },
225
+ async getChargeAll () {
226
+ let http = new HttpResetClass()
227
+ let data = {
228
+ condition: this.model.condition,
229
+ data: {
230
+ orgid: this.$login.f.orgid
231
+ }
232
+ }
233
+ let res = await http.load('POST', 'rs/sql/getChargeAll', {data: data}, {resolveMsg: null, rejectMsg: null})
234
+
235
+ this.chargeAll = res.data[0]
236
+ }
237
+ },
238
+ computed: {
239
+ getCondition () {
240
+ return {
241
+ condition: this.$refs.cp.$refs.cri.condition,
242
+ data: {
243
+ orgid: this.$login.f.orgid
244
+ }
245
+ }
246
+ }
247
+ }
248
+ }
249
+ </script>
250
+
251
+ <style scoped>
252
+ </style>