123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <template>
- <a-card :bordered="false">
- <s-table
- ref="tableRef"
- :columns="columns"
- :data="loadData"
- :alert="options.alert.show"
- bordered
- :row-key="(record) => record.id"
- :tool-config="toolConfig"
- :row-selection="options.rowSelection"
- >
- <template #operator class="table-operator">
- <a-space>
- <a-button type="primary" @click="formRef.onOpen()" v-if="hasPerm('bizLoadTimeAdd')">
- <template #icon><plus-outlined /></template>
- 新增
- </a-button>
- <xn-batch-button
- v-if="hasPerm('bizLoadTimeBatchDelete')"
- buttonName="批量删除"
- icon="DeleteOutlined"
- :selectedRowKeys="selectedRowKeys"
- @batchCallBack="deleteBatchBizLoadTime"
- />
- </a-space>
- </template>
- <template #bodyCell="{ column, record }">
- <template v-if="column.dataIndex === 'action'">
- <a-space>
- <a @click="formRef.onOpen(record)" v-if="hasPerm('bizLoadTimeEdit')">编辑</a>
- <a-divider type="vertical" v-if="hasPerm(['bizLoadTimeEdit', 'bizLoadTimeDelete'], 'and')" />
- <a-popconfirm title="确定要删除吗?" @confirm="deleteBizLoadTime(record)">
- <a-button type="link" danger size="small" v-if="hasPerm('bizLoadTimeDelete')">删除</a-button>
- </a-popconfirm>
- </a-space>
- </template>
- </template>
- </s-table>
- </a-card>
- <Form ref="formRef" @successful="tableRef.refresh()" />
- </template>
- <script setup name="bizloadtime">
- import { cloneDeep } from 'lodash-es'
- import Form from './form.vue'
- import bizLoadTimeApi from '@/api/biz/bizLoadTimeApi'
- const tableRef = ref()
- const formRef = ref()
- const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
- const columns = [
- {
- title: '装货点位id',
- dataIndex: 'pointId'
- },
- {
- title: '开始时间',
- dataIndex: 'beginTime'
- },
- {
- title: '结束时间',
- dataIndex: 'endTime'
- },
- {
- title: '可约次数',
- dataIndex: 'availableNumber'
- },
- {
- title: '已约次数',
- dataIndex: 'alreadyNumber'
- },
- ]
- // 操作栏通过权限判断是否显示
- if (hasPerm(['bizLoadTimeEdit', 'bizLoadTimeDelete'])) {
- columns.push({
- title: '操作',
- dataIndex: 'action',
- align: 'center',
- width: 150
- })
- }
- const selectedRowKeys = ref([])
- // 列表选择配置
- const options = {
- // columns数字类型字段加入 needTotal: true 可以勾选自动算账
- alert: {
- show: true,
- clear: () => {
- selectedRowKeys.value = ref([])
- }
- },
- rowSelection: {
- onChange: (selectedRowKey, selectedRows) => {
- selectedRowKeys.value = selectedRowKey
- }
- }
- }
- const loadData = (parameter) => {
- return bizLoadTimeApi.bizLoadTimePage(parameter).then((data) => {
- return data
- })
- }
- // 重置
- const reset = () => {
- searchFormRef.value.resetFields()
- tableRef.value.refresh(true)
- }
- // 删除
- const deleteBizLoadTime = (record) => {
- let params = [
- {
- id: record.id
- }
- ]
- bizLoadTimeApi.bizLoadTimeDelete(params).then(() => {
- tableRef.value.refresh(true)
- })
- }
- // 批量删除
- const deleteBatchBizLoadTime = (params) => {
- bizLoadTimeApi.bizLoadTimeDelete(params).then(() => {
- tableRef.value.clearRefreshSelected()
- })
- }
- </script>
|