123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <template>
- <view class="content">
- <view class="cu-bar bg-white solid-bottom">
- <view class="action">
- <!-- <text class="cuIcon-title text-blue"></text>按钮形状 -->
- </view>
- <view class="action">
- <navigator class="action" url="design" hover-class="none">
- <text class="text-df text-purple" @tap="onNavUser">编辑</text>
- </navigator>
- </view>
- </view>
- <view class="cu-card">
- <view class="cu-item shadow">
- <view class="content">
- <view class="solids-bottom padding-xs flex align-center">
- <view class="flex-sub text-center">
- <view class="cu-avatar xl round margin-left" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big99008.jpg);"></view>
-
- <view class="solid-bottom text-lg padding">
-
- <text class="text-black">ColorUI组件库</text>
- </view>
- <view class="padding">页面小标题,首要层级显示内容</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="cu-card article">
- <view class="cu-item shadow">
- <view class="title"><view class="text-cut">最近在玩</view></view>
- <view class="content">
- <image src="https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg"
- mode="aspectFill"></image>
- <view class="desc">
- <view class="text-content"> 折磨生出苦难,苦难又会加剧折磨,凡间这无穷的循环,将有我来终结!真正的恩典因不完整而美丽,因情感而真诚,因脆弱而自由!</view>
- <view>
- <view class="cu-tag bg-red light sm round">正义天使</view>
- <view class="cu-tag bg-green light sm round">史诗</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="cu-card article">
- <view class="cu-item shadow">
- <view class="title"><view class="text-cut">关注游戏</view></view>
- <view class="content">
- <image src="https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg"
- mode="aspectFill"></image>
- <view class="desc">
- <view class="text-content"> 折磨生出苦难,苦难又会加剧折磨,凡间这无穷的循环,将有我来终结!真正的恩典因不完整而美丽,因情感而真诚,因脆弱而自由!</view>
- <view>
- <view class="cu-tag bg-red light sm round">正义天使</view>
- <view class="cu-tag bg-green light sm round">史诗</view>
- </view>
- </view>
- </view>
- </view>
- </view>
-
- <view v-if="hasLogin" class="hello">
- <view class="title">
- 您好 {{userName}},您已成功登录。
- </view>
- <view class="ul">
- <view>这是 uni-app 带登录模板的示例App首页。</view>
- <view>在 “我的” 中点击 “退出” 可以 “注销当前账户”</view>
- </view>
- </view>
- <view v-if="!hasLogin" class="hello">
- <view class="title">
- 您好 游客。
- </view>
- <view class="ul">
- <view>这是 uni-app 带登录模板的示例App首页。</view>
- <view>在 “我的” 中点击 “登录” 可以 “登录您的账户”</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState
- } from 'vuex'
- export default {
- computed: mapState(['forcedLogin', 'hasLogin', 'userName']),
- onLoad() {
- if (!this.hasLogin) {
- uni.showModal({
- title: '未登录',
- content: '您未登录,需要登录后才能继续',
- /**
- * 如果需要强制登录,不显示取消按钮
- */
- showCancel: !this.forcedLogin,
- success: (res) => {
- if (res.confirm) {
- /**
- * 如果需要强制登录,使用reLaunch方式
- */
- if (this.forcedLogin) {
- uni.reLaunch({
- url: '../login/login'
- });
- } else {
- uni.navigateTo({
- url: '../login/login'
- });
- }
- }
- }
- });
- }
- },
- methods:{
- onNavUser(){
- uni.navigateTo({
- url: '../user/user'
- });
- }
- }
- }
- </script>
- <style>
- .hello {
- display: flex;
- flex: 1;
- flex-direction: column;
- }
- .title {
- color: #8f8f94;
- margin-top: 50upx;
- }
- .ul {
- font-size: 30upx;
- color: #8f8f94;
- margin-top: 50upx;
- }
- .ul>view {
- line-height: 50upx;
- }
- </style>
|