49 lines
833 B
Vue
49 lines
833 B
Vue
<template>
|
|
<view style="font-size: 14px;line-height: 26px;padding: 32upx;" class="home1 ">
|
|
<view style="font-size: 28upx;" v-html="content"></view>
|
|
<view class="btn-box u-flex u-row-center">
|
|
<view class="btn" @click="back">同意</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
content: ''
|
|
}
|
|
},
|
|
onLoad() {
|
|
this.getGuize();
|
|
},
|
|
methods: {
|
|
back(){
|
|
uni.navigateBack()
|
|
},
|
|
getGuize() {
|
|
this.$u.get('app/common/type/155').then(res => {
|
|
this.content = res.data.value
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.btn {
|
|
width: 100%;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
border-radius: 30px;
|
|
background: #ff7581;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
}
|
|
.btn-box{
|
|
padding: 30rpx 230rpx;
|
|
}
|
|
page {
|
|
/* background: #1c1b20; */
|
|
}
|
|
</style> |