You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
481 B
Vue
35 lines
481 B
Vue
<template>
|
|
<div>
|
|
工作台
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
onShareAppMessage() {
|
|
return this.G.shareFun();
|
|
},
|
|
onReady() {
|
|
this.G.setNavStyle();
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
onLoad() {},
|
|
onShow() {
|
|
let that = this;
|
|
if (typeof that.$mp.page.getTabBar === "function" && that.$mp.page.getTabBar()) {
|
|
that.$mp.page.getTabBar().setData({
|
|
selected: 4,
|
|
isShow: true,
|
|
});
|
|
}
|
|
},
|
|
created() {},
|
|
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|