沙盘地址更改

This commit is contained in:
jiayu 2024-11-01 18:43:08 +08:00
parent 708ecbb10e
commit a56b827f68
2 changed files with 3 additions and 2 deletions

View File

@ -8,10 +8,11 @@
</el-icon>
</div>
<!-- <div class="map-box" id="mapContainer"></div> -->
<!-- 旧沙盘地址 http://jxjzw.zhgdyun.com:6080/review1/#/login?projectId=2 -->
<iframe
style="width: 100%; height: 100%"
id="iframeDom"
src="http://jxjzw.zhgdyun.com:6080/review1/#/login?projectId=2"
src="https://zm.zhgdyun.com:6080/#/login?projectId=2"
allowfullscreen
frameborder="0"
></iframe>

View File

@ -175,7 +175,7 @@ const getProjectInfo = async () => {
const res: any = await getTaskTimeDetail({ projectSn: store.sn });
console.log("获取项目信息", res);
projectTimeInfo.value = res.result;
document.title = res.result.companyName;
document.title = res.result.projectName;
projectPassDay.value = calculateDaysPassed(projectTimeInfo.value.contractPeriodStartTime);
};