Commit 5f2c6ec4 by “lijun”

bug的修改

1 parent daf5e126
......@@ -1030,7 +1030,7 @@ export default {
},
created() {
// 默认选中第一个系统
this.getDefaultSys()
//this.getDefaultSys()
getDictTypeOptions('asset_status').then((res) => {
this.assetsStatusOptions = res
})
......
......@@ -1112,7 +1112,9 @@ export default {
this.ruleForm.let3 = row.archiEleId
this.ruleForm.preArc = row.parentElement?.replace(/\]|\[|\/?]/g, '')
this.getShangJiJieDianSelect(this.ruleForm.preArc)
this.ruleForm.parentAsset = row.parentAsset.split(', ')
if(row.parentAsset != null){
this.ruleForm.parentAsset = row.parentAsset.split(',')
}
this.ruleForm.assetNumber = row.assetNumber
this.getZuJianLeiXingSelect(null).then((res) => {
this.zuJianLeiXingSelect = res
......
......@@ -131,6 +131,7 @@ export default {
multiple: true,
rules: [{ required: true, trigger: 'change', message: '不能为空' }],
disabled: this.title == '详情' ? true : false,
span: 24
},
{
label: '创建人', // label文字
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!