|
@@ -38,6 +38,7 @@ let UpdateForm = ref({
|
|
|
fieldQueryValue: "", //匹配值
|
|
|
fieldQueryValueType: "", //匹配值类型
|
|
|
inTableId: props.inTableId, //入库表
|
|
|
+ fieldInModel: "", //入库方式
|
|
|
|
|
|
|
|
|
});
|
|
@@ -65,6 +66,11 @@ const fieldQueryValueTypeOptionList = [
|
|
|
{ id: 'date', label: '日期' },
|
|
|
{ id: 'datetime', label: '时间' },
|
|
|
]
|
|
|
+// 入库方式选项数据
|
|
|
+const fieldInModelOptionList = [
|
|
|
+ { id: 'normal', label: '常规' },
|
|
|
+ { id: 'add', label: '累加' },
|
|
|
+]
|
|
|
|
|
|
// 选项卡参数(默认值为列表某项的id)
|
|
|
const activeId = ref('1')
|
|
@@ -97,6 +103,7 @@ const submit = async (formEl) => {
|
|
|
fieldQueryValue: "", //匹配值
|
|
|
fieldQueryValueType: "", //匹配值类型
|
|
|
inTableId: props.inTableId, //入库表
|
|
|
+ fieldInModel: "", //入库方式
|
|
|
|
|
|
};
|
|
|
// 关闭新增弹窗;
|
|
@@ -136,6 +143,7 @@ const closeVisible = () => {
|
|
|
fieldQueryValue: "", //匹配值
|
|
|
fieldQueryValueType: "", //匹配值类型
|
|
|
inTableId: props.inTableId, //入库表
|
|
|
+ fieldInModel: "", //入库方式
|
|
|
|
|
|
};
|
|
|
closeFn();
|
|
@@ -172,6 +180,13 @@ const isFullscreen = ref(false)
|
|
|
clearable,
|
|
|
)
|
|
|
el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldQueryValueTypeOptionList")
|
|
|
+ el-form-item(label="入库方式", prop="fieldInModel")
|
|
|
+ el-select(
|
|
|
+ v-model="UpdateForm.fieldInModel",
|
|
|
+ placeholder="请选择入库方式",
|
|
|
+ clearable,
|
|
|
+ )
|
|
|
+ el-option(:label="item.label", :value="item.id" v-for="(item,index) in fieldInModelOptionList")
|
|
|
el-form-item(label='入库表' prop="inTableId")
|
|
|
el-input-number(v-model='UpdateForm.inTableId' :min="1" :max="1000"
|
|
|
placeholder="请输入入库表")
|