index.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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="140" 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. <u-icon :name="item.icon" color="white" size="25" :custom-style="{ margin: '0 auto' }" class="ioc"></u-icon>
  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">更多</text>
  35. <view class="clear"></view>
  36. </view>
  37. <view class="list">
  38. <view class="news_item" v-for="(item, index) in newsList" :key="index" @click="go('/pages/news/detail?id=' + item.id)">
  39. <image src="../../static/news.jpg" mode="aspectFill" class="img"></image>
  40. <view class="con">
  41. <view class="title ellip">{{ item.title }}</view>
  42. <view class="date">
  43. <text class="icon">&#xe65c;</text>
  44. <text>{{ item.readCount }}</text>
  45. </view>
  46. <text class="releaseTime">{{ item.releaseTime }}</text>
  47. </view>
  48. <view class="clear"></view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. export default {
  57. data() {
  58. return {
  59. keyword: '',
  60. bannerList: [],
  61. newsList: [],
  62. noticeList: ['边民互市贸易APP上线了', '关于边民互市贸易开通注意事项'],
  63. roleMenu: [],
  64. menuList: []
  65. };
  66. },
  67. onLoad() {
  68. this.getBannerList();
  69. this.getNewsList();
  70. // this.getRoleMenu();
  71. this.getMenu();
  72. },
  73. methods: {
  74. getBannerList() {
  75. this.http.request({
  76. url: '/level-one-server/app/TbBanner/getList',
  77. success: res => {
  78. this.bannerList = res.data.data;
  79. }
  80. });
  81. },
  82. getRoleMenu() {
  83. let menu = uni.getStorageSync('menu');
  84. this.$api.getRoleMenu().then(res => {
  85. res.data.map((item1, index) => {
  86. menu.map((item2, index1) => {
  87. if (item1.appRoleId == item2) {
  88. this.roleMenu.push(item1.appMenuId);
  89. }
  90. });
  91. });
  92. this.getMenu();
  93. });
  94. },
  95. getMenu() {
  96. let menu = uni.getStorageSync('menu');
  97. this.http.request({
  98. url: '/sp-admin/AppMenu/getList',
  99. success: res => {
  100. let data = res.data.data
  101. menu.map((item2, index1) => {
  102. data.map((item1, index) => {
  103. if (parseInt(item1.id) == parseInt(item2)) {
  104. this.menuList.push(item1);
  105. }
  106. });
  107. });
  108. }
  109. });
  110. },
  111. getNewsList() {
  112. this.http.request({
  113. url: '/level-one-server/app/TbPortNews/getNewestList',
  114. data: { limit: 4 },
  115. success: res => {
  116. this.newsList = res.data.data;
  117. }
  118. });
  119. },
  120. navTo(path) {
  121. this.$common.to(path);
  122. }
  123. }
  124. };
  125. </script>
  126. <style lang="scss">
  127. page {
  128. background-color: #f6f6f7;
  129. }
  130. .top {
  131. width: 100%;
  132. position: relative;
  133. }
  134. .cmain {
  135. padding: 10px 15px 10px 15px;
  136. margin-top: -193px;
  137. position: relative;
  138. .vsearch {
  139. margin-bottom: 13px;
  140. position: relative;
  141. .vse {
  142. width: 82% !important;
  143. }
  144. .icon {
  145. position: absolute;
  146. right: 0px;
  147. top: 0px;
  148. color: white;
  149. font-size: 25px;
  150. top: 5px;
  151. }
  152. }
  153. .uni-swiper {
  154. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  155. }
  156. .notice {
  157. margin-top: 10px;
  158. border-radius: 5px !important;
  159. overflow: hidden;
  160. }
  161. .menu {
  162. background-color: white;
  163. padding-top: 3px;
  164. margin-top: 10px;
  165. padding-bottom: 7px;
  166. border-radius: 5px;
  167. .msn {
  168. float: left;
  169. width: 25%;
  170. text-align: center;
  171. .out {
  172. padding: 3px;
  173. .int {
  174. padding: 5px;
  175. animation: bounceIn 1s;
  176. .ioc {
  177. width: 45px;
  178. height: 45px;
  179. background-color: #1c9dff;
  180. border-radius: 50%;
  181. margin: 0 auto;
  182. line-height: 46px;
  183. .icon {
  184. font-size: 23px;
  185. color: white;
  186. }
  187. }
  188. .tit {
  189. font-size: 14px;
  190. margin-top: 5px;
  191. color: $font-c;
  192. }
  193. }
  194. }
  195. }
  196. }
  197. .news {
  198. background-color: white;
  199. margin-top: 10px;
  200. padding: 10px;
  201. }
  202. }
  203. </style>