apply-clients 3.4.2-FuGu-11 → 3.4.2-FuGu-15
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
CHANGED
|
@@ -282,7 +282,14 @@ export default {
|
|
|
282
282
|
})
|
|
283
283
|
}
|
|
284
284
|
}
|
|
285
|
-
|
|
285
|
+
if (this.selectdata.f_apply_source === '微信公众号' && this.selectdata.defname === '现场勘察') {
|
|
286
|
+
for (const item of this.selectdata.fields) {
|
|
287
|
+
if (item.label==='预约地址' || item.label==='地址类型' || item.label==='片区' || item.label==='区/县' || item.label==='街道' || item.label==='小区') {
|
|
288
|
+
item.hidden = false
|
|
289
|
+
item.required = true
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
286
293
|
// 消除双向绑定,避免子组件(显示层)数据更改,父组件(控制层)也更改
|
|
287
294
|
let temp = JSON.parse(JSON.stringify(this.selectdata))
|
|
288
295
|
|