update Form
update Form
This commit is contained in:
parent
f706ef311d
commit
8a83e7c42b
4 changed files with 44 additions and 22 deletions
|
@ -57,7 +57,7 @@
|
||||||
type: [Object, Array]
|
type: [Object, Array]
|
||||||
},
|
},
|
||||||
error: {
|
error: {
|
||||||
type: Boolean
|
type: String
|
||||||
},
|
},
|
||||||
validateStatus: {
|
validateStatus: {
|
||||||
type: Boolean
|
type: Boolean
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
&-icon {
|
&-icon {
|
||||||
width: 32px;
|
width: 32px;
|
||||||
|
|
|
@ -102,6 +102,7 @@
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: @font-size-small;
|
font-size: @font-size-small;
|
||||||
|
top: 1px; // fixed when using in form inline,
|
||||||
|
|
||||||
&-large{
|
&-large{
|
||||||
font-size: @font-size-base;
|
font-size: @font-size-base;
|
||||||
|
|
|
@ -1,6 +1,19 @@
|
||||||
<template>
|
<template>
|
||||||
<h4>基本</h4>
|
<h4>基本</h4>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
<div style="background: #f60">
|
||||||
|
<input-number></input-number>
|
||||||
|
<Date-picker type="date" placeholder="选择日期" style="width: 100px;display: inline-block"></Date-picker>
|
||||||
|
<i-input style="width: 100px"></i-input>
|
||||||
|
<i-input type="text" placeholder="Username" style="width: 100px">
|
||||||
|
<Icon type="ios-person-outline" slot="prepend"></Icon>
|
||||||
|
</i-input>
|
||||||
|
<i-button type="primary">按钮</i-button>
|
||||||
|
<i-select :model.sync="model1" style="width:200px">
|
||||||
|
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
|
||||||
|
</i-select>
|
||||||
|
</div>
|
||||||
|
<br><br>
|
||||||
<i-button type="success">按钮</i-button>
|
<i-button type="success">按钮</i-button>
|
||||||
<i-button type="warning">按钮</i-button>
|
<i-button type="warning">按钮</i-button>
|
||||||
<i-button type="error">按钮</i-button>
|
<i-button type="error">按钮</i-button>
|
||||||
|
@ -244,27 +257,7 @@
|
||||||
</Button-group>
|
</Button-group>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { iButton, Icon, Input, Switch, Radio, Checkbox, InputNumber, Row, Col, Page } from 'iview';
|
|
||||||
const ButtonGroup = iButton.Group;
|
|
||||||
const RadioGroup = Radio.Group;
|
|
||||||
const CheckboxGroup = Checkbox.Group;
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
|
||||||
iButton,
|
|
||||||
ButtonGroup,
|
|
||||||
Icon,
|
|
||||||
iInput: Input,
|
|
||||||
Switch,
|
|
||||||
Radio,
|
|
||||||
RadioGroup,
|
|
||||||
Checkbox,
|
|
||||||
CheckboxGroup,
|
|
||||||
InputNumber,
|
|
||||||
Row,
|
|
||||||
iCol: Col,
|
|
||||||
Page
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -272,7 +265,34 @@
|
||||||
return {
|
return {
|
||||||
loading: false,
|
loading: false,
|
||||||
loading2: false,
|
loading2: false,
|
||||||
model6: ''
|
model6: '',
|
||||||
|
cityList: [
|
||||||
|
{
|
||||||
|
value: 'beijing',
|
||||||
|
label: '北京市'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'shanghai',
|
||||||
|
label: '上海市'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'shenzhen',
|
||||||
|
label: '深圳市'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'hangzhou',
|
||||||
|
label: '杭州市'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'nanjing',
|
||||||
|
label: '南京市'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'chongqing',
|
||||||
|
label: '重庆市'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
model1: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue