福利名单页面列表样式错乱

This commit is contained in:
2026-08-29 17:22:39 +08:00
parent f69d2368e5
commit a989b08499
@@ -212,7 +212,7 @@ layout("/layouts/platform.html"){
<el-tag type="warning" v-else>暂无</el-tag>
</template>
</el-table-column>
<el-table-column align="center" fixed="right" header-align="center" label="操作" width="200px">
<el-table-column align="center" fixed="right" header-align="center" label="操作" width="150px">
<template scope="{row}">
<el-button @click="$refs.updateRemarkRef.onOpen(row)" size="mini" type="primary">备注</el-button>
<el-button @click="doDelete(row)" size="mini" type="danger">删除</el-button>
@@ -302,16 +302,16 @@ layout("/layouts/platform.html"){
sexOptions: ["男", "女"],
projectSelectOptions: [],
tableColumns: [
{ prop: "loginname", label: "工号" },
{ prop: "username", label: "姓名" },
{ prop: "sex", label: "性别", sortable: true, checked: 0 },
{ prop: "birthday", label: "出生日期", sortable: true, checked: 0 },
{ prop: "personType", label: "人员类型", sortable: true },
{ prop: "userState", label: "在职状态", sortable: true },
{ prop: "welfareUnionName", label: "所属工会", sortable: true },
{ prop: "welfareUnitName", label: "所属单位", sortable: true },
{ prop: "threeUnitName", label: "三级单位", sortable: true },
{ prop: "remark", label: "备注", sortable: true }
// 固定各业务列宽,长单位名称通过表格内部横向滚动和悬浮提示展示,避免挤压操作列。
{ prop: "loginname", label: "工号", width: 140 },
{ prop: "username", label: "姓名", width: 120 },
{ prop: "sex", label: "性别", sortable: true, checked: 0, width: 80 },
{ prop: "birthday", label: "出生日期", sortable: true, checked: 0, width: 120 },
{ prop: "personType", label: "人员类型", sortable: true, width: 120 },
{ prop: "userState", label: "在职状态", sortable: true, width: 110 },
{ prop: "welfareUnionName", label: "所属工会", sortable: true, width: 170 },
{ prop: "welfareUnitName", label: "所属单位", sortable: true, width: 250 },
{ prop: "remark", label: "备注", sortable: true}
],
importData: { fileList: [], isfg: 1 },