|
@@ -33,9 +33,11 @@ Vue.use(Cell).use(CellGroup).use(Notify)
|
|
export default {
|
|
export default {
|
|
name: 'about',
|
|
name: 'about',
|
|
data () {
|
|
data () {
|
|
|
|
+ let verTag = process.env.NODE_ENV === 'development' ? 'beta' : '';
|
|
return {
|
|
return {
|
|
|
|
+ verTag : verTag,
|
|
info: {},
|
|
info: {},
|
|
- app_ver: '8.0',
|
|
|
|
|
|
+ app_ver: '8.0' + verTag,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created () {
|
|
created () {
|
|
@@ -43,7 +45,7 @@ export default {
|
|
let self = this
|
|
let self = this
|
|
if (window.plus) {
|
|
if (window.plus) {
|
|
plus.runtime.getProperty(plus.runtime.appid, function (inf) {
|
|
plus.runtime.getProperty(plus.runtime.appid, function (inf) {
|
|
- self.app_ver = inf.version
|
|
|
|
|
|
+ self.app_ver = inf.version + self.verTag
|
|
})
|
|
})
|
|
}
|
|
}
|
|
},
|
|
},
|