修改禅道已知bug
This commit is contained in:
@@ -163,7 +163,9 @@
|
|||||||
:title="$t('NcontrolType')">{{$t('NcontrolType')}}</span>
|
:title="$t('NcontrolType')">{{$t('NcontrolType')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="controlType">
|
<a-form-model-item class="itemModel" prop="controlType">
|
||||||
<a-select :placeholder="$t('PleaseSelect')+$t('NcontrolType')" allowClear v-model="formInline.controlType">
|
<a-select :placeholder="$t('PleaseSelect')+$t('NcontrolType')"
|
||||||
|
@change="controlTypeChange"
|
||||||
|
allowClear v-model="formInline.controlType">
|
||||||
<a-select-option v-for="(item, key) in controlType" :key="key" :value="item.value">
|
<a-select-option v-for="(item, key) in controlType" :key="key" :value="item.value">
|
||||||
<span style="display: inline-block;width: 100%" :title=" item.label ">
|
<span style="display: inline-block;width: 100%" :title=" item.label ">
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
@@ -466,6 +468,9 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
controlTypeChange(value){
|
||||||
|
this.$refs.ruleForm.clearValidate(['controlVerify','titleDefaultValue','controlValues'])
|
||||||
|
},
|
||||||
uploadSuccess(data) {
|
uploadSuccess(data) {
|
||||||
let attIdList = []
|
let attIdList = []
|
||||||
if (data && data.length > 0) {
|
if (data && data.length > 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user