Commit b0be243c authored by 黄奎's avatar 黄奎

页面修改

parent cfedb887
......@@ -4,7 +4,12 @@
<div class="main-container">
<div class="homeIndexTop">
<div class="hoindexImgdiv">
<!-- <img src="../assets/img/logo.png" alt="" style="height:30px"> -->
<template v-if="mall_userInfo&&mall_userInfo.TenantId==30">
<!-- <img src="../assets/img/logo.png" alt="" style="height:30px"> -->
</template>
<template v-else>
<img src="../assets/img/logo.png" alt="" style="height:30px">
</template>
</div>
<div class="hoindexRight" style="cursor:pointer;">
<el-dropdown>
......@@ -221,8 +226,12 @@
</div>
</div>
</div>
<!-- <div style="text-align: center;line-height: 60px;color: #000;font-size:12px">由成都微途科技有限公司提供技术支持</div> -->
<template v-if="mall_userInfo&&mall_userInfo.TenantId==30">
<div style="text-align: center;line-height: 60px;color: #000;font-size:12px"></div>
</template>
<template v-else>
<div style="text-align: center;line-height: 60px;color: #000;font-size:12px">由成都微途科技有限公司提供技术支持</div>
</template>
<!-- 修改手机号 -->
<el-dialog title="修改手机号" :visible.sync="dialogVisible" width="400px">
<el-form :model="addMsg" :rules="rules" ref="addMsg" label-width="100px">
......@@ -486,7 +495,8 @@
required: true,
trigger: 'blur'
}]
}
},
mall_userInfo: {},
}
},
methods: {
......@@ -621,8 +631,8 @@
let userInfo = this.getLocalStorage();
userInfo.MallBaseId = item.MallBaseId;
userInfo.MallName = item.MallName;
userInfo.IsOpenSchool=item.IsOpenSchool;
userInfo.IsKorea=item.IsKorea;
userInfo.IsOpenSchool = item.IsOpenSchool;
userInfo.IsKorea = item.IsKorea;
localStorage.mall_userInfo = JSON.stringify(userInfo);
},
//修改密码
......@@ -745,6 +755,7 @@
},
},
mounted() {
this.mall_userInfo = JSON.parse(localStorage.mall_userInfo);
this.TestMiniApp();
this.init();
this.getMiniPrograme();
......
......@@ -33,7 +33,7 @@
</div>
<div style="height:450px;overflow:scroll" v-else>
<template v-for="(subItem,subIndex) in item.SubMenuList">
<div :key="subIndex" style="margin-bottom:10px;">
<div :key="subIndex" style="margin-bottom:5px;">
<el-checkbox v-model="subItem.IsChecked" :key="subIndex" @change="checkMenuChange(subItem)">
<span v-if="subItem.SelfPageName">{{subItem.SelfPageName}}</span>
<span v-else>{{subItem.PageName}} </span>
......
......@@ -53,19 +53,13 @@ export default {
},
//域名管理对象
Vue.prototype.domainManager = function () {
let domainUrl = "http://192.168.5.46:8200";
let javaUrl = 'http://192.168.5.214:8018';
let vtUploadUrl = "http://192.168.5.214:8120";
let vtViewUrl = "http://192.168.5.214:8130";
let erpWebUrl = "http://localhost:8080";
let domainUrl = "http://192.168.5.46:8200"; //商城接口地址
let javaUrl = 'http://192.168.5.214:8018'; //资产Api地址
let vtUploadUrl = "http://192.168.5.214:8120"; //文件上传地址
let vtViewUrl = "http://192.168.5.214:8130"; //文件预览地址
let erpWebUrl = "http://localhost:8080"; //ERP后台Web地址
let locationName = window.location.hostname;
if (locationName.indexOf('testmall.oytour') !== -1) {
domainUrl = "https://mallapi.oytour.com";
javaUrl = "http://property.oytour.com";
vtUploadUrl = "http://upload.oytour.com";
vtViewUrl = "https://imgfile.oytour.com";
erpWebUrl = "http://admin.oytour.com";
} else if (locationName.indexOf('oytour') !== -1) {
if (locationName.indexOf('oytour') !== -1) {
domainUrl = "https://mallapi.oytour.com";
javaUrl = "http://property.oytour.com";
vtUploadUrl = "http://upload.oytour.com";
......@@ -73,12 +67,8 @@ export default {
erpWebUrl = "http://admin.oytour.com";
}
var obj = {
//主地址npm
DomainUrl: domainUrl,
//资产管理
javaUrl: javaUrl,
//常用提交数据URL
PostUrl: domainUrl + "/api/common/post",
DomainUrl: domainUrl, //商城接口地址
javaUrl: javaUrl, //资产Api地址
ImageUrl: 'https://viitto-1301420277.cos.ap-chengdu.myqcloud.com',
UploadFileUrl: domainUrl + '/api/File/LocalFileUploadImport',
UploadBlob: domainUrl + '/api/File/UploadBlob',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment