| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template>
- <view>
- <view class="sticky-nav">
- <view class="nav-box">
- <u-icon name="arrow-left" color="#000" size="48" @click="backHome()"></u-icon>
- <text class="rule-text">规则说明</text>
- </view>
- </view>
- <view class="content_box">
- <rich-text :nodes="nodes"></rich-text>
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
- nodes:[{
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '1.轮值法师/轮值善知识提交申请通过后,将会在法师答疑栏目显示,参与解答问题。普通法师/普通善知识提交申请通过后,不会在法师答疑栏目显示,不参与解答问题;'
- }]
- },
- {
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '2.您可以与法师/善知识进行一对一交流,以便帮助您解决修行困惑和生活烦恼;'
- }]
- },
- {
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '3.每次答疑需支付68香花券才可与法师/善知识进行交流(为方便用户、普渡众生,限时支付36香花券即可享受法师1v1答疑服务);'
- }]
- },
- {
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '4.计时收费从法师开始回复您的第一条消息时开始,单次有效时长不得超出30分钟;'
- }]
- },
- {
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '5.若您感觉本次答疑解惑不够充足,您可以在答疑结束5分钟倒计时内进行续费或再次咨询同一法师/善知识;'
- }]
- },
- {
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '6.答疑完成以后,您可对本次答疑进行评分,评分过低的法师/善知识将有可能会被取消答疑资格;'
- }]
- },
- {
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '7.请文明与法师/善知识进行交流,不可交流涉黄、赌、毒、政治、辱国等违法违规相关言论;'
- }]
- },
- {
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '8.平台会对所有答疑内容进行监督管理,一旦发现违规或被举报违规将严厉处罚;'
- }]
- },
- {
- name: 'p',
- attrs: {
- class: 'directory-content',
- },
- children: [{
- type: 'text',
- text: '9.咨询时间:8:00 - 20:00'
- }]
- }
- ]
- }
- },
- methods:{
- backHome() {
- uni.navigateBack({
- delta: 1
- });
- },
- }
- }
- </script>
- <style lang="less" scoped>
- .sticky-nav {
- position: sticky;
- width: 100%;
- top: 0;
- z-index: 1;
- }
- .nav-box {
- width: 100%;
- padding-top: 50rpx;
- display: flex;
- align-items: center;
- background: #fff;
- height: 100rpx;
- padding-bottom: 50rpx;
- /deep/.u-icon{
- margin-left: 20rpx!important;
- }
- .rule-text {
- font-size: 38rpx;
- color: #000;
- margin-left: 250rpx;
- }
- }
- /deep/.directory-content {
- margin: 0 0 25rpx 25rpx;
- font-size: 35rpx;
- color: rgb(118,118,118);
- }
- </style>
|