213 lines
4.7 KiB
Vue
213 lines
4.7 KiB
Vue
<template>
|
|
<PageWrapper>
|
|
<el-card :bordered="false" class="pt-3 mb-3 proCard">
|
|
<BasicForm @register="register" @submit="handleSubmit" @reset="handleReset" />
|
|
</el-card>
|
|
<el-card :bordered="false" class="proCard">
|
|
<BasicTable
|
|
:columns="columns"
|
|
:request="loadDataTable"
|
|
:row-key="(row) => row.id"
|
|
ref="tableRef"
|
|
:actionColumn="actionColumn"
|
|
@selection-change="onSelectionChange"
|
|
>
|
|
<template #tableTitle>
|
|
<el-button type="primary" @click="handleAdd" v-perm="['sys:smsTemplate:add']">
|
|
<template #icon>
|
|
<el-icon class="el-input__icon">
|
|
<Plus />
|
|
</el-icon>
|
|
</template>
|
|
添加
|
|
</el-button>
|
|
<el-button
|
|
type="danger"
|
|
@click="handleDelete()"
|
|
:disabled="!selectionData.length"
|
|
v-perm="['sys:smsTemplate:batchDelete']"
|
|
>
|
|
<template #icon>
|
|
<el-icon class="el-input__icon">
|
|
<Delete />
|
|
</el-icon>
|
|
</template>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
|
|
<template #action>
|
|
<TableAction />
|
|
</template>
|
|
</BasicTable>
|
|
</el-card>
|
|
|
|
<editDialog
|
|
v-if="editVisible"
|
|
:id="smsId"
|
|
v-model:visible="editVisible"
|
|
@success="reloadTable('noRefresh')"
|
|
/>
|
|
</PageWrapper>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { reactive, ref, h, nextTick, defineAsyncComponent } from 'vue';
|
|
import { ColProps } from 'element-plus';
|
|
import { schemas } from './querySchemas';
|
|
import { useForm } from '@/components/Form/index';
|
|
import { TableAction } from '@/components/Table';
|
|
import {
|
|
getSmsTemplateList,
|
|
smsTemplateDelete,
|
|
smsTemplateBatchDelete,
|
|
} from '@/api/file/smsTemplate';
|
|
import { columns } from './columns';
|
|
import { message, confirm } from '@/utils/auth';
|
|
|
|
/**
|
|
* 导入组件
|
|
*/
|
|
const editDialog = defineAsyncComponent(() => import('./edit.vue'));
|
|
|
|
/**
|
|
* 定义参数变量
|
|
*/
|
|
const smsId = ref(0);
|
|
const editVisible = ref(false);
|
|
const selectionData = ref([]);
|
|
const tableRef = ref();
|
|
|
|
/**
|
|
* 定义查询参数
|
|
*/
|
|
const formParams = reactive({
|
|
title: '',
|
|
type: '',
|
|
});
|
|
|
|
/**
|
|
* 定义操作栏
|
|
*/
|
|
const actionColumn = reactive({
|
|
width: 200,
|
|
label: '操作',
|
|
prop: 'action',
|
|
fixed: 'right',
|
|
render(record) {
|
|
return h(TableAction, {
|
|
style: 'button',
|
|
actions: [
|
|
{
|
|
label: '编辑',
|
|
icon: 'Edit',
|
|
type: 'warning',
|
|
onClick: handleEdit.bind(null, record),
|
|
auth: ['sys:smsTemplate:update'],
|
|
},
|
|
{
|
|
label: '删除',
|
|
icon: 'Delete',
|
|
type: 'danger',
|
|
onClick: handleDelete.bind(null, record),
|
|
auth: ['sys:smsTemplate:delete'],
|
|
},
|
|
],
|
|
});
|
|
},
|
|
});
|
|
|
|
/**
|
|
* 加载数据列表
|
|
* @param res 参数
|
|
*/
|
|
const loadDataTable = async (res: any) => {
|
|
const result = await getSmsTemplateList({ ...formParams, ...res });
|
|
return result;
|
|
};
|
|
|
|
/**
|
|
* 刷新数据列表
|
|
* @param noRefresh 参数
|
|
*/
|
|
function reloadTable(noRefresh = '') {
|
|
tableRef.value.reload(noRefresh ? {} : { pageNo: 1 });
|
|
}
|
|
|
|
/**
|
|
* 注册
|
|
*/
|
|
const [register, {}] = useForm({
|
|
labelWidth: 80,
|
|
layout: 'horizontal',
|
|
colProps: { span: 6 } as ColProps,
|
|
submitOnReset: true,
|
|
schemas,
|
|
});
|
|
|
|
/**
|
|
* 执行提交表单
|
|
* @param values 参数
|
|
*/
|
|
function handleSubmit(values: Recordable) {
|
|
handleReset();
|
|
for (const key in values) {
|
|
formParams[key] = values[key];
|
|
}
|
|
reloadTable();
|
|
}
|
|
|
|
/**
|
|
* 执行重置
|
|
*/
|
|
function handleReset() {
|
|
for (const key in formParams) {
|
|
formParams[key] = '';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 执行添加
|
|
*/
|
|
const handleAdd = async () => {
|
|
smsId.value = 0;
|
|
await nextTick();
|
|
editVisible.value = true;
|
|
};
|
|
|
|
/**
|
|
* 执行编辑
|
|
* @param record 参数
|
|
*/
|
|
const handleEdit = async (record: Recordable) => {
|
|
smsId.value = record.row.id;
|
|
await nextTick();
|
|
editVisible.value = true;
|
|
};
|
|
|
|
/**
|
|
* 执行删除
|
|
* @param record 参数
|
|
*/
|
|
async function handleDelete(record: Recordable) {
|
|
let ids = [];
|
|
if (!record) {
|
|
ids = selectionData.value.map(({ id }) => id);
|
|
}
|
|
await confirm('确定要删除?');
|
|
record ? await smsTemplateDelete(record.row.id) : await smsTemplateBatchDelete(ids);
|
|
message('删除成功');
|
|
reloadTable();
|
|
}
|
|
|
|
/**
|
|
* 选项发生变化
|
|
* @param value 参数
|
|
*/
|
|
function onSelectionChange(value) {
|
|
selectionData.value = value;
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|