Skip to content

前端页面视图

前端页面视图是用户直接交互的界面。项目使用 Vue3 + ElementPlus + Vite 构建。一个完整的 CRUD 页面由 4 个文件组成:

ui/src/views/system/position/
├── index.vue          # 主页面:搜索 + 表格 + 操作
├── edit.vue           # 编辑弹窗:新增/编辑表单
├── columns.ts         # 表格列定义
└── querySchemas.ts    # 搜索表单 Schema

1. 主页面 index.vue

主页面是模块的入口页面,包含搜索表单、数据表格和操作按钮。

完整代码

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:position:add']">
            <template #icon>
              <el-icon class="el-input__icon">
                <PlusOutlined />
              </el-icon>
            </template>
            添加岗位
          </el-button>
          <el-button
            type="danger"
            @click="handleDelete()"
            :disabled="!selectionData.length"
            v-perm="['sys:position:batchDelete']"
          >
            <template #icon>
              <el-icon class="el-input__icon">
                <Delete />
              </el-icon>
            </template>
            删除
          </el-button>
        </template>
      </BasicTable>
    </el-card>

    <editDialog
      v-if="editVisible"
      :positionId="positionId"
      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 { getPositionList, positionDelete, positionBatchDelete } from '@/api/system/position';
  import { columns } from './columns';
  import { PlusOutlined } from '@vicons/antd';
  import { message, confirm } from '@/utils/auth';
  const editDialog = defineAsyncComponent(() => import('./edit.vue'));
  const positionId = ref(0);
  const editVisible = ref(false);
  const selectionData = ref([]);
  const tableRef = ref();

  /**
   * 定义查询参数
   */
  const formParams = reactive({
    name: '',
    status: '',
  });

  /**
   * 定义操作栏
   */
  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:position:update'],
          },
          {
            label: '删除',
            icon: 'Delete',
            type: 'danger',
            onClick: handleDelete.bind(null, record),
            auth: ['sys:position:delete'],
          },
        ],
      });
    },
  });

  /**
   * 加载数据列表
   */
  const loadDataTable = async (res: any) => {
    const result = await getPositionList({ ...formParams, ...res });
    return result;
  };

  /**
   * 刷新数据列表
   */
  function reloadTable(noRefresh = '') {
    tableRef.value.reload(noRefresh ? {} : { pageNo: 1 });
  }

  /**
   * 注册搜索表单
   */
  const [register, {}] = useForm({
    labelWidth: 80,
    layout: 'horizontal',
    colProps: { span: 6 } as ColProps,
    submitOnReset: true,
    schemas,
  });

  /**
   * 执行提交表单
   */
  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 () => {
    positionId.value = 0;
    await nextTick();
    editVisible.value = true;
  };

  /**
   * 执行编辑
   */
  const handleEdit = async (record: Recordable) => {
    positionId.value = record.row.id;
    await nextTick();
    editVisible.value = true;
  };

  /**
   * 执行删除(单条 + 批量)
   */
  async function handleDelete(record: Recordable) {
    let ids = [];
    if (!record) {
      ids = selectionData.value.map(({ id }) => id);
    }
    await confirm('确定要删除?');
    record ? await positionDelete(record.row.id) : await positionBatchDelete(ids);
    message('删除成功');
    reloadTable();
  }

  /**
   * 选项发生变化
   */
  function onSelectionChange(value) {
    selectionData.value = value;
  }
</script>

代码解析

页面结构PageWrapper 包裹两个 el-card,上方是搜索表单,下方是数据表格。

搜索表单:通过 useForm 注册,Schema 从 querySchemas.ts 导入。submitOnReset: true 表示重置时自动触发查询。

数据表格:通过 BasicTable 组件渲染,request 属性绑定数据加载函数,columnscolumns.ts 导入。

操作栏:通过 actionColumnrender 函数使用 h() 渲染 TableAction,支持权限控制(auth)。

编辑弹窗:使用 defineAsyncComponent 懒加载 edit.vue,通过 v-model:visible 控制显示,positionId 传入编辑记录 ID(0 表示新增)。

删除逻辑:单条删除传入 record,批量删除从 selectionData 取已选 ID。共用同一个 handleDelete 方法。

2. 编辑弹窗 edit.vue

编辑弹窗是独立组件,负责新增和编辑操作的表单展示与提交。

完整代码

vue
<template>
  <el-dialog
    v-model="props.visible"
    :title="props.positionId ? '编辑' : '新增'"
    width="500"
    :close-on-click-modal="false"
    :before-close="dialogClose"
  >
    <el-form class="ls-form" ref="formRef" :model="formData" label-width="80px">
      <el-form-item
        label="岗位名称"
        prop="name"
        :rules="{ required: true, message: '请输入岗位名称', trigger: 'blur' }"
      >
        <el-input class="ls-input" v-model="formData.name" placeholder="请输入岗位名称" clearable />
      </el-form-item>
      <el-form-item label="岗位状态" prop="status">
        <el-radio-group v-model="formData.status" name="status">
          <el-radio :value="1">正常</el-radio>
          <el-radio :value="2">停用</el-radio>
        </el-radio-group>
      </el-form-item>
      <el-form-item label="排序" prop="sort">
        <el-input-number v-model="formData.sort" />
      </el-form-item>
    </el-form>
    <template #footer>
      <span class="dialog-footer">
        <el-button @click="dialogClose">取消</el-button>
        <el-button :loading="subLoading" type="primary" @click="submit"> 确定 </el-button>
      </span>
    </template>
  </el-dialog>
</template>

<script lang="ts" setup>
  import type { FormInstance } from 'element-plus';
  import { getPositionDetail, positionAdd, positionUpdate } from '@/api/system/position';
  import { onMounted, reactive, shallowRef } from 'vue';
  import { message } from '@/utils/auth';
  import { useLockFn } from '@/utils/useLockFn';

  const emit = defineEmits(['success', 'update:visible']);
  const formRef = shallowRef<FormInstance>();

  /**
   * 定义表单参数
   */
  const formData = reactive({
    id: '',
    name: '',
    status: 1,
    sort: 0,
  });

  /**
   * 定义接收的参数
   */
  const props = defineProps({
    visible: {
      type: Boolean,
      required: true,
      default: false,
    },
    positionId: {
      type: Number,
      required: true,
      default: 0,
    },
  });

  /**
   * 执行提交表单
   */
  const handleSubmit = async () => {
    await formRef.value?.validate();
    props.positionId ? await positionUpdate(formData) : await positionAdd(formData);
    message('操作成功');
    emit('update:visible', false);
    emit('success');
  };

  /**
   * 关闭窗体
   */
  const dialogClose = () => {
    emit('update:visible', false);
  };

  const { isLock: subLoading, lockFn: submit } = useLockFn(handleSubmit);

  /**
   * 设置表单数据(编辑模式)
   */
  const setFormData = async () => {
    const data = await getPositionDetail(props.positionId);
    for (const key in formData) {
      if (data[key] != null && data[key] != undefined) {
        formData[key] = data[key];
      }
    }
  };

  /**
   * 钩子函数
   */
  onMounted(() => {
    if (props.positionId) {
      setFormData();
    }
  });
</script>

代码解析

Props 接收

  • visible:控制弹窗显示/隐藏,通过 v-model:visible 双向绑定
  • positionId:编辑记录的 ID,为 0 时表示新增模式

表单数据:使用 reactive 定义,字段与后端 Schema 对应。

新增/编辑判断props.positionId ? positionUpdate : positionAdd,通过 ID 是否为 0 区分。

防重复提交useLockFn 包装提交函数,点击后按钮变为 loading 状态,防止重复提交。

数据回填onMounted 时判断如果是编辑模式,调用 getPositionDetail 获取数据并填充表单。

事件通信

  • emit('update:visible', false):关闭弹窗
  • emit('success'):通知父页面刷新表格

3. 表格列定义 columns.ts

定义表格的列配置,包括列名、字段名、宽度和自定义渲染。

完整代码

typescript
import { h } from 'vue';
import { ElTag } from 'element-plus';

export const columns = [
  {
    type: 'selection',
  },
  {
    label: 'ID',
    prop: 'id',
    fixed: 'left',
    width: 50,
  },
  {
    label: '岗位名称',
    prop: 'name',
    minWidth: 100,
  },
  {
    label: '岗位状态',
    prop: 'status',
    minWidth: 100,
    render(record) {
      return h(
        ElTag,
        {
          type: record.row.status == 1 ? 'success' : 'danger',
        },
        {
          default: () => (record.row.status == 1 ? '正常' : '停用'),
        },
      );
    },
  },
  {
    label: '排序',
    prop: 'sort',
    minWidth: 100,
  },
  {
    label: '创建人',
    prop: 'createUser',
    minWidth: 100,
  },
  {
    label: '创建时间',
    prop: 'createTime',
    width: 180,
  },
];

代码解析

选择列type: 'selection' 自动添加复选框列,配合 @selection-change 事件实现批量选择。

固定列fixed: 'left' 固定在左侧,fixed: 'right' 固定在右侧(操作列)。

自定义渲染render(record) 使用 Vue 的 h() 函数创建虚拟 DOM。状态列将 1/2 渲染为绿色/红色标签。

宽度设置

  • width:固定宽度
  • minWidth:最小宽度,可自适应拉伸

4. 搜索表单 querySchemas.ts

定义搜索表单的字段配置,使用项目封装的 FormSchema 类型。

完整代码

typescript
import { FormSchema } from '@/components/Form/index';
export const schemas: FormSchema[] = [
  {
    field: 'name',
    component: 'Input',
    label: '岗位名称',
    componentProps: {
      placeholder: '请输入岗位名称',
    },
  },
  {
    field: 'status',
    component: 'Select',
    label: '状态',
    componentProps: {
      placeholder: '请选择状态',
      clearable: true,
      options: [
        {
          label: '正常',
          value: '1',
        },
        {
          label: '禁用',
          value: '2',
        },
      ],
    },
  },
];

代码解析

FormSchema 字段

字段说明
field字段名,与后端查询参数对应
component表单组件类型:Input / Select / DatePicker
label标签文本
componentProps组件属性,透传给 ElementPlus 组件

Select 组件options 定义下拉选项,clearable: true 允许清空选择。

文件关系图

index.vue(主页面)
  ├── import schemas from './querySchemas'    ← 搜索表单配置
  ├── import columns from './columns'         ← 表格列配置
  ├── import editDialog from './edit.vue'     ← 编辑弹窗组件
  └── import API from '@/api/system/position' ← 接口请求

edit.vue(编辑弹窗)
  └── import API from '@/api/system/position' ← 接口请求

开发要点

  1. 一个模块一个目录:放在 ui/src/views/{group}/{module}/
  2. 4 个文件各司其职:主页面、编辑弹窗、列定义、搜索 Schema
  3. 编辑弹窗是独立组件:通过 Props 接收 ID,通过 Emit 通知父页面
  4. 列定义使用 h() 渲染复杂内容:如状态标签、操作按钮
  5. 搜索 Schema 使用 FormSchema 类型:配置化定义表单字段
  6. 新增/编辑通过 positionId 区分:0 为新增,非 0 为编辑
  7. 防重复提交使用 useLockFn:提交时按钮 loading

总结

前端页面统一使用 PageWrapper + BasicForm + BasicTable + TableAction 四件套,分页由 BasicTable 内置处理。每个模块包含 index.vue(列表页)、edit.vue(编辑弹窗)、columns.ts(列定义)、querySchemas.ts(搜索配置)四个文件。

小蚂蚁云团队 · 提供技术支持