apply-clients 5.0.35-ezhou-16 → 5.0.35-ezhou-18
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/package.json +1 -1
- package/src/apply.js +1 -2
- package/src/components/product/EngineeringManagement/EngineerUpload.vue +304 -304
- package/src/components/product/EngineeringManagement/EngineeringSelect.vue +586 -586
- package/src/components/product/EngineeringSupervisory/EngineeringApplyStopInfo.vue +281 -281
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryControl.vue +132 -132
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryList.vue +340 -340
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryServiceControl.vue +490 -490
- package/src/components/product/Function/InstallInfoSelect.vue +255 -255
- package/src/components/product/Function/functions/BuyerMessage.vue +512 -512
- package/src/components/product/Overview/addMaterialScience.vue +217 -217
- package/src/components/product/Process/ExplorationSelect.vue +805 -805
- package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +405 -405
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +2285 -2285
- package/src/components/product/Process/Processes/selectUserinfo.vue +13 -11
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +556 -556
- package/src/components/product/Supervisory/SupervisoryList.vue +435 -435
- package/src/components/product/report/ChargeMoneyReport.vue +150 -136
- package/src/components/product/stopInfo/ApplyStopInfo.vue +281 -281
- package/src/ezhouAndroid.js +48 -48
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
<div class="row" v-show="$parent.$parent.$parent.criteriaShow">
|
|
44
44
|
<div class="form-group col-sm-3">
|
|
45
45
|
<label class="font_normal_body">客户地址:</label>
|
|
46
|
-
<input type="text" style="width:60%" class="input_search"
|
|
46
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
47
|
+
v-on:keyup.enter="search" condition="ua.f_address like '%{}%'" placeholder='客户地址'>
|
|
47
48
|
</div>
|
|
48
49
|
</div>
|
|
49
50
|
</div>
|
|
@@ -105,44 +106,45 @@ export default {
|
|
|
105
106
|
default: 0
|
|
106
107
|
}
|
|
107
108
|
},
|
|
108
|
-
data() {
|
|
109
|
+
data () {
|
|
109
110
|
return {
|
|
110
111
|
showselect: false,
|
|
111
112
|
model: new PagedList('rs/sql/applyGetUserinfos', 20, null),
|
|
112
113
|
criteriaShow: false
|
|
113
114
|
}
|
|
114
115
|
},
|
|
115
|
-
ready() {
|
|
116
|
+
ready () {
|
|
116
117
|
},
|
|
117
118
|
methods: {
|
|
118
|
-
select(row) {
|
|
119
|
+
select (row) {
|
|
119
120
|
console.log("当前传入数据ccc", row)
|
|
120
121
|
this.$dispatch('selectUserinfo', row)
|
|
121
122
|
|
|
122
123
|
this.showselect = false
|
|
123
124
|
},
|
|
124
|
-
searchCondition(args) {
|
|
125
|
+
searchCondition (args) {
|
|
125
126
|
args.condition = `${args.condition}`
|
|
126
127
|
|
|
127
128
|
this.model.search(args.condition, args.model)
|
|
128
129
|
},
|
|
129
|
-
clear() {
|
|
130
|
+
clear () {
|
|
130
131
|
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
131
132
|
this.$refs.cp.$refs.cri.model[key] = null
|
|
132
133
|
})
|
|
133
134
|
},
|
|
134
|
-
openSelect() {
|
|
135
|
+
openSelect () {
|
|
135
136
|
this.showselect = true
|
|
136
|
-
|
|
137
|
+
// 数据量太大,查询太慢,暂时不查询
|
|
137
138
|
// setTimeout(() => {
|
|
138
139
|
// this.$refs.cp.$refs.cri.search()
|
|
139
140
|
// }, 100)
|
|
140
|
-
|
|
141
|
-
}
|
|
141
|
+
// }
|
|
142
|
+
}
|
|
143
|
+
},
|
|
142
144
|
events: {},
|
|
143
145
|
computed: {},
|
|
144
146
|
watch: {}
|
|
145
|
-
|
|
147
|
+
}
|
|
146
148
|
</script>
|
|
147
149
|
<style scoped>
|
|
148
150
|
.control-label-justify {
|