apply-clients 7.1.36-yuchuan-83 → 7.1.36-yuchuan-84

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 (36) hide show
  1. package/build/dev-server.js +3 -6
  2. package/package.json +1 -1
  3. package/src/components/android/AppServiceView.vue +603 -603
  4. package/src/components/android/Process/AppServiceControl.vue +1434 -1434
  5. package/src/components/android/Process/Processes/AppInstallationDetails.vue +1032 -1032
  6. package/src/components/android/Process/Processes/newAppInstallationDetails.vue +671 -671
  7. package/src/components/android/SealBind.vue +426 -426
  8. package/src/components/product/ApplyCharge/ApplyChargeList.vue +1115 -1115
  9. package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeList.vue +211 -211
  10. package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +325 -325
  11. package/src/components/product/Function/Service/FunctionServiceControl.vue +581 -581
  12. package/src/components/product/GongJianPush/ApplyPushDispose.vue +299 -299
  13. package/src/components/product/GongJianPush/ApplyPushManage.vue +92 -92
  14. package/src/components/product/Ignition/IgnitionListManage.vue +604 -604
  15. package/src/components/product/List/OldShowDevices.vue +272 -272
  16. package/src/components/product/List/ShowAllActivity.vue +540 -540
  17. package/src/components/product/Print/BuildOrder/buildOrderList.vue +446 -446
  18. package/src/components/product/Print/BuildOrder/printGaiXianOrder.vue +271 -271
  19. package/src/components/product/Print/OrderPrint/GaiXianOrder.vue +314 -314
  20. package/src/components/product/Print/OrderPrint/printChaiChuOrder.vue +266 -266
  21. package/src/components/product/Process/ExplorationSelect.vue +593 -593
  22. package/src/components/product/Process/NewExplorationSelect.vue +587 -587
  23. package/src/components/product/Process/Processes/InstallationDetails.vue +1166 -1166
  24. package/src/components/product/Process/Processes/Print/printCharge.vue +250 -250
  25. package/src/components/product/Process/Processes/Print/printGaiXianCharge.vue +244 -244
  26. package/src/components/product/Process/Processes/chargeManagement.vue +766 -766
  27. package/src/components/product/Process/Processes/newInstallationDetails.vue +683 -683
  28. package/src/components/product/Process/Processes/supplementalAgreement.vue +298 -298
  29. package/src/components/product/Process/Service/ServiceControl.vue +2232 -2232
  30. package/src/components/product/ServiceView.vue +650 -650
  31. package/src/components/product/Supervisory/ExportExcel.vue +359 -359
  32. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +592 -592
  33. package/src/components/product/Supervisory/SupervisoryList.vue +585 -585
  34. package/src/components/product/Supervisory/YiBanSupervisoryList.vue +543 -543
  35. package/src/components/product/VueUtils/ApplyUpload.vue +302 -302
  36. package/src/components/product/VueUtils/HighMeter.vue +208 -208
@@ -1,211 +1,211 @@
1
- <template>
2
- <!-- 改线记录 -->
3
- <criteria-paged :model="model" v-ref:cp>
4
- <criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
5
- <div class="form-horizontal select-overspread container-fluid auto" partial>
6
- <div class="row">
7
- <div class="form-group col-sm-3">
8
- <label class="font_normal_body"><strong>报建编号:</strong></label>
9
- <input type="text" class="input_search" style="width: 60%" v-model="model.f_apply_num"
10
- v-on:keyup.enter="$parent.$parent.search()" condition="ap.f_apply_num like '%{}%'" placeholder='报建编号'>
11
- </div>
12
- <div class="form-group col-sm-3">
13
- <label class="font_normal_body"><strong>用户名称:</strong></label>
14
- <input type="text" class="input_search" style="width: 60%" v-model="model.f_user_name"
15
- v-on:keyup.enter="$parent.$parent.search()" condition="ap.f_user_name like '%{}%'" placeholder='用户名称'>
16
- </div>
17
- <div class="form-group col-sm-3">
18
- <label class="font_normal_body"><strong>电&emsp;&emsp;话:</strong></label>
19
- <input type="text" class="input_search" style="width: 60%" v-model="model.f_phone"
20
- v-on:keyup.enter="$parent.$parent.search()" condition="ap.f_phone like '%{}%'" placeholder='电话'>
21
- </div>
22
- <div class="form-group col-sm-3 button-range">
23
- <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
24
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
25
- <export-excel :data="$parent.$parent.getCondition"
26
- :field="$parent.$parent.getfield"
27
- sqlurl="rs/logic/applyExportfile"
28
- sql-name="getGaiXianList"
29
- template-name='改线记录信息导出'
30
- :choose-col="true"></export-excel>
31
- <div
32
- :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
33
- @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
34
- class="button_spacing"
35
- style="float: right">
36
- </div>
37
- </div>
38
- </div>
39
- <div class="row" v-show="$parent.$parent.criteriaShow">
40
- <div class="form-group col-sm-3">
41
- <label class="font_normal_body"><strong>改线状态:</strong></label>
42
- <v-select
43
- v-model="$parent.$parent.showStatus"
44
- placeholder='请选择'
45
- :value.sync="$parent.$parent.showStatus"
46
- :options='$parent.$parent.applytype'
47
- class="select select_list"
48
- :value-single="true"
49
- close-on-select ></v-select>
50
- </div>
51
- <div class="form-group col-sm-3">
52
- <label class="font_normal_body"><strong>派工类型:</strong></label>
53
- <v-select
54
- v-model="model.f_dispatching_type"
55
- placeholder='工队/维修'
56
- condition="ap.f_dispatching_type = '{}'"
57
- :value.sync="model.f_dispatching_type"
58
- :options='$parent.$parent.dispatching'
59
- class="select select_list"
60
- :value-single="true"
61
- close-on-select ></v-select>
62
- </div>
63
- <div class="form-group col-sm-3">
64
- <label for="startDate" class="font_normal_body"><strong>缴费时间:</strong></label>
65
- <datepicker id="startDate" placeholder="开始日期"
66
- style="width: 60%!important;"
67
- v-model="model.startDate"
68
- :value.sync="model.startDate"
69
- :format="'yyyy-MM-dd 00:00:00'"
70
- :show-reset-button="true"
71
- condition="cr.f_charge_date >= '{}'">
72
- </datepicker>
73
- </div>
74
- <div class="form-group col-sm-3">
75
- <label for="endDate" class="font_normal_body"><strong>缴费时间:</strong></label>
76
- <datepicker id="endDate" placeholder="结束日期"
77
- style="width: 60%!important;"
78
- v-model="model.endDate"
79
- :value.sync="model.endDate"
80
- :format="'yyyy-MM-dd 23:59:59'"
81
- :show-reset-button="true"
82
- condition="cr.f_charge_date <= '{}'">
83
- </datepicker>
84
- </div>
85
- </div>
86
- </div>
87
- </criteria>
88
- <data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
89
- <template partial='head'>
90
- <tr>
91
- <th style="white-space: nowrap;">序号</th>
92
- <th style="white-space: nowrap;">报建编号</th>
93
- <th style="white-space: nowrap;">用户名称</th>
94
- <th style="white-space: nowrap;">电话</th>
95
- <th style="white-space: nowrap;">报建类型</th>
96
- <th style="white-space: nowrap;">报建性质</th>
97
- <th style="white-space: nowrap;">收费金额</th>
98
- <th style="white-space: nowrap;">收费日期</th>
99
- </tr>
100
- </template>
101
- <template partial='body'>
102
- <tr >
103
- <td style="text-align: center;">
104
- <nobr><font>{{$index+1}}</font></nobr>
105
- </td>
106
- <td style="text-align: center;">
107
- <nobr><font>{{row.f_apply_num}}</font></nobr>
108
- </td>
109
- <td style="text-align: center;">
110
- <nobr><font>{{row.f_user_name}}</font></nobr>
111
- </td>
112
- <td style="text-align: center;">
113
- <nobr><font>{{row.f_phone}}</font></nobr>
114
- </td>
115
- <td style="text-align: center;">
116
- <nobr><font>{{row.f_apply_type}}</font></nobr>
117
- </td>
118
- <td style="text-align: center;">
119
- <nobr><font>{{row.f_apply_nature}}</font></nobr>
120
- </td>
121
- <td style="text-align: center;">
122
- <nobr><font>{{row.f_charge_money}}</font></nobr>
123
- </td>
124
- <td style="text-align: center;">
125
- <nobr><font>{{row.f_charge_date}}</font></nobr>
126
- </td>
127
- </tr>
128
- </template>
129
- </data-grid>
130
- </criteria-paged>
131
-
132
- </template>
133
-
134
- <script>
135
- import {PagedList} from 'vue-client'
136
- import {HttpResetClass} from 'vue-client'
137
- import {isEmpty} from '../../Util'
138
- import Vue from "vue";
139
- export default {
140
- title: '改线记录列表',
141
- data () {
142
- return {
143
- model: new PagedList('rs/sql/getGaiXianList', 30, null, {
144
- f_charge_money: 0
145
- }),
146
- applytype: [{label: '全部', value: ''},{label: '已完工', value: false}, {label: '已缴费', value: true}],
147
- dispatching: [{label: '全部', value: ''}, {label: '施工工队', value: '施工工队'}, {label: '安检维修中心', value: '安检维修中心'}],
148
- criteriaShow: false,
149
- showStatus: true,
150
- getfield: {
151
- 'f_apply_num': '报建编号',
152
- 'f_user_name': '用户名称',
153
- 'f_phone': '电话',
154
- 'f_apply_type': '报建类型',
155
- 'f_apply_nature': '报建性质',
156
- 'f_charge_money': '收费金额',
157
- 'f_charge_date': '收费日期'
158
- }
159
- }
160
- },
161
- ready () {
162
- // 调用查询
163
- this.search()
164
- },
165
- methods: {
166
- clear () {
167
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
168
- this.$refs.cp.$refs.cri.model[key] = []
169
- })
170
- },
171
- searchCondition (args) {
172
- if(isEmpty(this.showStatus)){
173
- args.condition = args.condition + ` and act.defname in ('工程派工','完工')`
174
- }else{
175
- if (this.showStatus){
176
- args.condition = args.condition + ` and act.defname = '工程派工'`
177
- }else {
178
- args.condition = args.condition + ` and act.defname = '完工'`
179
- }
180
- }
181
-
182
- console.log("args.condition",args.condition)
183
- this.model.search(args.condition, args.model)
184
- },
185
- // 查询
186
- search () {
187
- this.$refs.cp.$refs.cri.search()
188
- }
189
- },
190
- computed: {
191
- getCondition () {
192
- if (this.showStatus===true){
193
- this.$refs.cp.$refs.cri.condition += ` and act.defname = '工程派工'`
194
- }else if (this.showStatus===false) {
195
- this.$refs.cp.$refs.cri.condition+= ` and act.defname = '完工'`
196
- }else {
197
- this.$refs.cp.$refs.cri.condition += ` and act.defname in ('工程派工','完工')`
198
- }
199
- return {
200
- condition: this.$refs.cp.$refs.cri.condition,
201
- data: {
202
- orgid: this.$login.f.orgid
203
- }
204
- }
205
- }
206
- }
207
- }
208
- </script>
209
-
210
- <style scoped>
211
- </style>
1
+ <template>
2
+ <!-- 改线记录 -->
3
+ <criteria-paged :model="model" v-ref:cp>
4
+ <criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
5
+ <div class="form-horizontal select-overspread container-fluid auto" partial>
6
+ <div class="row">
7
+ <div class="form-group col-sm-3">
8
+ <label class="font_normal_body"><strong>报建编号:</strong></label>
9
+ <input type="text" class="input_search" style="width: 60%" v-model="model.f_apply_num"
10
+ v-on:keyup.enter="$parent.$parent.search()" condition="ap.f_apply_num like '%{}%'" placeholder='报建编号'>
11
+ </div>
12
+ <div class="form-group col-sm-3">
13
+ <label class="font_normal_body"><strong>用户名称:</strong></label>
14
+ <input type="text" class="input_search" style="width: 60%" v-model="model.f_user_name"
15
+ v-on:keyup.enter="$parent.$parent.search()" condition="ap.f_user_name like '%{}%'" placeholder='用户名称'>
16
+ </div>
17
+ <div class="form-group col-sm-3">
18
+ <label class="font_normal_body"><strong>电&emsp;&emsp;话:</strong></label>
19
+ <input type="text" class="input_search" style="width: 60%" v-model="model.f_phone"
20
+ v-on:keyup.enter="$parent.$parent.search()" condition="ap.f_phone like '%{}%'" placeholder='电话'>
21
+ </div>
22
+ <div class="form-group col-sm-3 button-range">
23
+ <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
24
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
25
+ <export-excel :data="$parent.$parent.getCondition"
26
+ :field="$parent.$parent.getfield"
27
+ sqlurl="rs/logic/applyExportfile"
28
+ sql-name="getGaiXianList"
29
+ template-name='改线记录信息导出'
30
+ :choose-col="true"></export-excel>
31
+ <div
32
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
33
+ @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
34
+ class="button_spacing"
35
+ style="float: right">
36
+ </div>
37
+ </div>
38
+ </div>
39
+ <div class="row" v-show="$parent.$parent.criteriaShow">
40
+ <div class="form-group col-sm-3">
41
+ <label class="font_normal_body"><strong>改线状态:</strong></label>
42
+ <v-select
43
+ v-model="$parent.$parent.showStatus"
44
+ placeholder='请选择'
45
+ :value.sync="$parent.$parent.showStatus"
46
+ :options='$parent.$parent.applytype'
47
+ class="select select_list"
48
+ :value-single="true"
49
+ close-on-select ></v-select>
50
+ </div>
51
+ <div class="form-group col-sm-3">
52
+ <label class="font_normal_body"><strong>派工类型:</strong></label>
53
+ <v-select
54
+ v-model="model.f_dispatching_type"
55
+ placeholder='工队/维修'
56
+ condition="ap.f_dispatching_type = '{}'"
57
+ :value.sync="model.f_dispatching_type"
58
+ :options='$parent.$parent.dispatching'
59
+ class="select select_list"
60
+ :value-single="true"
61
+ close-on-select ></v-select>
62
+ </div>
63
+ <div class="form-group col-sm-3">
64
+ <label for="startDate" class="font_normal_body"><strong>缴费时间:</strong></label>
65
+ <datepicker id="startDate" placeholder="开始日期"
66
+ style="width: 60%!important;"
67
+ v-model="model.startDate"
68
+ :value.sync="model.startDate"
69
+ :format="'yyyy-MM-dd 00:00:00'"
70
+ :show-reset-button="true"
71
+ condition="cr.f_charge_date >= '{}'">
72
+ </datepicker>
73
+ </div>
74
+ <div class="form-group col-sm-3">
75
+ <label for="endDate" class="font_normal_body"><strong>缴费时间:</strong></label>
76
+ <datepicker id="endDate" placeholder="结束日期"
77
+ style="width: 60%!important;"
78
+ v-model="model.endDate"
79
+ :value.sync="model.endDate"
80
+ :format="'yyyy-MM-dd 23:59:59'"
81
+ :show-reset-button="true"
82
+ condition="cr.f_charge_date <= '{}'">
83
+ </datepicker>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </criteria>
88
+ <data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
89
+ <template partial='head'>
90
+ <tr>
91
+ <th style="white-space: nowrap;">序号</th>
92
+ <th style="white-space: nowrap;">报建编号</th>
93
+ <th style="white-space: nowrap;">用户名称</th>
94
+ <th style="white-space: nowrap;">电话</th>
95
+ <th style="white-space: nowrap;">报建类型</th>
96
+ <th style="white-space: nowrap;">报建性质</th>
97
+ <th style="white-space: nowrap;">收费金额</th>
98
+ <th style="white-space: nowrap;">收费日期</th>
99
+ </tr>
100
+ </template>
101
+ <template partial='body'>
102
+ <tr >
103
+ <td style="text-align: center;">
104
+ <nobr><font>{{$index+1}}</font></nobr>
105
+ </td>
106
+ <td style="text-align: center;">
107
+ <nobr><font>{{row.f_apply_num}}</font></nobr>
108
+ </td>
109
+ <td style="text-align: center;">
110
+ <nobr><font>{{row.f_user_name}}</font></nobr>
111
+ </td>
112
+ <td style="text-align: center;">
113
+ <nobr><font>{{row.f_phone}}</font></nobr>
114
+ </td>
115
+ <td style="text-align: center;">
116
+ <nobr><font>{{row.f_apply_type}}</font></nobr>
117
+ </td>
118
+ <td style="text-align: center;">
119
+ <nobr><font>{{row.f_apply_nature}}</font></nobr>
120
+ </td>
121
+ <td style="text-align: center;">
122
+ <nobr><font>{{row.f_charge_money}}</font></nobr>
123
+ </td>
124
+ <td style="text-align: center;">
125
+ <nobr><font>{{row.f_charge_date}}</font></nobr>
126
+ </td>
127
+ </tr>
128
+ </template>
129
+ </data-grid>
130
+ </criteria-paged>
131
+
132
+ </template>
133
+
134
+ <script>
135
+ import {PagedList} from 'vue-client'
136
+ import {HttpResetClass} from 'vue-client'
137
+ import {isEmpty} from '../../Util'
138
+ import Vue from "vue";
139
+ export default {
140
+ title: '改线记录列表',
141
+ data () {
142
+ return {
143
+ model: new PagedList('rs/sql/getGaiXianList', 30, null, {
144
+ f_charge_money: 0
145
+ }),
146
+ applytype: [{label: '全部', value: ''},{label: '已完工', value: false}, {label: '已缴费', value: true}],
147
+ dispatching: [{label: '全部', value: ''}, {label: '施工工队', value: '施工工队'}, {label: '安检维修中心', value: '安检维修中心'}],
148
+ criteriaShow: false,
149
+ showStatus: true,
150
+ getfield: {
151
+ 'f_apply_num': '报建编号',
152
+ 'f_user_name': '用户名称',
153
+ 'f_phone': '电话',
154
+ 'f_apply_type': '报建类型',
155
+ 'f_apply_nature': '报建性质',
156
+ 'f_charge_money': '收费金额',
157
+ 'f_charge_date': '收费日期'
158
+ }
159
+ }
160
+ },
161
+ ready () {
162
+ // 调用查询
163
+ this.search()
164
+ },
165
+ methods: {
166
+ clear () {
167
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
168
+ this.$refs.cp.$refs.cri.model[key] = []
169
+ })
170
+ },
171
+ searchCondition (args) {
172
+ if(isEmpty(this.showStatus)){
173
+ args.condition = args.condition + ` and act.defname in ('工程派工','完工')`
174
+ }else{
175
+ if (this.showStatus){
176
+ args.condition = args.condition + ` and act.defname = '工程派工'`
177
+ }else {
178
+ args.condition = args.condition + ` and act.defname = '完工'`
179
+ }
180
+ }
181
+
182
+ console.log("args.condition",args.condition)
183
+ this.model.search(args.condition, args.model)
184
+ },
185
+ // 查询
186
+ search () {
187
+ this.$refs.cp.$refs.cri.search()
188
+ }
189
+ },
190
+ computed: {
191
+ getCondition () {
192
+ if (this.showStatus===true){
193
+ this.$refs.cp.$refs.cri.condition += ` and act.defname = '工程派工'`
194
+ }else if (this.showStatus===false) {
195
+ this.$refs.cp.$refs.cri.condition+= ` and act.defname = '完工'`
196
+ }else {
197
+ this.$refs.cp.$refs.cri.condition += ` and act.defname in ('工程派工','完工')`
198
+ }
199
+ return {
200
+ condition: this.$refs.cp.$refs.cri.condition,
201
+ data: {
202
+ orgid: this.$login.f.orgid
203
+ }
204
+ }
205
+ }
206
+ }
207
+ }
208
+ </script>
209
+
210
+ <style scoped>
211
+ </style>