apply-clients 3.3.46 → 3.3.50

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 (39) hide show
  1. package/build/dev-server.js +3 -2
  2. package/package.json +2 -2
  3. package/src/AndroidApp.vue +35 -35
  4. package/src/apply.js +93 -90
  5. package/src/applyAndroid.js +31 -31
  6. package/src/components/android/AppOnetomany.vue +301 -301
  7. package/src/components/android/AppServiceView.vue +566 -566
  8. package/src/components/android/AppSign.vue +142 -97
  9. package/src/components/android/Function/AppInstallFunction.vue +366 -366
  10. package/src/components/android/Process/AppExplorationUser.vue +35 -1
  11. package/src/components/android/Process/AppServiceControl.vue +4 -0
  12. package/src/components/android/Process/Processes/AppBuildSign.vue +46 -38
  13. package/src/components/android/Supervisory/AppProcessSupervisory.vue +300 -300
  14. package/src/components/android/Supervisory/AppSupervisoryCart.vue +4 -0
  15. package/src/components/product/ApplyCharge/ApplyChargeList.vue +382 -367
  16. package/src/components/product/Function/InstallFunction.vue +132 -132
  17. package/src/components/product/Function/InstallInfoSelect.vue +320 -310
  18. package/src/components/product/Function/Service/FunctionServiceControl.vue +445 -445
  19. package/src/components/product/Material/MaterialDetailed.vue +235 -235
  20. package/src/components/product/OldApply/Monitor/MonitorApply.vue +329 -329
  21. package/src/components/product/OldApply/OldApply.vue +150 -150
  22. package/src/components/product/Onetomany.vue +377 -377
  23. package/src/components/product/Print/BuildOrder/buildOrderList.vue +264 -0
  24. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +153 -0
  25. package/src/components/product/Process/ExplorationSelect.vue +457 -432
  26. package/src/components/product/Process/ExplorationUser.vue +147 -138
  27. package/src/components/product/Process/Processes/InstallationDetails.vue +592 -592
  28. package/src/components/product/Process/Processes/Print/printCharge.vue +142 -142
  29. package/src/components/product/Process/Processes/Print/printRefund.vue +196 -196
  30. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +207 -207
  31. package/src/components/product/Process/Processes/chargeManagement.vue +17 -0
  32. package/src/components/product/Process/Service/ServiceControl.vue +1265 -1254
  33. package/src/components/product/ServiceView.vue +631 -631
  34. package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
  35. package/src/components/product/Supervisory/SupervisoryList.vue +296 -296
  36. package/src/components/product/Supervisory/SupervisoryhCart.vue +6 -0
  37. package/src/components/product/VueUtils/ApplyUpload.vue +273 -273
  38. package/src/components/product/VueUtils/HighMeter.vue +208 -208
  39. package/src/components/product/Process/Processes/Print/printBuildOrder.vue +0 -193
@@ -105,6 +105,21 @@
105
105
  </datepicker>
106
106
  </div>
107
107
  </div>
108
+ <div class="row form-group app-input" v-if="$parent.$parent.criteriaShow">
109
+ <label class="">稍后处理:</label>
110
+ <div class="col-xs-8" >
111
+ <v-select
112
+ width="100%"
113
+ v-model="model.f_is_later"
114
+ placeholder='稍后处理'
115
+ condition="f_is_later = '{}'"
116
+ :value.sync="model.f_is_later"
117
+ :options='$parent.$parent.laterList'
118
+ class="select select_list"
119
+ :value-single="true"
120
+ close-on-select ></v-select>
121
+ </div>
122
+ </div>
108
123
  <div class="row form-group text-right" style="">
109
124
  <button class="btn btn-primary" @click="$parent.$parent.search()">查询</button>
110
125
  <button class="btn btn-info" @click="$parent.$parent.clear()">清空</button>
@@ -157,6 +172,7 @@
157
172
  </div>
158
173
 
159
174
  <div class="col-xs-12 text-right">
175
+ <button class="btn btn-info" @click="$parent.$parent.$parent.later(row)" v-if="row.f_is_later !== '是'">稍后处理</button>
160
176
  <button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">处理</button>
161
177
  </div>
162
178
  </div>
@@ -185,13 +201,31 @@ export default {
185
201
  criteriaShow: false,
186
202
  applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')], // 所有报建类型
187
203
  defnames: [{label: '全部', value: ''}],
188
- applyNatures: [{label: '全部', value: ''}] // 报建性质
204
+ applyNatures: [{label: '全部', value: ''}], // 报建性质
205
+ laterList: [
206
+ {label: '全部', value: ''},
207
+ {label: '是', value: '是'},
208
+ {label: '否', value: '否'}
209
+ ]
189
210
  }
190
211
  },
191
212
  ready () {
192
213
  this.search()
193
214
  },
194
215
  methods: {
216
+ async later (row) {
217
+ let res = await this.$showMessage('您确定要将此任务加入稍后处理吗?', ['confirm'])
218
+
219
+ if (res === 'confirm') {
220
+ row.f_is_later = '是'
221
+ let res = await this.$resetpost(
222
+ 'rs/entity/t_apply',
223
+ row
224
+ )
225
+
226
+ this.$refs.cp.$refs.cri.search()
227
+ }
228
+ },
195
229
  dialNumber (phone) {
196
230
  this.$showMessage(`是否拨打电话:${phone}`, ['confirm']).then((res) => {
197
231
  if (res === 'confirm') {
@@ -459,6 +459,10 @@ export default {
459
459
  'checkRepeat' (index) {
460
460
  this.checkDuplicate(index)
461
461
  },
462
+ 'buildReadyEvent' () {
463
+ this.setLabelValue('施工单位', Vue.user.name)
464
+ this.setLabelValue('施工安装时间', new Date().Format('yyyy-MM-dd HH:mm:ss'))
465
+ },
462
466
  // 选择材料
463
467
  async materialNameChenge (index, fieldIndex) {
464
468
  let material = this.show_data.onetomany[index].fields[fieldIndex].value
@@ -1,38 +1,46 @@
1
- <template>
2
- <app-sign></app-sign>
3
- </template>
4
- <script>
5
- import {getNowDate,isEmpty} from '../../../Util'
6
- import {HttpResetClass} from 'vue-client'
7
- import Vue from "vue";
8
-
9
- export default {
10
- title: '施工签字',
11
- props: {
12
- selectdata: {
13
- type: Object
14
- },
15
- mark: {
16
- type: Number,
17
- default: 0
18
- }
19
- },
20
- data () {
21
- return {
22
- }
23
- },
24
- ready () {
25
- console.log('===========施工签字================')
26
- },
27
- methods: {
28
- },
29
- events: {
30
- },
31
- computed: {
32
- },
33
- watch: {
34
- }
35
- }
36
- </script>
37
- <style scoped lang="less">
38
- </style>
1
+ <template>
2
+ <app-sign @sign-success="signSuccess" :file-path="selectdata.f_construction_sign" @sign-clean="signClean"></app-sign>
3
+ </template>
4
+ <script>
5
+ import {getNowDate,isEmpty} from '../../../Util'
6
+ import {HttpResetClass} from 'vue-client'
7
+ import Vue from "vue";
8
+
9
+ export default {
10
+ title: '施工签字',
11
+ props: {
12
+ selectdata: {
13
+ type: Object
14
+ },
15
+ mark: {
16
+ type: Number,
17
+ default: 0
18
+ }
19
+ },
20
+ data () {
21
+ return {
22
+ }
23
+ },
24
+ ready () {
25
+ console.log('===========施工签字================')
26
+ },
27
+ methods: {
28
+ signClean () {
29
+ this.selectdata.f_construction_sign = null
30
+ },
31
+ signSuccess (fileUrl) {
32
+ console.log('==============签字回调==================')
33
+ console.log(fileUrl)
34
+ this.selectdata.f_construction_sign = fileUrl
35
+ }
36
+ },
37
+ events: {
38
+ },
39
+ computed: {
40
+ },
41
+ watch: {
42
+ }
43
+ }
44
+ </script>
45
+ <style scoped lang="less">
46
+ </style>