部门负责人显示颜色修改
This commit is contained in:
parent
62a97a3b2e
commit
aa47404b27
|
|
@ -26,7 +26,7 @@ export default defineConfig({
|
|||
proxy: {
|
||||
'/api': {
|
||||
// 标识需要进行转换的请求的url
|
||||
target: 'http://localhost:8686/api', // 服务端域名 / http://localhost:8686
|
||||
target: 'http://localhost:9005/api', // 服务端域名 / http://localhost:8686
|
||||
changeOrigin: true, // 允许域名进行转换
|
||||
pathRewrite: { '^/api': '' }, // 将请求url里的ci去掉
|
||||
},
|
||||
|
|
|
|||
|
|
@ -394,7 +394,7 @@ export default function userPage() {
|
|||
font-size: 13px;
|
||||
font-family: Microsoft YaHei-Bold, Microsoft YaHei;
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
color: ${d.data.this_dept == '0' ? 'red' : '#333333'};
|
||||
margin-bottom: 23px;
|
||||
" onclick="if(${
|
||||
d.data.fisvitual
|
||||
|
|
@ -447,7 +447,7 @@ export default function userPage() {
|
|||
<div style="
|
||||
font-size: 13px;
|
||||
font-family: Microsoft YaHei-Bold, Microsoft YaHei;
|
||||
color: ${d.data.this_dept == '0' ? 'red' : '#333333'};
|
||||
color: #333333;
|
||||
>${d.data.fname}</div>
|
||||
<div style="
|
||||
font-size: 13px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue