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.
33 lines
667 B
33 lines
667 B
<template> |
|
<view style="font-size: 14px;line-height: 26px;padding: 32upx;background: #FFFFFF;" class="home1"> |
|
<view style="color: #333333;font-size: 28upx;" v-html="content"></view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
content:'' |
|
} |
|
}, |
|
onLoad() { |
|
this.getGuize(); |
|
}, |
|
methods: { |
|
getGuize(){ |
|
this.$Request.getT('/common/type/154').then(res =>{ |
|
if(res.code == 0){ |
|
this.content = res.data.value; |
|
} |
|
}); |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style> |
|
page{ |
|
background: #FFFFFF; |
|
} |
|
</style>
|
|
|