优化布局、配置
This commit is contained in:
parent
e412f30c04
commit
95b04b6b51
@ -10,14 +10,14 @@ export const columns = [
|
||||
prop: 'id',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
label: '位置编号',
|
||||
prop: 'location',
|
||||
},
|
||||
{
|
||||
label: '位置描述',
|
||||
prop: 'description',
|
||||
},
|
||||
{
|
||||
label: '位置编号',
|
||||
prop: 'location',
|
||||
},
|
||||
{
|
||||
label: '排序',
|
||||
prop: 'sort',
|
||||
|
@ -7,13 +7,6 @@
|
||||
:before-close="dialogClose"
|
||||
>
|
||||
<el-form class="ls-form" ref="formRef" :model="formData" label-width="80px">
|
||||
<el-form-item
|
||||
label="位置编号"
|
||||
prop="location"
|
||||
:rules="{ required: true, message: '请输入位置编号', trigger: 'blur' }"
|
||||
>
|
||||
<number-input v-model="formData.location" placeholder="请输入位置编号" />
|
||||
</el-form-item>
|
||||
<el-form-item
|
||||
label="位置描述"
|
||||
prop="description"
|
||||
@ -27,6 +20,13 @@
|
||||
type="textarea"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item
|
||||
label="位置编号"
|
||||
prop="location"
|
||||
:rules="{ required: true, message: '请输入位置编号', trigger: 'blur' }"
|
||||
>
|
||||
<number-input v-model="formData.location" placeholder="请输入位置编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="排序" prop="sort">
|
||||
<el-input-number v-model="formData.sort" />
|
||||
</el-form-item>
|
||||
|
@ -99,6 +99,10 @@
|
||||
name: '',
|
||||
});
|
||||
const configDataList = ref([]);
|
||||
|
||||
/**
|
||||
* 定义分页参数
|
||||
*/
|
||||
const pager = ref({
|
||||
page: 1,
|
||||
size: 10,
|
||||
|
Loading…
Reference in New Issue
Block a user