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.
106 lines
3.8 KiB
106 lines
3.8 KiB
<template>
|
|
<view class="container">
|
|
<view class="head"> 欢迎使用次元Hub</view>
|
|
<uni-group mode="card">
|
|
<uni-collapse>
|
|
<uni-collapse-item title="1.次元Hub是什么?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="2.怎样成为艺术家?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="3.怎样上传素材?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="4.素材在哪里查看?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="5.怎样结算收益?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="6.收益如何产生?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="7.单次广告收益是多少?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="8.如何提现?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="9.为何存在6.5%手续费?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="10.素材何时审核?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
<uni-collapse-item title="11.如何邀请更多的艺术家?" :show-animation="true">
|
|
<view class="content">
|
|
<text class="text">手风琴效果同时只会保留一个组件的打开状态,其余组件会自动关闭。</text>
|
|
</view>
|
|
</uni-collapse-item>
|
|
</uni-collapse>
|
|
|
|
</uni-group>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
userInfo:{}
|
|
}
|
|
},
|
|
created() {
|
|
const userInfo = uni.getStorageSync('userInfo')
|
|
if (!userInfo) {
|
|
console.log('havent userInfo')
|
|
uni.showModal({
|
|
content: '艺术家账户过期,请重新登录!',
|
|
showCancel: false,
|
|
success() {
|
|
//没有缓存则跳转登录页面
|
|
uni.reLaunch({
|
|
url: '/pages/login/login'
|
|
});
|
|
}
|
|
});
|
|
} else {
|
|
this.userInfo = userInfo;
|
|
console.log('have userInfo')
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.head{
|
|
text-align: center;
|
|
color: blue;
|
|
font-size:36rpx;
|
|
}
|
|
</style>
|
|
|