20250516修改
This commit is contained in:
@@ -153,10 +153,20 @@
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="Add on" prop="sapParam1" :rules="null">
|
||||
<el-input
|
||||
v-model="dataForm.sapParam1"
|
||||
:disabled="mode.includes('detail')"
|
||||
v-bind="{ placeholder: '输入addon' }"></el-input>
|
||||
<el-select
|
||||
v-model="dataForm.sapParam1"
|
||||
filterable
|
||||
clearable
|
||||
:disabled="mode.includes('detail')"
|
||||
v-bind="{ placeholder: '请选择addon' }">
|
||||
<el-option
|
||||
v-for="opt in dictList.addon"
|
||||
:key="opt.dictLabel + opt.dictValue"
|
||||
:label="opt.dictLabel"
|
||||
:value="opt.dictLabel">
|
||||
<span>{{ opt.dictLabel }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
@@ -546,7 +556,6 @@ import { pick as __pick } from "@/utils/filters";
|
||||
// import moment from "moment";
|
||||
import InputsArea from "./InputsArea.vue";
|
||||
import { getDictDataList } from "@/utils";
|
||||
|
||||
export default {
|
||||
name: "DialogJustForm",
|
||||
components: { InputsArea },
|
||||
@@ -695,6 +704,7 @@ export default {
|
||||
promiseList: [],
|
||||
bomId: null,
|
||||
btnLoading: false,
|
||||
dictList:JSON.parse(localStorage.getItem("dictList") || {})
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
|
||||
Reference in New Issue
Block a user