fix: 更新开发环境API地址并优化公司名称显示样式

将开发环境API地址切换为https://cankao.cs.com.cn/admin
优化富文本编辑页面中公司名称的显示样式,支持多公司名称换行展示
This commit is contained in:
34701892@qq.com 2025-12-18 09:51:00 +08:00
parent 52973d29a4
commit ddba85d98f
2 changed files with 8 additions and 5 deletions

View File

@ -4,8 +4,8 @@ ENV = development
# 本地环境接口地址 # 本地环境接口地址
# VITE_API_URL = http://4155gf93ll13.vicp.fun/admin # VITE_API_URL = http://4155gf93ll13.vicp.fun/admin
# VITE_API_URL = http://localhost:13579/admin # VITE_API_URL = http://localhost:13579/admin
# VITE_API_URL = https://cankao.cs.com.cn/admin VITE_API_URL = https://cankao.cs.com.cn/admin
VITE_API_URL = http://123.60.153.169:8040/admin # VITE_API_URL = http://123.60.153.169:8040/admin
# VITE_API_URL = /api # VITE_API_URL = /api

View File

@ -364,9 +364,12 @@
<span class="cursor-pointer" @click="goDetail(1, scope.row, true)" v-html="scope.row.title"></span> <span class="cursor-pointer" @click="goDetail(1, scope.row, true)" v-html="scope.row.title"></span>
</div> </div>
<div class="labels" v-if="Session.get('userInfoLocal').userType == '00'"> <div class="labels" v-if="Session.get('userInfoLocal').userType == '00'" style="display: flex; justify-content: flex-start">
<div class="label_item" v-if="scope.row.companyName && scope.row.companyName.length > 0"> <div
{{ scope.row.companyName }} v-if="scope.row.companyName && scope.row.companyName.length > 0"
style="flex-wrap: wrap; white-space: wrap; display: flex; justify-content: flex-start; gap: 10px"
>
<div v-for="item in scope.row.companyName.split(',')" class="label_item">{{ item }}</div>
</div> </div>
</div> </div>