123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <template>
- <div class="auxiliary-special-number-container layout-padding">
- <div class="layout-padding-auto layout-padding-view pd20">
- <el-form :model="state.queryParams" ref="ruleFormRef" inline @submit.native.prevent>
- <el-form-item label="电话号码" prop="PhoneNumber">
- <el-input v-model="state.queryParams.PhoneNumber" placeholder="请填写电话号码" clearable @keyup.enter="handleQuery" class="keyword-input" />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" @click="handleQuery" :loading="state.loading"> <SvgIcon name="ele-Search" class="mr5" />查询 </el-button>
- <el-button @click="resetQuery(ruleFormRef)" class="default-button"> <SvgIcon name="ele-Refresh" class="mr5" />重置 </el-button>
- </el-form-item>
- </el-form>
- <vxe-toolbar
- ref="toolbarRef"
- :loading="state.loading"
- custom
- :refresh="{
- queryMethod: handleQuery,
- }"
- >
- <template #buttons>
- <el-button type="primary" @click="onAdd" v-auth="'auxiliary:specialNumber:add'">
- <SvgIcon name="ele-Plus" class="mr5" />新增特殊号码
- </el-button>
- </template>
- </vxe-toolbar>
- <div style="overflow: hidden; width: 100%; height: 100%; flex: 1">
- <vxe-table
- border
- :loading="state.loading"
- :data="state.tableData"
- :column-config="{ resizable: true, useKey: true }"
- :row-config="{ isCurrent: true, isHover: true, useKey: true, height: 30 }"
- ref="tableRef"
- height="auto"
- auto-resize
- show-overflow
- :scrollY="{ enabled: true, gt: 100 }"
- id="auxiliarySpecialNumber"
- :custom-config="{ storage: true }"
- :sort-config="{ remote: true }"
- @sort-change="sortChange"
- >
- <vxe-column field="phoneNumber" title="电话号码"></vxe-column>
- <vxe-column field="notes" title="备注" min-width="200"></vxe-column>
- <vxe-column field="creationTime" title="创建时间" width="160" sortable>
- <template #default="{ row }">
- {{ formatDate(row.creationTime, 'YYYY-mm-dd HH:MM:SS') }}
- </template>
- </vxe-column>
- <vxe-column title="操作" fixed="right" width="130" align="center">
- <template #default="{ row }">
- <el-button link type="primary" @click="onEdit(row)" v-auth="'auxiliary:specialNumber:edit'" title="编辑"> 编辑 </el-button>
- <el-button link type="danger" @click="onDelete(row)" v-auth="'auxiliary:specialNumber:delete'" title="删除"> 删除 </el-button>
- </template>
- </vxe-column>
- </vxe-table>
- </div>
- <pagination
- @pagination="queryList"
- :total="state.total"
- v-model:current-page="state.queryParams.PageIndex"
- v-model:page-size="state.queryParams.PageSize"
- :disabled="state.loading"
- />
- </div>
- <!-- 新增 -->
- <special-number-add ref="specialNumberAddRef" @updateList="queryList" />
- <!-- 编辑 -->
- <special-number-edit ref="specialNumberEditRef" @updateList="queryList" />
- </div>
- </template>
- <script lang="tsx" setup name="auxiliarySpecialNumber">
- import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
- import { ElMessage, ElMessageBox, FormInstance } from 'element-plus';
- import { formatDate } from '@/utils/formatTime';
- import { deleteSpecialNumber, getSpecialNumberList } from '@/api/auxiliary/specialNumber';
- // 引入组件
- const SpecialNumberAdd = defineAsyncComponent(() => import('@/views/auxiliary/specialNumber/components/Number-add.vue')); // 新增
- const SpecialNumberEdit = defineAsyncComponent(() => import('@/views/auxiliary/specialNumber/components/Number-edit.vue')); // 编辑
- const pagination = defineAsyncComponent(() => import('@/components/ProTable/components/Pagination.vue')); // 分页
- // 定义变量内容
- const state = reactive({
- loading: false, // 加载状态
- queryParams: {
- // 查询参数
- PageIndex: 1,
- PageSize: 20,
- PhoneNumber: null, // 电话号码
- SortField: null,
- SortRule: null,
- },
- total: 0, // 总条数
- tableData: [], // 表格数据
- });
- const ruleFormRef = ref<any>(null); // 表单ref
- /** 搜索按钮操作 */
- const handleQuery = () => {
- state.queryParams.PageIndex = 1;
- queryList();
- };
- // 获取列表
- const queryList = () => {
- state.loading = true;
- getSpecialNumberList(state.queryParams)
- .then((res) => {
- state.loading = false;
- state.tableData = res.result.items ?? [];
- state.total = res.result.total ?? 0;
- })
- .finally(() => {
- state.loading = false;
- });
- };
- // 排序
- const sortChange = (val: any) => {
- state.queryParams.SortField = val.order ? val.field : null;
- // 0 升序 1 降序
- state.queryParams.SortRule = val.order ? (val.order == 'desc' ? 1 : 0) : null;
- queryList();
- };
- // 重置表单
- const resetQuery = (formEl: FormInstance | undefined) => {
- if (!formEl) return;
- formEl.resetFields();
- queryList();
- };
- // 新增
- const specialNumberAddRef = ref<RefType>();
- const onAdd = () => {
- specialNumberAddRef.value.openDialog();
- };
- // 修改
- const specialNumberEditRef = ref<RefType>();
- const onEdit = (row: any) => {
- specialNumberEditRef.value.openDialog(row.id);
- };
- // 删除
- const onDelete = (row: any) => {
- ElMessageBox.confirm(`您确定要删除特殊号码【${row.phoneNumber}】吗?`, '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- draggable: true,
- cancelButtonClass: 'default-button',
- autofocus: false,
- })
- .then(() => {
- deleteSpecialNumber({ id: row.id }).then(() => {
- ElMessage.success('操作成功');
- queryList();
- });
- })
- .catch(() => {});
- };
- const tableRef = ref<RefType>();
- const toolbarRef = ref<RefType>();
- // 页面加载时
- onMounted(() => {
- queryList();
- if (tableRef.value && toolbarRef.value) {
- tableRef.value.connect(toolbarRef.value);
- }
- });
- </script>
|