跳转银行系统等修改

UI_2022-02-10
jialong.yu 3 years ago
parent 703577eb79
commit 4e3f34efac
  1. 2
      src/pages/ass/list/index.vue
  2. 2
      src/pages/record/show/index.vue
  3. 15
      src/pages/station/preview/index.vue
  4. 16
      src/setting.js

@ -461,6 +461,8 @@ export default {
// href = `http://www.huorantech.cn/${this.url}/#/index/list?token=${token}&cid=${this.cid}&systemId=${this.systemId}&projectId=${this.projectId}&assessmentId=${this.assessmentId}&classId=${this.classId}&stopTime=${this.stopTime}`;
//
href = `${domainName}/${this.url}/#/index/list?token=${token}&cid=${this.cid}&systemId=${this.systemId}&projectId=${this.projectId}&assessmentId=${this.assessmentId}&classId=${this.classId}&stopTime=${this.stopTime}`;
// href = `http://192.168.31.125:8093/#/index/list?token=${token}&cid=${this.cid}&systemId=${this.systemId}&projectId=${this.projectId}&assessmentId=${this.assessmentId}&classId=${this.classId}&stopTime=${this.stopTime}`;
} else {
if(process.env.NODE_ENV === 'development') {
href = 'http://192.168.31.125:8080/#/'

@ -77,7 +77,7 @@
{{ scope.$index + 1 }}
</template>
</el-table-column>
<el-table-column prop="judgmentName" label="任务名称" align="center"></el-table-column>
<el-table-column prop="judgmentName" label="判分指标" align="center"></el-table-column>
<el-table-column v-if='project' prop="judgmentName" label="考核点" align="center" width="150">
<template slot-scope="scope">
<div v-for="(item, index) in scope.row.lcRuleRecords">

@ -286,24 +286,13 @@ export default {
},
goSystem() { //
let id = this.assessmentList[0].systemId;
let host = Setting.systemPath;
let href = "";
let href = ''
let token = util.local.get(Setting.tokenKey);
let roleId = this.roleId == 4 ? 0 : 1;
let userName = window.btoa(encodeURIComponent(this.userName));
if (id == 11) {
console.log(host)
// href = `${host}bank/#/`;
//线
// href = "http://124.71.12.62/banksystem/#/index/list?"+'token='+token+'&cid='+this.courseId+'&systemId='+this.assessmentList[0].systemId+"&projectId=&assessmentId=&classId=&stopTime=";
// href = "http://www.huorantech.cn/banksystem/#/index/list?"+'token='+token+'&cid='+this.courseId+'&systemId='+this.assessmentList[0].systemId+"&projectId=&assessmentId=&classId=&stopTime=";
//
if(process.env.NODE_ENV === 'development'){
href = "http://192.168.31.254:8093/#/index/list?"+'token='+token+'&cid='+this.courseId+'&systemId='+this.assessmentList[0].systemId+"&projectId=&assessmentId=&classId=&stopTime=&test=true";
}else {
href = "http://39.108.250.202/banksystem/#/index/list?"+'token='+token+'&cid='+this.courseId+'&systemId='+this.assessmentList[0].systemId+"&projectId=&assessmentId=&classId=&stopTime=&test=true";
}
href = `${Setting.systemPath}/#/index/list?token=${token}&cid=${this.courseId}&systemId=${this.assessmentList[0].systemId}&projectId=&assessmentId=&classId=&stopTime=&test=true`
} else if (id == 21) {
window.open(`http://121.37.29.24:80/yyyflogin?userId=${this.userId}&userName=${userName}&userType=${roleId}&reqType=1&reqId=3989a0ad671849b99dcbdcc208782333&caseId=9681f86902314b10bc752909121f9ab9&authorization=87DIVy348Oxzj3ha&classId=1876&courserId=7ff5d4715b114b7398b6f26c20fac460`);
} else if (id == 22) {

@ -9,46 +9,39 @@ const isBeta = url.includes("120.78.198.231"); //是否职站测试
const isPro = url.includes("occupationlab.com"); //是否职站生产
const isTest = url.includes('39.108.250.202'); //是否中台测试服
let defaultSubSystem = "";
let systemPath = "";
let systemPath = ''
let host = "";
let title = "";
if (isHh) {
// 河海
host = "http://10.196.131.73/";
defaultSubSystem = "http://10.196.131.73/pyTrials/#/";
title = "学生端";
} else if (isCH) {
// 巢湖
host = "http://124.71.12.62/";
defaultSubSystem = "http://124.71.12.62/pyTrials/#/";
title = "学生端";
} else if (isBeta) {
// 职站测试
host = "http://120.78.198.231/";
defaultSubSystem = "http://120.78.198.231/pyTrials/#/";
title = "职站";
} else if (isPro) {
// 职站生产
host = "http://www.occupationlab.com:9000/";
defaultSubSystem = "http://www.occupationlab.com/pyTrials/#/";
systemPath = `http://www.huorantech.cn/banksystem`
title = "职站";
} else if (isTest){
// 中台测试
host = "http://39.108.250.202:9000/";
systemPath = "http://120.78.198.231/";
defaultSubSystem = "http://39.108.250.202/pyTrials/#/";
systemPath = `${systemPath}/banksystem`
title = "职站";
} else if (isDev) {
// 本地
// host = "http://www.occupationlab.com:9000/";//线上
host = "http://39.108.250.202:9000/"; // 中台测试服
systemPath = `http://192.168.31.125:8093`
// host = "http://192.168.31.137:9000/"; // 赓
// host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.125:9000/"; // 坤
systemPath = "http://192.168.31.154/";
defaultSubSystem = "http://39.108.250.202/pyTrials/#/";
title = "职站";
} else {
console.log("其它版本");
@ -64,7 +57,6 @@ const Setting = {
showProgressBar: true, // 页面切换时,是否显示模拟的进度条
apiBaseURL: host, // 接口请求地址
systemPath, // 子系统地址前缀
defaultSubSystem, // 测评做完后跳转的默认子系统
autoLogoutTime: 3600000, // 长时间未操作,自动退出登录时间
modalDuration: 3, // 接口请求返回错误时,弹窗的持续时间,单位:秒
errorModalType: "Message", // 接口请求返回错误时,弹窗的类型,可选值为 Message 或 Notice

Loading…
Cancel
Save