工作端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
476 B

1 month ago
<template>
1 month ago
<view class="content">
1 month ago
<view>暂无数据</view>
1 month ago
</view>
1 month ago
</template>
<script>
1 month ago
export default {
data () {
return {
tabValue: 1,
}
},
onLoad () {
1 month ago
1 month ago
},
methods: {
onChange (name) {
this.tabValue = name;
console.log(name);
},
}
}
1 month ago
</script>
1 month ago
<style lang="scss" scoped>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
1 month ago
width: 100%;
height: 100vh;
1 month ago
}
1 month ago
</style>