parent
6bc0f1f074
commit
9a4afee5c2
10 changed files with 143 additions and 19 deletions
@ -1,16 +1,18 @@ |
|||||||
<template> |
<template> |
||||||
<div> |
<div> |
||||||
<a-card style="" :bordered="false"> |
<search-form /> |
||||||
bbb |
<a-card :bordered="false"> |
||||||
|
contentB |
||||||
</a-card> |
</a-card> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script> |
<script> |
||||||
import ACard from 'vue-antd-ui/es/card/Card' |
import ACard from 'vue-antd-ui/es/card/Card' |
||||||
|
import SearchForm from './SearchForm' |
||||||
export default { |
export default { |
||||||
name: 'ApplicationList', |
name: 'ApplicationList', |
||||||
components: {ACard} |
components: {SearchForm, ACard} |
||||||
} |
} |
||||||
</script> |
</script> |
||||||
|
|
@ -1,16 +1,18 @@ |
|||||||
<template> |
<template> |
||||||
<div> |
<div> |
||||||
<a-card style="" :bordered="false"> |
<search-form /> |
||||||
aaaa |
<a-card :bordered="false"> |
||||||
|
contentA |
||||||
</a-card> |
</a-card> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script> |
<script> |
||||||
import ACard from 'vue-antd-ui/es/card/Card' |
import ACard from 'vue-antd-ui/es/card/Card' |
||||||
|
import SearchForm from './SearchForm' |
||||||
export default { |
export default { |
||||||
name: 'ArticleList', |
name: 'ArticleList', |
||||||
components: {ACard} |
components: {SearchForm, ACard} |
||||||
} |
} |
||||||
</script> |
</script> |
||||||
|
|
@ -1,16 +1,18 @@ |
|||||||
<template> |
<template> |
||||||
<div> |
<div> |
||||||
<a-card style="" :bordered="false"> |
<search-form /> |
||||||
ccc |
<a-card :bordered="false"> |
||||||
|
contentC |
||||||
</a-card> |
</a-card> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script> |
<script> |
||||||
import ACard from 'vue-antd-ui/es/card/Card' |
import ACard from 'vue-antd-ui/es/card/Card' |
||||||
|
import SearchForm from './SearchForm' |
||||||
export default { |
export default { |
||||||
name: 'ProjectList', |
name: 'ProjectList', |
||||||
components: {ACard} |
components: {SearchForm, ACard} |
||||||
} |
} |
||||||
</script> |
</script> |
||||||
|
|
@ -0,0 +1,46 @@ |
|||||||
|
<template> |
||||||
|
<a-card :bordered="false" class="search-form"> |
||||||
|
<a-form> |
||||||
|
<a-form-item |
||||||
|
label="所属类目" |
||||||
|
:labelCol="{span: 1}" |
||||||
|
:wrapperCol="{span: 23}" |
||||||
|
> |
||||||
|
<tag-select> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
<tag-select-option>科目一</tag-select-option> |
||||||
|
</tag-select> |
||||||
|
</a-form-item> |
||||||
|
</a-form> |
||||||
|
</a-card> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import ACard from 'vue-antd-ui/es/card/Card' |
||||||
|
import AForm from 'vue-antd-ui/es/form/Form' |
||||||
|
import AFormItem from 'vue-antd-ui/es/form/FormItem' |
||||||
|
import AInput from 'vue-antd-ui/es/input/Input' |
||||||
|
import TagSelect from '../../tool/TagSelect' |
||||||
|
|
||||||
|
const TagSelectOption = TagSelect.Option |
||||||
|
|
||||||
|
export default { |
||||||
|
name: 'SearchForm', |
||||||
|
components: {TagSelectOption, TagSelect, AInput, AFormItem, AForm, ACard} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="less" scoped> |
||||||
|
.search-form{ |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
</style> |
@ -0,0 +1,36 @@ |
|||||||
|
<template> |
||||||
|
<div class="tag-select"> |
||||||
|
<tag-select-option>全部</tag-select-option> |
||||||
|
<slot></slot> |
||||||
|
<a class="trigger">展开<a-icon type="down"/></a> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import ASelect from 'vue-antd-ui/es/select/index' |
||||||
|
import ACheckableTag from 'vue-antd-ui/es/tag/CheckableTag' |
||||||
|
import TagSelectOption from './TagSelectOption' |
||||||
|
import AIcon from 'vue-antd-ui/es/icon/icon' |
||||||
|
export default { |
||||||
|
name: 'TagSelect', |
||||||
|
Option: TagSelectOption, |
||||||
|
components: {AIcon, TagSelectOption, ACheckableTag, ASelect} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="less" scoped> |
||||||
|
.tag-select{ |
||||||
|
user-select: none; |
||||||
|
margin-left: -8px; |
||||||
|
position: relative; |
||||||
|
overflow: hidden; |
||||||
|
max-height: 32px; |
||||||
|
line-height: 32px; |
||||||
|
padding-right: 50px; |
||||||
|
} |
||||||
|
.trigger{ |
||||||
|
position: absolute; |
||||||
|
top: 0; |
||||||
|
right: 0; |
||||||
|
} |
||||||
|
</style> |
@ -0,0 +1,34 @@ |
|||||||
|
<template> |
||||||
|
<a-checkable-tag class="tag-default" v-model="checked"> |
||||||
|
<slot></slot> |
||||||
|
</a-checkable-tag> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import ACheckableTag from 'vue-antd-ui/es/tag/CheckableTag' |
||||||
|
export default { |
||||||
|
name: 'TagSelectOption', |
||||||
|
components: {ACheckableTag}, |
||||||
|
options: { |
||||||
|
size: { |
||||||
|
type: String, |
||||||
|
required: false, |
||||||
|
default: 'default' |
||||||
|
} |
||||||
|
}, |
||||||
|
data () { |
||||||
|
return { |
||||||
|
checked: false |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="less" scoped> |
||||||
|
.tag-default{ |
||||||
|
font-size: 14px; |
||||||
|
padding: 0 8px; |
||||||
|
height: auto; |
||||||
|
margin-right: 24px; |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue