Compare commits
2 Commits
8e6b7d726b
...
e73a10ea1b
Author | SHA1 | Date |
---|---|---|
|
e73a10ea1b | |
|
35a36b6993 |
|
@ -45,4 +45,4 @@ VUE_APP_OSS_CONFIG_REGION = 'oss-cn-shanghai'
|
||||||
|
|
||||||
VUE_APP_OSS_CONFIG_BUCKET = 'zyypacs'
|
VUE_APP_OSS_CONFIG_BUCKET = 'zyypacs'
|
||||||
|
|
||||||
VUE_APP_OSS_PATH = '/dev/dist'
|
VUE_APP_OSS_PATH = '/test/dist'
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div id="app" style="position: relative">
|
<div id="app" style="position: relative">
|
||||||
<router-view />
|
<router-view />
|
||||||
<div v-adaptive @click="openI18n" style="position: fixed;bottom: 50px;left: 50px;z-index: 100000;width: 50px;height: 50px;background: #409eff88;line-height: 50px;text-align: center;color:#fff;border-radius: 50%;cursor: pointer">
|
<div v-show="show" v-adaptive @click="openI18n" style="position: fixed;bottom: 50px;left: 50px;z-index: 100000;width: 50px;height: 50px;background: #409eff88;line-height: 50px;text-align: center;color:#fff;border-radius: 50%;cursor: pointer">
|
||||||
i18n
|
i18n
|
||||||
</div>
|
</div>
|
||||||
<el-drawer
|
<el-drawer
|
||||||
|
@ -61,10 +61,12 @@ export default {
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
drawer: false,
|
drawer: false,
|
||||||
tableData: []
|
tableData: [],
|
||||||
|
show: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
this.show = process.env.VUE_APP_OSS_PATH === '/test/dist'
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
changeValue(target, attr, e) {
|
changeValue(target, attr, e) {
|
||||||
|
|
Loading…
Reference in New Issue