| | |
| | | const getPlatformList = async () => { |
| | | const res = await getInfoPlatforms(state.platformParams) |
| | | if(res.code == 200){ |
| | | const originPlatform = { |
| | | id: 0, |
| | | platformName: '国军标9001C质量管理体系', |
| | | platformPic: menu1 |
| | | } |
| | | state.platformList = [originPlatform, ...(Array.isArray(res.data) ? res.data : [])] |
| | | // const originPlatform = { |
| | | // id: 0, |
| | | // platformName: '国军标9001C质量管理体系', |
| | | // platformPic: menu1 |
| | | // } |
| | | state.platformList = Array.isArray(res.data) ? res.data : [] |
| | | }else{ |
| | | ElMessage.warning(res.message) |
| | | } |
| | |
| | | } |
| | | |
| | | const enterSystem = (address,index) => { |
| | | if(index == 0){ |
| | | router.push({ path: "/learn/standardSysTemp/sysStandardModule"}) |
| | | }else{ |
| | | // if(index == 0){ |
| | | // router.push({ path: "/learn/standardSysTemp/sysStandardModule"}) |
| | | // }else{ |
| | | window.open(address) |
| | | // ElMessage.warning('系统正在开发中...') |
| | | } |
| | | // } |
| | | } |
| | | |
| | | function getInfo() { |