parent
d8892603f7
commit
5ee64b6de5
3 changed files with 13 additions and 5 deletions
|
@ -2,16 +2,16 @@
|
|||
<div>
|
||||
date: {{ formInline.date }}
|
||||
<i-form ref="formInline" :model="formInline" :rules="ruleInline">
|
||||
<Form-item prop="date">
|
||||
<Form-item prop="date" label="日期">
|
||||
<Date-picker type="date" placeholder="选择日期" v-model="formInline.date"></Date-picker>
|
||||
</Form-item>
|
||||
<Form-item prop="value2">
|
||||
<Form-item prop="value2" label="级联选择">
|
||||
<Cascader :data="formInline.data" v-model="formInline.value2" change-on-select></Cascader>
|
||||
</Form-item>
|
||||
<Form-item prop="user">
|
||||
<Form-item prop="user" label="输入框">
|
||||
<Input v-model="formInline.user"></Input>
|
||||
</Form-item>
|
||||
<Form-item prop="targetKeys1">
|
||||
<Form-item prop="targetKeys1" label="穿梭框">
|
||||
<Transfer
|
||||
filterable
|
||||
:data="formInline.data1"
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
<template>
|
||||
<i-table border :content="self" :columns="columns7" :data="data6"></i-table>
|
||||
<div>
|
||||
<Row>
|
||||
<i-col span="12">
|
||||
<i-table border :content="self" :columns="columns7" :data="data6" :context="self"></i-table>
|
||||
</i-col>
|
||||
</Row>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
line-height: normal;
|
||||
|
||||
&-rel{
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue