This commit is contained in:
‘huanghaiixia’
2026-03-13 14:48:23 +08:00
5 changed files with 14 additions and 13 deletions

View File

@ -11,7 +11,7 @@ VITE_PUBLIC_PATH = /
# 可以有多个,注意多个不能换行,否则代理将会失效 # 可以有多个,注意多个不能换行,否则代理将会失效
#VITE_PROXY = [["/api","http://localhost:3000"],["/upload","http://localhost:3300/upload"]] #VITE_PROXY = [["/api","http://localhost:3000"],["/upload","http://localhost:3300/upload"]]
#VITE_PROXY=[["/api/workflow","http://10.0.0.2:8093/workflow/"],["/api","http://10.10.2.102:9500"]] #VITE_PROXY=[["/api/workflow","http://10.0.0.2:8093/workflow/"],["/api","http://10.10.2.102:9500"]]
VITE_PROXY=[["/api","http://10.10.2.102:9500"]] VITE_PROXY=[["/api/magic-api/","http://127.0.0.1:8097/magic-api/"],["/api","http://10.10.2.102:9500"]]
#VITE_PROXY=[["/api/approve/","http://127.0.0.1:8096","/approve/"],["/api","http://10.10.2.102:9500"]] #VITE_PROXY=[["/api/approve/","http://127.0.0.1:8096","/approve/"],["/api","http://10.10.2.102:9500"]]
#VITE_PROXY=[["/api/system/generator/","http://127.0.0.1:8091/system/generator/"],["/api/system/file/","http://127.0.0.1:8091/system/file/"],["/api/system/oss/","http://127.0.0.1:8091/system/oss/"],["/api/sales/","http://127.0.0.1:8096","/sales/"],["/api/mdm/","http://127.0.0.1:8096","/mdm/"],["/api","http://10.10.2.102:9500"]] #VITE_PROXY=[["/api/system/generator/","http://127.0.0.1:8091/system/generator/"],["/api/system/file/","http://127.0.0.1:8091/system/file/"],["/api/system/oss/","http://127.0.0.1:8091/system/oss/"],["/api/sales/","http://127.0.0.1:8096","/sales/"],["/api/mdm/","http://127.0.0.1:8096","/mdm/"],["/api","http://10.10.2.102:9500"]]
#VITE_PROXY=[["/api/sales/","http://127.0.0.1:8096","/sales/"],["/api/mdm/","http://127.0.0.1:8096","/mdm/"],["/api","http://10.10.2.102:9500"]] #VITE_PROXY=[["/api/sales/","http://127.0.0.1:8096","/sales/"],["/api/mdm/","http://127.0.0.1:8096","/mdm/"],["/api","http://10.10.2.102:9500"]]

View File

@ -15,4 +15,4 @@ VOLUME ["/etc/nginx/nginx.conf", "/usr/share/nginx/html"]
CMD ["nginx","-g","daemon off;"] CMD ["nginx","-g","daemon off;"]
# docker build -t docker.ges.bjgastx.com/itc-web:1.1.7 . # docker build -t docker.ges.bjgastx.com/itc-web:1.1.9 .

View File

@ -71,11 +71,13 @@
class="list-item readed-mark" class="list-item readed-mark"
v-for="it in item.list" v-for="it in item.list"
:key="it.id" :key="it.id"
:class="it.isRead === 1 ? 'readed' : ''" :class="it.isRead == 1 ? 'readed' : ''"
@click=" @click="
() => { () => {
if(it.isRead==undefined || it.isRead != 1){
it.isRead = 1; it.isRead = 1;
setReadSingle(it.id, item.key); setReadSingle(it.id, item.key);
}
goToRouter(it); goToRouter(it);
} }
" "
@ -100,9 +102,11 @@
:class="it.read ? 'readed' : ''" :class="it.read ? 'readed' : ''"
@click=" @click="
() => { () => {
if(it.read==undefined || it.read != 1){
it.read = 1; it.read = 1;
setReadSingle(it.id, item.key, it); setReadSingle(it.id, item.key, it);
} }
}
" "
> >
<span class="list-item-title"> <span class="list-item-title">
@ -252,7 +256,7 @@
datetime: o.releaseTime, datetime: o.releaseTime,
color: '', color: '',
type: '3', type: '3',
read: o.isRead, read: o.readId!=null && o.readId!=undefined?1:0,
}); });
}); });
let res1 = await getOaNews(2); let res1 = await getOaNews(2);
@ -267,7 +271,7 @@
datetime: o.releaseTime, datetime: o.releaseTime,
color: '', color: '',
type: '3', type: '3',
read: o.isRead read: o.readId!=null && o.readId!=undefined?1:0
}); });
}); });
let res2 = await getOaMessage(); let res2 = await getOaMessage();
@ -372,7 +376,7 @@
listData.value[type - 1].unreadNum = 0; listData.value[type - 1].unreadNum = 0;
} }
async function setReadSingle(ids, num, record) { async function setReadSingle(ids, num, record) {
console.log(num, 'num') console.log(arguments)
// if (num == 3) { // 日程 // if (num == 3) { // 日程
// await setScheduleRead([ids]); // await setScheduleRead([ids]);
// } else // } else

View File

@ -8,7 +8,6 @@ import { ProjectConfig } from '/#/config';
import { changeTheme } from '/@/logics/theme'; import { changeTheme } from '/@/logics/theme';
import { updateDarkTheme } from '/@/logics/theme/dark'; import { updateDarkTheme } from '/@/logics/theme/dark';
import { useRootSetting } from '/@/hooks/setting/useRootSetting'; import { useRootSetting } from '/@/hooks/setting/useRootSetting';
import { info } from 'console';
import { MenuThemeEnum,MenuThemeInfo } from '/@/enums/menuEnum'; import { MenuThemeEnum,MenuThemeInfo } from '/@/enums/menuEnum';
const MENU_THEME:{[key:string]:MenuThemeInfo}= (()=>{ const MENU_THEME:{[key:string]:MenuThemeInfo}= (()=>{

View File

@ -1,7 +1,5 @@
import { useAppStore } from '/@/store/modules/app'; import { useAppStore } from '/@/store/modules/app';
import { changeTheme } from '/@/logics/theme'; import { changeTheme } from '/@/logics/theme';
import { colorIsDark, lighten, darken } from '/@/utils/color';
import { ThemeEnum } from '/@/enums/appEnum';
/** /**
* 主题样式 * 主题样式