123456789101112131415161718192021222324252627 |
- <template>
- <view>
- <view @click="click('meihuajing')">选择完毕</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- methods:{
- click(data){
- uni.$emit('update_kuang',{msg:data})
- uni.switchTab({
- url:"../../tabbar/index/index",
- })
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|