bug
This commit is contained in:
15
packages/2.0.5/AppForm/components/BasicInfo.vue
vendored
15
packages/2.0.5/AppForm/components/BasicInfo.vue
vendored
@@ -29,6 +29,14 @@
|
||||
<el-form-item style="width: 100%;" label="权限列表名称" prop="menuLevel2Name" :rules="[{ required: true, message: '请输入权限列表名称', trigger: 'change' }]">
|
||||
<el-input size="small" placeholder="请输入权限列表名称" :maxlength="8" v-model="form.menuLevel2Name"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item style="width: 100%;" label="应用类型" prop="appType">
|
||||
<ai-select
|
||||
v-model="form.appType"
|
||||
placeholder="请选择应用类型"
|
||||
clearable
|
||||
:selectList="dict.getDict('diyAppType')">
|
||||
</ai-select>
|
||||
</el-form-item>
|
||||
</div>
|
||||
</template>
|
||||
</ai-card>
|
||||
@@ -59,7 +67,8 @@
|
||||
saasPlatformName: '',
|
||||
menuLevel1Name: '',
|
||||
menuLevel2Lable: '',
|
||||
menuLevel2Name: ''
|
||||
menuLevel2Name: '',
|
||||
appType: ''
|
||||
},
|
||||
sassList: []
|
||||
}
|
||||
@@ -71,6 +80,10 @@
|
||||
}
|
||||
},
|
||||
|
||||
created () {
|
||||
this.dict.load('diyAppType')
|
||||
},
|
||||
|
||||
mounted () {
|
||||
this.getSassList()
|
||||
this.form = JSON.parse(JSON.stringify(this.value))
|
||||
|
||||
Reference in New Issue
Block a user