apply-clients 3.3.40 → 3.3.44
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.
- package/build/dev-server.js +130 -130
- package/package.json +2 -2
- package/src/AndroidApp.vue +35 -30
- package/src/components/android/AppOnetomany.vue +301 -305
- package/src/components/android/AppServiceView.vue +3 -7
- package/src/components/android/Process/AppExplorationUser.vue +306 -306
- package/src/components/android/Process/AppServiceControl.vue +757 -757
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +51 -13
- package/src/components/product/Material/MaterialDetailed.vue +1 -1
- package/src/components/product/OldApply/Handle/HandleApply.vue +306 -300
- package/src/components/product/OldApply/Monitor/MonitorApply.vue +7 -1
- package/src/components/product/Onetomany.vue +377 -381
- package/src/components/product/Process/Processes/Print/printCharge.vue +142 -142
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +6 -1
- package/src/components/product/ServiceView.vue +2 -8
- package/src/components/product/Supervisory/SupervisoryList.vue +56 -6
|
@@ -62,6 +62,12 @@
|
|
|
62
62
|
v-on:keyup.enter="$parent.$parent.search()"
|
|
63
63
|
condition="f_address like '%{}%'">
|
|
64
64
|
</div>
|
|
65
|
+
<div class="form-group col-sm-3">
|
|
66
|
+
<label class="font_normal_body">表  号:</label>
|
|
67
|
+
<input type="text" style="width:60%" class="input_search" placeholder='表号' v-model="model.f_meternumber"
|
|
68
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
69
|
+
condition="f_meternumber like '%{}%'">
|
|
70
|
+
</div>
|
|
65
71
|
<div class="form-group col-sm-3">
|
|
66
72
|
<label class="font_normal_body">报建类型:</label>
|
|
67
73
|
<v-select
|
|
@@ -311,7 +317,7 @@ export default {
|
|
|
311
317
|
computed: {
|
|
312
318
|
getCondition () {
|
|
313
319
|
return {
|
|
314
|
-
condition: this
|
|
320
|
+
condition: this.model.condition
|
|
315
321
|
}
|
|
316
322
|
}
|
|
317
323
|
}
|