imeik-bizui 2.0.7 → 2.0.8
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/dist/bizui/src/FieldApplyTypeView/index.vue +23 -21
- package/dist/imeik-bizui.common.js +105 -103
- package/dist/imeik-bizui.common.js.gz +0 -0
- package/dist/imeik-bizui.umd.js +105 -103
- package/dist/imeik-bizui.umd.js.gz +0 -0
- package/dist/imeik-bizui.umd.min.js +4 -4
- package/dist/imeik-bizui.umd.min.js.gz +0 -0
- package/package.json +1 -1
|
@@ -303,27 +303,29 @@ export default {
|
|
|
303
303
|
this.$set(this.formConfig.formItems[index].attrs, 'disabled', false)
|
|
304
304
|
}
|
|
305
305
|
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
306
|
+
this.$nextTick(() => {
|
|
307
|
+
getTagManageList({ tagModel: 'APPLY', tagCode: 'al-fxssqxmbh' }).then((res) => {
|
|
308
|
+
if (res.code === 200) {
|
|
309
|
+
Axios.get(res.data[0].tagValueUrl).then((subRes) => {
|
|
310
|
+
if (subRes.data.code === 200) {
|
|
311
|
+
const fiterData = []
|
|
312
|
+
subRes.data.data.forEach((item) => {
|
|
313
|
+
if (this.belongCompany === item.dicExt) {
|
|
314
|
+
item.label = item.dicName
|
|
315
|
+
item.value = item.dicValue
|
|
316
|
+
fiterData.push(item)
|
|
317
|
+
}
|
|
318
|
+
})
|
|
319
|
+
const options = fiterData
|
|
320
|
+
const newData = JSON.parse(JSON.stringify(this.formConfig.formItems[index]))
|
|
321
|
+
newData.attrs.options = options
|
|
322
|
+
this.$set(this.formConfig.formItems, index, newData)
|
|
323
|
+
}
|
|
324
|
+
})
|
|
325
|
+
} else {
|
|
326
|
+
this.$message.error(res.msg)
|
|
327
|
+
}
|
|
328
|
+
})
|
|
327
329
|
})
|
|
328
330
|
},
|
|
329
331
|
propChange(data) {
|