27 lines
325 B
Vue
27 lines
325 B
Vue
|
<template>
|
||
|
<view>
|
||
|
<status-container titlet="购买须知" :ifCustomer='false'>
|
||
|
<view slot="content">
|
||
|
<rich-text :nodes="content"></rich-text>
|
||
|
</view>
|
||
|
</status-container>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data(){
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
onLoad() {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|