49 lines
666 B
Vue
49 lines
666 B
Vue
<template>
|
|
<view class="agreement">
|
|
<view class="agreementc">
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
name: 'zmm2113@qq.com基础版',
|
|
richtxt: '',
|
|
}
|
|
},
|
|
computed: {},
|
|
onShow() {
|
|
console.log("跳转到tabbar1")
|
|
uni.switchTab({
|
|
url: '/wx/tabbar1/index'
|
|
});
|
|
},
|
|
onLoad(e) {
|
|
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.agreement {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
margin-top: 24rpx;
|
|
}
|
|
|
|
.agreementc {
|
|
background: #fff;
|
|
padding: 24rpx;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.agreementc image,
|
|
.agreementc img {
|
|
max-width: 100%;
|
|
}
|
|
</style> |