253 lines
7.4 KiB
Vue

<template>
<a-card :bordered="false">
<div class="table-page-search-wrapper">
<a-form layout="inline">
<a-row :gutter="48">
<a-col :md="5" :sm="15">
<a-form-item label="展厅编码">
<a-input placeholder="请输入展厅编码" v-model="queryParam.showroomCode"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="展厅名称">
<a-input placeholder="请输入展厅名称" v-model="queryParam.meetingName"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="容纳人数">
<a-input placeholder="请输入容纳人数" v-model="queryParam.capacityNum"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="扩充人数">
<a-input placeholder="请输入扩充人数" v-model="queryParam.expandNum"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="室内图片url">
<a-input placeholder="请输入室内图片url" v-model="queryParam.indoorPicUrl"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="地址">
<a-input placeholder="请输入地址" v-model="queryParam.address"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="是否展示">
<a-input placeholder="请输入是否展示" v-model="queryParam.isShow"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="负责人姓名">
<a-input placeholder="请输入负责人姓名" v-model="queryParam.headName"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="负责人手机号">
<a-input placeholder="请输入负责人手机号" v-model="queryParam.headPhone"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="会议描述">
<a-input placeholder="请输入会议描述" v-model="queryParam.content"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="房间id">
<a-input placeholder="请输入房间id" v-model="queryParam.roomId"/>
</a-form-item>
</a-col>
<a-col :md="5" :sm="15">
<a-form-item label="展厅面积">
<a-input placeholder="请输入展厅面积" v-model="queryParam.area"/>
</a-form-item>
</a-col>
<a-col :md="8" :sm="24">
<span class="table-page-search-submitButtons">
<a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
<a-button style="margin-left: 8px" @click="() => queryParam = {}">重置</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
<div class="table-operator">
<a-button v-if="addEnable" type="primary" icon="plus" @click="$refs.modal.add()">新建</a-button>
<a-dropdown v-if="removeEnable&&selectedRowKeys.length > 0">
<a-button type="danger" icon="delete" @click="delByIds(selectedRowKeys)">删除</a-button>
</a-dropdown>
</div>
<s-table
size="default"
ref="table"
rowKey="id"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
:columns="columns"
:data="loadData"
>
<span slot="action" slot-scope="text, record">
<a v-if="editEnabel" @click="handleEdit(record)">编辑</a>
<a-divider type="vertical" />
<a v-if="removeEnable" @click="delByIds([record.id])">删除</a>
</span>
</s-table>
<showroom-modal ref="modal" @ok="handleOk"/>
</a-card>
</template>
<script>
import {STable} from '@/components'
import {delShowroom} from '@/api/admin/meeting/showroom'
import ShowroomModal from './modules/ShowroomModal.vue'
import {checkPermission} from '@/utils/permissions'
export default {
name: 'TableList',
components: {
STable,
ShowroomModal
},
data () {
return {
labelCol: {
xs: { span: 24 },
sm: { span: 5 }
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 }
},
form: this.$form.createForm(this),
mdl: {},
// 高级搜索 展开/关闭
advanced: false,
// 查询参数
queryParam: {},
// 表头
columns: [
{
title: '展厅编码',
dataIndex: 'showroomCode'
},
{
title: '展厅名称',
dataIndex: 'meetingName'
},
{
title: '容纳人数',
dataIndex: 'capacityNum'
},
{
title: '扩充人数',
dataIndex: 'expandNum'
},
{
title: '室内图片url',
dataIndex: 'indoorPicUrl'
},
{
title: '地址',
dataIndex: 'address'
},
{
title: '开始时间',
dataIndex: 'startTime',
sorter: true
},
{
title: '结束时间',
dataIndex: 'endDate',
sorter: true
},
{
title: '是否展示',
dataIndex: 'isShow'
},
{
title: '负责人姓名',
dataIndex: 'headName'
},
{
title: '负责人手机号',
dataIndex: 'headPhone'
},
{
title: '会议描述',
dataIndex: 'content'
},
{
title: '房间id',
dataIndex: 'roomId'
},
{
title: '展厅面积',
dataIndex: 'area'
},
{
title: '操作',
width: '200px',
dataIndex: 'action',
scopedSlots: { customRender: 'action' }
}
],
// 加载数据方法 必须为 Promise 对象
loadData: parameter => {
return getShowroomList(Object.assign(parameter, this.queryParam))
},
selectedRowKeys: [],
selectedRows: [],
addEnable: checkPermission('meeting:showroom:add'),
editEnabel: checkPermission('meeting:showroom:edit'),
removeEnable: checkPermission('meeting:showroom:remove')
}
},
filters: {
},
created () {
},
methods: {
onSelectChange (selectedRowKeys, selectedRows) {
this.selectedRowKeys = selectedRowKeys
this.selectedRows = selectedRows
},
handleAdd () {
this.$refs.modal.add()
},
handleEdit (record) {
this.$refs.modal.edit(record)
},
handleOk () {
this.$refs.table.refresh(true)
console.log('handleSaveOk')
},
delByIds (ids) {
delShowroom({ ids: ids.join(',') }).then(res => {
if (res.code === 0) {
this.$message.success('删除成功')
this.handleOk()
} else {
this.$message.error(res.msg)
}
this.selectedRowKeys = []
})
}
},
watch: {
/*
'selectedRows': function (selectedRows) {
this.needTotalList = this.needTotalList.map(item => {
return {
...item,
total: selectedRows.reduce( (sum, val) => {
return sum + val[item.dataIndex]
}, 0)
}
})
}
*/
}
}
</script>