index.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <view class="container">
  3. <!-- <view :style="{height: statusBarHeight + 'px'}"></view> -->
  4. <!-- <view :style="{height: navBarHeight + 'px'}"></view> -->
  5. <u-navbar :is-back="false" title="" :background="{ background: '#f7f7f7' }" :border-bottom="false">
  6. <view class="slot-wrap">
  7. <image src="/static/images/login-icon.png" mode="aspectFit" style="width: 200rpx;"></image>
  8. </view>
  9. </u-navbar>
  10. <view class="page-content">
  11. <swiper class="swiper" circular indicator-dots style="border-radius: 20rpx;overflow: hidden;height: 200px">
  12. <swiper-item v-for="(data, index) in swiperList" style="width: 100%;height: 100%;" :key="index">
  13. <view class="swiper-item" style="width: 100%;height: 100%;">
  14. <image :src="data.tupian" mode="aspectFill" style="width: 100%;height: 100%;"></image>
  15. </view>
  16. </swiper-item>
  17. </swiper>
  18. <u-grid :col="4" :border="false" style="margin: 10rpx 0 ;">
  19. <template v-for="(item,index) in navList" :key="index">
  20. <u-grid-item bg-color="none" @click="jumpToPage(item)">
  21. <image :src="`/static/index-icon/${item.image}.png`" style="height: 70rpx;width: 70rpx;">
  22. </image>
  23. <view class="grid-text">{{item.title}}</view>
  24. </u-grid-item>
  25. </template>
  26. </u-grid>
  27. <u-card padding="20" margin="30rpx 0rpx" border-radius="20" box-shadow="0px 2px 5px rgba(0, 0, 0, 0.1)">
  28. <template v-slot:head>
  29. <u-section title="今日热门" sub-title="查看更多" sub-color="#000000"></u-section>
  30. </template>
  31. <template v-slot:body>
  32. <view>
  33. 123456
  34. </view>
  35. </template>
  36. </u-card>
  37. <u-card padding="20" margin="30rpx 0rpx" border-radius="20" box-shadow="0px 2px 5px rgba(0, 0, 0, 0.1)">
  38. <template v-slot:head>
  39. <u-section title="今日热门" sub-title="查看更多" sub-color="#000000"></u-section>
  40. </template>
  41. <template v-slot:body>
  42. <view>
  43. <view class="u-body-item u-flex u-border-bottom u-col-between u-p-t-0">
  44. <view class="u-body-item-title u-line-2">瓶身描绘的牡丹一如你初妆,冉冉檀香透过窗心事我了然,宣纸上走笔至此搁一半</view>
  45. <image
  46. src="https://img11.360buyimg.com/n7/jfs/t1/94448/29/2734/524808/5dd4cc16E990dfb6b/59c256f85a8c3757.jpg"
  47. mode="aspectFill"></image>
  48. </view>
  49. <view class="u-body-item u-flex u-row-between u-p-b-0">
  50. <view class="u-body-item-title u-line-2">釉色渲染仕女图韵味被私藏,而你嫣然的一笑如含苞待放</view>
  51. <image
  52. src="https://img12.360buyimg.com/n7/jfs/t1/102191/19/9072/330688/5e0af7cfE17698872/c91c00d713bf729a.jpg"
  53. mode="aspectFill"></image>
  54. </view>
  55. </view>
  56. </template>
  57. </u-card>
  58. <button @click="toPage">是否登录</button>
  59. </view>
  60. </view>
  61. </template>
  62. <script setup>
  63. import {
  64. ref
  65. } from 'vue'
  66. import {
  67. onReady,
  68. onLoad
  69. } from '@dcloudio/uni-app'
  70. import {
  71. useAuthStore
  72. } from '@/store/authStore'
  73. const authStore = useAuthStore()
  74. // 屏幕状态栏高度
  75. const statusBarHeight = ref(0)
  76. // 顶部导航栏高度
  77. const navBarHeight = ref(0)
  78. // 是否登录
  79. const isLogin = ref(true)
  80. // 是否为会员,从缓存里拿取用户信息
  81. // const userInfo = uni.getStorageSync("userinfo") || {}
  82. // const isMember = userInfo?.isMember || false
  83. // 首页-轮播图
  84. const swiperList = ref([{
  85. tupian: 'https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain',
  86. id: '01'
  87. },
  88. {
  89. tupian: 'https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c',
  90. id: '02'
  91. }
  92. ])
  93. // 首页-导航栏
  94. const navList = ref([{
  95. id: 'notice',
  96. title: '通知公告',
  97. image: 'notice',
  98. url: '/pages/notice/notice/notice',
  99. toOtherApp: false,
  100. otherAppId: '其他小程序的appid'
  101. },
  102. {
  103. id: 'dynamic',
  104. title: '协会动态',
  105. image: 'dynamic',
  106. url: '/pages/dynamic/dynamic/dynamic',
  107. toOtherApp: false,
  108. otherAppId: '其他小程序的appid'
  109. },
  110. {
  111. id: 'guide',
  112. title: '办事指引',
  113. image: 'guide',
  114. url: '/pages/guide/guide/guide',
  115. toOtherApp: false,
  116. otherAppId: '其他小程序的appid'
  117. },
  118. {
  119. id: 'edu',
  120. title: '继续教育',
  121. image: 'edu',
  122. url: '跳转页面的路径',
  123. toOtherApp: true,
  124. otherAppId: '其他小程序的appid'
  125. },
  126. {
  127. id: 'level',
  128. title: '水平认证',
  129. image: 'level',
  130. url: '跳转页面的路径',
  131. toOtherApp: true,
  132. otherAppId: '其他小程序的appid'
  133. },
  134. {
  135. id: 'report',
  136. title: '研究报告',
  137. image: 'report',
  138. url: '跳转页面的路径',
  139. toOtherApp: true,
  140. otherAppId: '其他小程序的appid'
  141. },
  142. {
  143. id: 'index',
  144. title: '经理人指数',
  145. image: 'pay',
  146. url: '跳转页面的路径',
  147. toOtherApp: true,
  148. otherAppId: '其他小程序的appid'
  149. },
  150. {
  151. id: 'pay',
  152. title: '会费缴交',
  153. image: 'pay',
  154. url: '跳转页面的路径',
  155. toOtherApp: true,
  156. otherAppId: '其他小程序的appid'
  157. }
  158. ])
  159. const jumpToPage = (data) => {
  160. if(data.toOtherApp){
  161. // 跳转其他小程序
  162. console.log("跳转至其他小程序", data.otherAppId)
  163. return
  164. }
  165. uni.navigateTo({
  166. url: data.url
  167. })
  168. }
  169. const toPage = () => {
  170. if (!authStore.isAuthenticated) {
  171. uni.navigateTo({
  172. url: "/pages/login/login"
  173. })
  174. return
  175. }
  176. }
  177. onReady(() => {
  178. uni.getSystemInfo({
  179. success(e) {
  180. statusBarHeight.value = e.statusBarHeight;
  181. let custom = uni.getMenuButtonBoundingClientRect();
  182. navBarHeight.value = custom.height + (custom.top - e.statusBarHeight) * 2;
  183. }
  184. })
  185. })
  186. onLoad(() => {
  187. uni.setTabBarBadge({ //显示数字
  188. index: 1, //tabbar下标
  189. text: '999' //数字
  190. })
  191. })
  192. </script>
  193. <style lang="scss" scoped>
  194. .container {
  195. // height: 100vh;
  196. width: 100vw;
  197. background-color: $uni-bg-color;
  198. padding: 0 20rpx;
  199. }
  200. .slot-wrap {
  201. padding-left: 20rpx;
  202. }
  203. .grid-text {
  204. font-size: 28rpx;
  205. margin-top: 4rpx;
  206. color: $uni-text-color;
  207. }
  208. .u-card-wrap {
  209. background-color: $u-bg-color;
  210. padding: 1px;
  211. }
  212. .u-body-item {
  213. font-size: 32rpx;
  214. color: #333;
  215. // padding: 20rpx 10rpx;
  216. }
  217. .u-body-item image {
  218. width: 120rpx;
  219. flex: 0 0 120rpx;
  220. height: 120rpx;
  221. border-radius: 8rpx;
  222. margin-left: 12rpx;
  223. }
  224. </style>