- /business/project-apply 主表操作列宽度固定为 220,移除 applyTableMenuWidth 调用 - /business/temporary-credit-limit 通过传入 menuWidth prop 固定操作列宽度为 180 - /base/common-address 操作列宽度由 220 降至 180 - /business/process-config 操作列宽度由 320 调整为 180,修复末尾语法错误 - /vehicle/insurance-record 操作列宽度先降至 140 后改回 160,后全部车/船务管理模块记录页统一为 180 - 多个车/船务管理模块相关 option 文件及 vue 文件操作列宽统调为 180 - 新增 business-crud-page 组件 menuWidth prop,支持外部传值控制操作列宽度 - 全站操作列文字链接去除 el-link 默认 margin,避免和 gap 叠加导致文字间距过宽 - 优化操作列按钮过多时自动换行展示逻辑,确保按钮不被裁切
21 lines
459 B
Vue
21 lines
459 B
Vue
<template>
|
|
<business-crud-page :api="api" :config="config" :crud-option="option" :menu-width="245" />
|
|
</template>
|
|
|
|
<script>
|
|
import BusinessCrudPage from './components/business-crud-page.vue';
|
|
import * as api from '@/api/business/contract-manage';
|
|
import { config, option } from '@/option/business/contract-manage';
|
|
|
|
export default {
|
|
components: { BusinessCrudPage },
|
|
data() {
|
|
return {
|
|
api,
|
|
config,
|
|
option,
|
|
};
|
|
},
|
|
};
|
|
</script>
|