flx:提交云联万物配置

This commit is contained in:
Rain_ 2025-03-31 15:47:51 +08:00
parent cdc351ad02
commit 8bc3244551
4 changed files with 28 additions and 17 deletions

View File

@ -9,19 +9,19 @@ var COMPANY = ""; //通用
// COMPANY = 'henan' // 河南春笋
// COMPANY = 'xingxuan'//星璇
// COMPANY = 'hengtong'//瑞士恒通
// COMPANY = 'yunlian'//云联万物
// COMPANY = 'neimenggu'//内蒙古项目
// COMPANY = 'zjsj'//中建四局
// COMPANY = 'zjwj'//中建五局
// COMPANY = 'sccr'//四川成润
// COMPANY = 'pssh'//坪山沙湖项目
// COMPANY = 'jlw'//金林湾
// COMPANY = 'shzj' //上海张江
// COMPANY = 'shjg'//上海优益(上海建工)
// COMPANY = "agjt"; //鞍钢集团
// COMPANY = 'zkax' //中科安信
// COMPANY = 'hfqc' //乌丹站舍(合肥启程)
// COMPANY = 'mulei' //木垒
COMPANY = 'yunlian' //云联万物
// COMPANY = 'neimenggu'//内蒙古项目
// COMPANY = 'zjsj'//中建四局
// COMPANY = 'zjwj'//中建五局
// COMPANY = 'sccr'//四川成润
// COMPANY = 'pssh'//坪山沙湖项目
// COMPANY = 'jlw'//金林湾
// COMPANY = 'shzj' //上海张江
// COMPANY = 'shjg'//上海优益(上海建工)
// COMPANY = "agjt"; //鞍钢集团
// COMPANY = 'zkax' //中科安信
// COMPANY = 'hfqc' //乌丹站舍(合肥启程)
// COMPANY = 'mulei' //木垒
var PROJECT = {
local_test: "common", // 普通版

View File

@ -203,6 +203,7 @@ if (process.env.NODE_ENV == "development") {
// axios.defaults.baseURL = "http://222.80.185.228:6090"; //木垒
// axios.defaults.baseURL = "https://zm.zhgdyun.com:11111";
// axios.defaults.baseURL = "http://121.37.106.37:9809";
axios.defaults.baseURL = "http://139.9.66.234:20628";
} else if (process.env.NODE_ENV == "debug") {
axios.defaults.baseURL = "https://www.ceshi.com";
} else if (process.env.NODE_ENV == "production") {

View File

@ -46,6 +46,8 @@ export default new Vuex.Store({
state: {
PAGESIZRS: [10, 20, 30, 50],
UPLOADURL: 'http://139.9.66.234:20628/upload/image/', // 云联万物线上
FILEURL: 'http://139.9.66.234:20628/image/', //云联万物线上
// UPLOADURL: 'http://183.249.224.118:9000/upload/image/', // 嘉兴王江泾
// FILEURL: ' http://183.249.224.118:9000/image/', // 嘉兴王江泾
// UPLOADURL: 'http://192.168.0.12:9809/upload/image/', // 国维科技
@ -79,8 +81,8 @@ export default new Vuex.Store({
// FILEURL: "http://192.168.34.155:19111/image/", //洁本地
// UPLOADURL: 'http://192.168.34.221:9111/upload/image/', // 郭圣雄本地
// FILEURL: 'http://192.168.34.221:9111/image/', //郭圣雄本地
UPLOADURL: 'http://192.168.34.221:19112/upload/image/', // 郭圣雄本地
FILEURL: 'http://192.168.34.221:19112/image/', //郭圣雄本地
// UPLOADURL: 'http://192.168.34.221:19112/upload/image/', // 郭圣雄本地
// FILEURL: 'http://192.168.34.221:19112/image/', //郭圣雄本地
// WORKFLOWURL: "http://101.43.164.214:11129/#/workspace/forms", //jiayu工作流地址(本地)
// WORKFLOWURL: "http://192.168.34.216:88/#/workspace/forms", //jiayu工作流地址(本地)
// WORKFLOWURL: "http://192.168.34.138:88/#/workspace/forms", //坤工作流地址(本地)

View File

@ -55,8 +55,8 @@
mode="horizontal"
@select="handleSelect"
active-text-color="#5181F6"
router
>
<!-- router -->
<div class="wrapper" ref="wrapper">
<div class="cont" ref="cont">
<div
@ -67,7 +67,8 @@
<el-menu-item
class="firstLevelMenu"
v-if="!hasSubMenu(item.menuList)"
:index="item.modulePath"
:index="item.modulePath ? item.modulePath : item.embedUrl"
>
{{ item.moduleName }}
</el-menu-item>
@ -212,6 +213,13 @@ export default {
handleSelect(url) {
// this.$store.commit('setCurrentUrl',url)
// this.$store.dispatch('currentUrl',url)
console.log(1111, url, this.menuList);
if(url.includes("http://")) {
window.open(url);
return;
} else {
this.$router.push(url);
}
},
back() {
this.$router.push("/firm/projectManage");