Commit cfca2777 authored by 李苏's avatar 李苏 💬

删除没必要的组件

parent 8e7f8af4
<template>
<RelDialog width="50%" :type='type' :editApp='editApp' :app='app' :buttonApp='buttonApp'>
<!-- 填写表单内容,slot=form必写-->
<el-form slot="form" ref="form" :model="form" label-width="100px" :rules="rules">
<el-row :gutter="20" :app="this">
<EditColItem :required="item.required||false" :readonly="item.readonly?true:false " v-for="(item,index) in editColItemList " :value="item.value" :span="item.span" :label="item.label" :prop='item.prop' :key="item.prop" :type="item.type" :typeConfig='item.typeConfig' :rule="item.rule" />
</el-row>
</el-form>
</RelDialog>
</template>
<script>
import {
editMixin
} from 'common'
export default {
mixins: [editMixin],
data() {
return {
editColItemList: [{
label: '编码',
prop: 'code',
span: 12,
type: 'input',
required:true,
},
{
label: '容器类型',
prop: 'type',
span: 12,
type: 'RelSelect',
required:true,
typeConfig:{
src:"wms/jcsj/rq/init/type",
params:{flid:this.app.singleItem.flid},
// match:{
// key:'bmid',
// value:"bmmc"
// }
}
},
{
label: '容器分类',
prop: 'flid',
span: 12,
type: 'RelSelect',
typeConfig:{
src:"wms/jcsj/rqfl/init/rqfl",
params:{flid:this.app.singleItem.flid},
},
required:true,
},
// {
// label: '指定仓库',
// prop: 'ckid',
// span: 12,
// type: 'RelSelect',
// typeConfig:{
// src:"jcsj/common/ck/queryCkid",
// hasValue:false
// },
// },
{
label: '备注',
prop: 'bz',
span: 24,
type: 'input'
},
]
}
}
}
</script>
......@@ -80,7 +80,7 @@
qt
} from 'common/src/erpApi/baseData/material/rq.js';
/* edit页面*/
import Edit from './edit'
// import Edit from './edit'
import Xq from './xq.vue'
import {
tableMixin
......@@ -299,7 +299,7 @@
}
},
components: {
Edit,Xq
Xq
}
}
</script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment