index.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view>
  3. <image src="../../static/images/my.png" mode="widthFix" class="top"></image>
  4. <view class="cmain">
  5. <view class="vsearch">
  6. <view class="vse">
  7. <u-search placeholder="搜索资讯" v-model="keyword" @search="search" :actionStyle="{ color: 'white' }" :animation="true" actionText="取消"></u-search>
  8. </view>
  9. <view class="icon" @click="scanCode()">&#xe60d;</view>
  10. </view>
  11. <!--轮播图-->
  12. <u-swiper circular :radius="5" :indicator="true" keyName="image" :list="bannerList" :height="110" class="uni-swiper" @click="click"></u-swiper>
  13. <!--通知公告-->
  14. <view class="notice">
  15. <u-notice-bar color="#848484" :text="noticeList" :step="true" direction="column" mode="link" bgColor="white" speed="300" url="/pages/notice/index"></u-notice-bar>
  16. </view>
  17. <!--菜单-->
  18. <view class="menu">
  19. <view class="msn" v-for="(item, index) in menuList" :key="index" @click="navTo(item.path)">
  20. <view class="out">
  21. <view class="int">
  22. <image :src="item.icon" mode="widthFix" style="width: 54px;height: 54px;"></image>
  23. <view class="tit">{{ item.menuName }}</view>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="clear"></view>
  28. </view>
  29. <!--最新资讯-->
  30. <view class="news">
  31. <view class="vlabel">
  32. <view class="tag"></view>
  33. <text class="title">最新资讯</text>
  34. <text class="more" @click="navTo('/pages/news/list')">更多</text>
  35. </view>
  36. <view class="list">
  37. <view class="news_item" v-for="(item, index) in newsList" :key="index" @click="go('/pages/news/detail?id=' + item.id)">
  38. <image src="../../static/news.jpg" mode="aspectFill" class="img"></image>
  39. <view class="con">
  40. <view class="title ellip">{{ item.title }}</view>
  41. <view class="source omit">{{ item.source }}</view>
  42. <view class="releaseTime">{{ item.releaseTime }}</view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. export default {
  52. data() {
  53. return {
  54. keyword: '',
  55. bannerList: [],
  56. newsList: [],
  57. noticeList: ['边民互市贸易APP上线了', '关于边民互市贸易开通注意事项'],
  58. roleMenu: [],
  59. menuList: []
  60. };
  61. },
  62. onLoad() {
  63. this.getBannerList();
  64. this.getNewsList();
  65. this.getMenu();
  66. },
  67. methods: {
  68. getBannerList() {
  69. this.http.request({
  70. url: '/level-one-server/app/TbBanner/getList',
  71. success: res => {
  72. this.bannerList = res.data.data;
  73. }
  74. });
  75. },
  76. getMenu() {
  77. let menu = uni.getStorageSync('menu');
  78. this.http.request({
  79. url: '/sp-admin/AppMenu/getList',
  80. success: res => {
  81. let data = res.data.data;
  82. menu.map((item2, index1) => {
  83. data.map((item1, index) => {
  84. if (parseInt(item1.id) == parseInt(item2)) {
  85. this.menuList.push(item1);
  86. }
  87. });
  88. });
  89. }
  90. });
  91. console.log(this.menuList);
  92. },
  93. getNewsList() {
  94. this.http.request({
  95. url: '/level-one-server/app/TbPortNews/getNewestList',
  96. data: { limit: 5 },
  97. success: res => {
  98. this.newsList = res.data.data;
  99. }
  100. });
  101. },
  102. navTo(url) {
  103. uni.navigateTo({
  104. url: url,
  105. fail: res => {
  106. console.log('zx:' + JSON.stringify(res));
  107. uni.showModal({ content: '功能还在开发中', showCancel: false });
  108. }
  109. });
  110. },
  111. go(url) {
  112. uni.navigateTo({ url: url });
  113. }
  114. }
  115. };
  116. </script>
  117. <style lang="scss">
  118. page {
  119. background-color: $pg;
  120. }
  121. .top {
  122. width: 100%;
  123. position: relative;
  124. }
  125. .cmain {
  126. padding: 10px 15px 10px 15px;
  127. margin-top: -193px;
  128. position: relative;
  129. .vsearch {
  130. margin-bottom: 13px;
  131. position: relative;
  132. .vse {
  133. width: 82% !important;
  134. }
  135. .icon {
  136. position: absolute;
  137. right: 0px;
  138. top: 0px;
  139. color: white;
  140. font-size: 25px;
  141. top: 5px;
  142. }
  143. }
  144. .uni-swiper {
  145. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  146. }
  147. .notice {
  148. margin-top: 10px;
  149. border-radius: 5px !important;
  150. overflow: hidden;
  151. }
  152. .news {
  153. margin-top: 15px;
  154. }
  155. }
  156. </style>