style(ui): 调整信用公司页面UI细节

- 将信用公司信息抽屉宽度从96%调整为98%
- 将标签页间距从8调整为9
- 为附近公司表格添加横向滚动功能
- 移除企业名称列的省略号显示
- 启用开发环境API地址配置
This commit is contained in:
2026-01-15 23:33:12 +08:00
parent 56f6d24f76
commit 836fd4d8d0
3 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
VITE_APP_NAME=后台管理(开发环境) VITE_APP_NAME=后台管理(开发环境)
#VITE_API_URL=http://127.0.0.1:9200/api VITE_API_URL=http://127.0.0.1:9200/api
#VITE_SERVER_API_URL=http://127.0.0.1:8000/api #VITE_SERVER_API_URL=http://127.0.0.1:8000/api

View File

@@ -1,7 +1,7 @@
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
<template> <template>
<a-drawer <a-drawer
width="96%" width="98%"
:visible="visible" :visible="visible"
:maskClosable="false" :maskClosable="false"
:maxable="maxable" :maxable="maxable"
@@ -37,7 +37,7 @@
<a-divider style="margin: 16px 0" /> <a-divider style="margin: 16px 0" />
<a-tabs <a-tabs
v-model:activeKey="activeTab" v-model:activeKey="activeTab"
:tabBarGutter="8" :tabBarGutter="9"
class="credit-company-tabs" class="credit-company-tabs"
> >
<a-tab-pane v-for="tab in tabList" :key="tab.key" :tab="tab.label"> <a-tab-pane v-for="tab in tabList" :key="tab.key" :tab="tab.label">

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
:scroll="{ x: 9000 }"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -135,8 +136,7 @@
{ {
title: '企业名称', title: '企业名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name'
ellipsis: true
}, },
{ {
title: '登记状态', title: '登记状态',