Commit f7f43e97 by changjin

修改菜单

parent 10bdb9c7
...@@ -144,9 +144,9 @@ export default { ...@@ -144,9 +144,9 @@ export default {
}, },
download (type) { download (type) {
if (type === 0) { if (type === 0) {
window.open('http://39.97.169.207/static/doc/博智林项目需求文档.docx') window.open(this.fileUrl + 'static/doc/中国金茂智慧社区后台管理系统-用户操作手册(文字版).docx')
} else { } else {
window.open('http://39.97.169.207/static/doc/金茂智慧案场app项目汇报方案0513.pptx') window.open(this.fileUrl + 'static/doc/金茂智慧案场app项目汇报方案0513.pptx')
} }
}, },
// 退出登录 // 退出登录
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<span class="icon icon7" v-if="item.name == '公告管理'"></span> <span class="icon icon7" v-if="item.name == '公告管理'"></span>
<span class="icon icon8" v-if="item.name == '活动管理'"></span> <span class="icon icon8" v-if="item.name == '活动管理'"></span>
<span class="icon icon9" v-if="item.name == '广告管理'"></span> <span class="icon icon9" v-if="item.name == '广告管理'"></span>
<span class="icon icon10" v-if="item.name == '菜谱管理'"></span> <span class="icon icon10" v-if="item.name == '商铺管理'"></span>
<span class="icon icon11" v-if="item.name == '绿植管理'"></span> <span class="icon icon11" v-if="item.name == '绿植管理'"></span>
<span class="icon icon12" v-if="item.name == '出售车位管理'"></span> <span class="icon icon12" v-if="item.name == '出售车位管理'"></span>
<span class="icon icon13" v-if="item.name == '数据管理'"></span> <span class="icon icon13" v-if="item.name == '数据管理'"></span>
...@@ -134,7 +134,7 @@ export default { ...@@ -134,7 +134,7 @@ export default {
id:'3333' id:'3333'
}, },
{ {
name:'菜谱管理', name:'商铺管理',
url:'/IOC/recipe', url:'/IOC/recipe',
id:'4444' id:'4444'
}, },
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="mainContent" :style="{ height: height}"> <div class="mainContent" :style="{ height: height}">
<div class="tabCont clear"> <div class="tabCont clear">
<p class="font16">{{data.nickname}}<el-button @click="goBack()" class="right">返回</el-button></p> <p class="font16">{{data.nickname}}<el-button @click="goBack()" class="right">返回</el-button></p>
<div class="table font14 mt20"> <div class="table font14 clear">
<el-row> <el-row>
<el-col class="border grayBg" :span="3">设备类型</el-col> <el-col class="border grayBg" :span="3">设备类型</el-col>
<el-col class="border" :span="5"><span v-for="info in data.deviceType">{{info}}</span></el-col> <el-col class="border" :span="5"><span v-for="info in data.deviceType">{{info}}</span></el-col>
...@@ -80,6 +80,6 @@ export default { ...@@ -80,6 +80,6 @@ export default {
font-size: 12px; font-size: 12px;
} }
.borderB{border-bottom: 1px solid #E9EFF3;} .borderB{border-bottom: 1px solid #E9EFF3;}
.table{border-right: 1px solid #E9EFF3;} .table{border-right: 1px solid #E9EFF3;margin-top: 40px;}
.grayBg{background-color: #FBFCFD;} .grayBg{background-color: #FBFCFD;}
</style> </style>
\ No newline at end of file
...@@ -12,12 +12,15 @@ import 'element-ui/lib/theme-chalk/index.css'; ...@@ -12,12 +12,15 @@ import 'element-ui/lib/theme-chalk/index.css';
import store from './vuex/store.js' import store from './vuex/store.js'
require('../static/css/index.css') require('../static/css/index.css')
Vue.use(uploader) Vue.use(uploader)
Vue.prototype.fileUrl = 'http://39.97.169.207/'
// Vue.prototype.baseURL = 'http://172.16.2.69:8088/' // Vue.prototype.baseURL = 'http://172.16.2.69:8088/'
Vue.prototype.baseURL = 'http://39.97.169.207:9200/' // 测试 Vue.prototype.baseURL = 'http://39.97.169.207:9200/' // 测试
// Vue.prototype.baseURL = 'https://witcase.chinajinmao.cn' // 正式 // Vue.prototype.baseURL = 'https://witcase.chinajinmao.cn' // 正式
axios.defaults.baseURL = Vue.prototype.baseURL axios.defaults.baseURL = Vue.prototype.baseURL
axios.defaults.fileUrl = Vue.prototype.fileUrl
axios.defaults.withCredentials = true axios.defaults.withCredentials = true
axios.defaults.timeout = 20000 axios.defaults.timeout = 20000
Vue.config.productionTip = false Vue.config.productionTip = false
......
...@@ -174,7 +174,7 @@ export default new Router({ ...@@ -174,7 +174,7 @@ export default new Router({
path: '/IOC/recipe', path: '/IOC/recipe',
name: 'recipe', name: 'recipe',
meta: { meta: {
pageName: '菜谱管理' pageName: '商铺管理'
}, },
component: resolve => component: resolve =>
require(['../components/page/IOC/recipe.vue'], resolve) require(['../components/page/IOC/recipe.vue'], resolve)
......
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 sign in to comment