style(ui): 调整信用公司页面UI细节
- 将信用公司信息抽屉宽度从96%调整为98% - 将标签页间距从8调整为9 - 为附近公司表格添加横向滚动功能 - 移除企业名称列的省略号显示 - 启用开发环境API地址配置
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
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
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<!-- 编辑弹窗 -->
|
||||
<template>
|
||||
<a-drawer
|
||||
width="96%"
|
||||
width="98%"
|
||||
:visible="visible"
|
||||
:maskClosable="false"
|
||||
:maxable="maxable"
|
||||
@@ -37,7 +37,7 @@
|
||||
<a-divider style="margin: 16px 0" />
|
||||
<a-tabs
|
||||
v-model:activeKey="activeTab"
|
||||
:tabBarGutter="8"
|
||||
:tabBarGutter="9"
|
||||
class="credit-company-tabs"
|
||||
>
|
||||
<a-tab-pane v-for="tab in tabList" :key="tab.key" :tab="tab.label">
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
:columns="columns"
|
||||
:datasource="datasource"
|
||||
:customRow="customRow"
|
||||
:scroll="{ x: 9000 }"
|
||||
tool-class="ele-toolbar-form"
|
||||
class="sys-org-table"
|
||||
>
|
||||
@@ -135,8 +136,7 @@
|
||||
{
|
||||
title: '企业名称',
|
||||
dataIndex: 'name',
|
||||
key: 'name',
|
||||
ellipsis: true
|
||||
key: 'name'
|
||||
},
|
||||
{
|
||||
title: '登记状态',
|
||||
|
||||
Reference in New Issue
Block a user