You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
241 lines
6.4 KiB
241 lines
6.4 KiB
7 years ago
|
<template>
|
||
|
<a-card>
|
||
|
<div :class="advanced ? 'search' : null">
|
||
|
<a-form layout="horizontal">
|
||
|
<div :class="advanced ? null: 'fold'">
|
||
|
<a-row >
|
||
|
<a-col :md="8" :sm="24" >
|
||
|
<a-form-item
|
||
|
label="规则编号"
|
||
|
:labelCol="{span: 5}"
|
||
|
:wrapperCol="{span: 18, offset: 1}"
|
||
|
>
|
||
|
<a-input placeholder="请输入" />
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :md="8" :sm="24" >
|
||
|
<a-form-item
|
||
|
label="使用状态"
|
||
|
:labelCol="{span: 5}"
|
||
|
:wrapperCol="{span: 18, offset: 1}"
|
||
|
>
|
||
|
<a-select placeholder="请选择">
|
||
|
<a-select-option value="1">关闭</a-select-option>
|
||
|
<a-select-option value="2">运行中</a-select-option>
|
||
|
</a-select>
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :md="8" :sm="24" >
|
||
|
<a-form-item
|
||
|
label="调用次数"
|
||
|
:labelCol="{span: 5}"
|
||
|
:wrapperCol="{span: 18, offset: 1}"
|
||
|
>
|
||
|
<a-input-number style="width: 100%" placeholder="请输入" />
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
</a-row>
|
||
|
<a-row v-if="advanced">
|
||
|
<a-col :md="8" :sm="24" >
|
||
|
<a-form-item
|
||
|
label="更新日期"
|
||
|
:labelCol="{span: 5}"
|
||
|
:wrapperCol="{span: 18, offset: 1}"
|
||
|
>
|
||
|
<a-date-picker style="width: 100%" placeholder="请输入更新日期" />
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :md="8" :sm="24" >
|
||
|
<a-form-item
|
||
|
label="使用状态"
|
||
|
:labelCol="{span: 5}"
|
||
|
:wrapperCol="{span: 18, offset: 1}"
|
||
|
>
|
||
|
<a-select placeholder="请选择">
|
||
|
<a-select-option value="1">关闭</a-select-option>
|
||
|
<a-select-option value="2">运行中</a-select-option>
|
||
|
</a-select>
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :md="8" :sm="24" >
|
||
|
<a-form-item
|
||
|
label="描述"
|
||
|
:labelCol="{span: 5}"
|
||
|
:wrapperCol="{span: 18, offset: 1}"
|
||
|
>
|
||
|
<a-input placeholder="请输入" />
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
</a-row>
|
||
|
</div>
|
||
|
<span style="float: right; margin-top: 3px;">
|
||
|
<a-button type="primary">查询</a-button>
|
||
|
<a-button style="margin-left: 8px">重置</a-button>
|
||
|
<a @click="toggleAdvanced" style="margin-left: 8px">
|
||
|
{{advanced ? '收起' : '展开'}}
|
||
|
<a-icon :type="advanced ? 'up' : 'down'" />
|
||
|
</a>
|
||
|
</span>
|
||
|
</a-form>
|
||
|
</div>
|
||
|
<div>
|
||
7 years ago
|
<div class="operator">
|
||
|
<a-button @click="addNew" type="primary">新建</a-button>
|
||
|
<a-button >批量操作</a-button>
|
||
|
<a-dropdown>
|
||
|
<a-menu @click="handleMenuClick" slot="overlay">
|
||
|
<a-menu-item key="delete">删除</a-menu-item>
|
||
|
<a-menu-item key="audit">审批</a-menu-item>
|
||
|
</a-menu>
|
||
|
<a-button>
|
||
|
更多操作 <a-icon type="down" />
|
||
|
</a-button>
|
||
|
</a-dropdown>
|
||
|
</div>
|
||
7 years ago
|
<standard-table
|
||
|
:columns="columns"
|
||
7 years ago
|
:dataSource="dataSource"
|
||
|
:selectedRows="selectedRows"
|
||
|
@change="onchange"
|
||
7 years ago
|
/>
|
||
|
</div>
|
||
|
</a-card>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
7 years ago
|
import ARow from 'ant-design-vue/es/grid/Row'
|
||
|
import ACol from 'ant-design-vue/es/grid/Col'
|
||
|
import AForm from 'ant-design-vue/es/form/Form'
|
||
|
import AFormItem from 'ant-design-vue/es/form/FormItem'
|
||
|
import AInput from 'ant-design-vue/es/input/Input'
|
||
|
import ACard from 'ant-design-vue/es/card/Card'
|
||
|
import ASelect from 'ant-design-vue/es/select/index'
|
||
|
import AInputNumber from 'ant-design-vue/es/input-number/index'
|
||
|
import ADatePicker from 'ant-design-vue/es/date-picker/index'
|
||
|
import AButton from 'ant-design-vue/es/button/button'
|
||
|
import AIcon from 'ant-design-vue/es/icon/icon'
|
||
7 years ago
|
import StandardTable from '../../components/table/StandardTable'
|
||
7 years ago
|
import ADropdown from 'ant-design-vue/es/dropdown'
|
||
|
import AMenu from 'ant-design-vue/es/menu/index'
|
||
7 years ago
|
|
||
|
const ASelectOption = ASelect.Option
|
||
7 years ago
|
const AMenuItem = AMenu.Item
|
||
7 years ago
|
|
||
|
const columns = [
|
||
|
{
|
||
|
title: '规则编号',
|
||
|
dataIndex: 'no'
|
||
|
},
|
||
|
{
|
||
|
title: '描述',
|
||
|
dataIndex: 'description'
|
||
|
},
|
||
|
{
|
||
|
title: '服务调用次数',
|
||
|
dataIndex: 'callNo',
|
||
|
sorter: true,
|
||
7 years ago
|
needTotal: true,
|
||
|
customRender: (text) => text + ' 次'
|
||
7 years ago
|
},
|
||
|
{
|
||
|
title: '状态',
|
||
7 years ago
|
dataIndex: 'status',
|
||
|
needTotal: true
|
||
7 years ago
|
},
|
||
|
{
|
||
|
title: '更新时间',
|
||
|
dataIndex: 'updatedAt',
|
||
|
sorter: true
|
||
|
}
|
||
|
]
|
||
|
|
||
7 years ago
|
const dataSource = []
|
||
|
|
||
|
for (let i = 0; i < 100; i++) {
|
||
|
dataSource.push({
|
||
|
key: i,
|
||
|
no: 'NO ' + i,
|
||
|
description: '这是一段描述',
|
||
|
callNo: Math.floor(Math.random() * 1000),
|
||
|
status: Math.floor(Math.random() * 10) % 4,
|
||
|
updatedAt: '2018-07-26'
|
||
|
})
|
||
|
}
|
||
|
|
||
7 years ago
|
export default {
|
||
|
name: 'QueryList',
|
||
|
components: {
|
||
7 years ago
|
AMenuItem,
|
||
|
AMenu,
|
||
|
ADropdown,
|
||
7 years ago
|
StandardTable,
|
||
|
AIcon,
|
||
|
AButton,
|
||
|
ADatePicker,
|
||
|
AInputNumber,
|
||
|
ASelectOption,
|
||
|
ASelect,
|
||
|
ACard,
|
||
|
AInput,
|
||
|
AFormItem,
|
||
|
AForm,
|
||
|
ACol,
|
||
|
ARow},
|
||
|
data () {
|
||
|
return {
|
||
|
advanced: true,
|
||
7 years ago
|
columns: columns,
|
||
|
dataSource: dataSource,
|
||
|
selectedRowKeys: [],
|
||
|
selectedRows: []
|
||
7 years ago
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
toggleAdvanced () {
|
||
|
this.advanced = !this.advanced
|
||
7 years ago
|
},
|
||
|
onchange (selectedRowKeys, selectedRows) {
|
||
|
this.selectedRowKeys = selectedRowKeys
|
||
|
this.selectedRows = selectedRows
|
||
|
},
|
||
|
remove () {
|
||
|
this.dataSource = this.dataSource.filter(item => this.selectedRowKeys.indexOf(item.key) < 0)
|
||
|
this.selectedRows = this.selectedRows.filter(item => this.selectedRowKeys.indexOf(item.key) < 0)
|
||
|
},
|
||
|
addNew () {
|
||
|
this.dataSource.unshift({
|
||
|
key: this.dataSource.length,
|
||
|
no: 'NO ' + this.dataSource.length,
|
||
|
description: '这是一段描述',
|
||
|
callNo: Math.floor(Math.random() * 1000),
|
||
|
status: Math.floor(Math.random() * 10) % 4,
|
||
|
updatedAt: '2018-07-26'
|
||
|
})
|
||
|
},
|
||
|
handleMenuClick (e) {
|
||
|
if (e.key === 'delete') {
|
||
|
this.remove()
|
||
|
}
|
||
7 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
.search{
|
||
|
margin-bottom: 54px;
|
||
|
}
|
||
|
.fold{
|
||
|
width: calc(100% - 216px);
|
||
|
display: inline-block
|
||
|
}
|
||
7 years ago
|
.operator{
|
||
|
margin-bottom: 18px;
|
||
|
}
|
||
7 years ago
|
@media screen and (max-width: 900px) {
|
||
|
.fold {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|