获取最新

This commit is contained in:
wulin 2020-08-25 18:40:16 +08:00
parent c283438e13
commit cd14c2c73d
3 changed files with 13 additions and 4 deletions

View File

@ -13,14 +13,14 @@ module.exports = {
assetsPublicPath: '/',
proxyTable: {
'/lz_management': {
target: 'http://localhost:8080',
target: 'http://192.168.43.94:8080',
changeOrigin: true
}
},
// Various Dev Server settings
// host: '192.168.43.94', // can be overwritten by process.env.HOST
host: IP, // can be overwritten by process.env.HOST
host: '192.168.43.94', // can be overwritten by process.env.HOST
//host: IP, // can be overwritten by process.env.HOST
port: 8001, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser: true,
errorOverlay: true,

View File

@ -1,6 +1,9 @@
<template>
<transition name="fade">
<keep-alive>
<router-view></router-view>
</keep-alive>
</transition>
</template>

View File

@ -32,6 +32,12 @@ const configRoutes = [
component: _import('modules/result/record/recorddetail'),
name: 'recorddetail',
meta: {title: '业绩详情', isDynamic: true, isTab: true}
},
{
path: '/result-record-lzresultrecordapp',
component: _import('modules/result/record/lzresultrecordapp'),
name: 'recorddetail',
meta: {title: '业绩审批', isDynamic: true, isTab: true, keepAlive: false}
}
]