index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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="message()">&#xe60d;</view>
  10. <view class="bage" v-if="count > 0"></view>
  11. </view>
  12. <!--轮播图-->
  13. <u-swiper circular :radius="5" :indicator="true" keyName="image" :list="bannerList" :height="110" class="uni-swiper" @click="click"></u-swiper>
  14. <!--通知公告-->
  15. <view class="notice">
  16. <u-notice-bar color="#848484" :text="noticeList" :step="true" direction="column" mode="link" bgColor="white" speed="300" url="/pages/notice/index"></u-notice-bar>
  17. </view>
  18. <!--菜单-->
  19. <view class="menu">
  20. <view class="msn" v-for="(item, index) in menuList" :key="index" @click="navTo(item.path)">
  21. <view class="out">
  22. <view class="int">
  23. <image :src="item.icon" mode="widthFix" style="width: 54px; height: 54px"></image>
  24. <view class="tit">{{ item.menuName }}</view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="clear"></view>
  29. </view>
  30. <!--最新资讯-->
  31. <view class="news">
  32. <view class="vlabel">
  33. <view class="tag"></view>
  34. <text class="title">最新资讯</text>
  35. <text class="more" @click="navTo('/pages/news/list')">
  36. <text>更多</text>
  37. <text class="icon">&#xe8f2;</text>
  38. </text>
  39. </view>
  40. <view class="list animated fadeInDown">
  41. <view class="news_item" v-for="(item, index) in newsList" :key="index" @click="go('/pages/news/detail?id=' + item.id)">
  42. <image :src="item.cover" mode="aspectFill" class="img" v-if="item.cover"></image>
  43. <image src="../../static/tp.jpg" mode="aspectFill" class="img" v-else></image>
  44. <view class="con">
  45. <view class="title ellip">{{ item.title }}</view>
  46. <view class="source omit">
  47. <text class="icon">&#xe639;</text>
  48. <text>{{ item.readCount }}</text>
  49. </view>
  50. <view class="releaseTime">{{ util.forDate(item.releaseTime,'yyyy-MM-dd HH:mm') }}</view>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <u-popup :show="show" @close="close()" round="15" mode="center" :closeOnClickOverlay="false" :customStyle="{ width: '90%' }">
  57. <view class="ppopup">
  58. <u-divider text="交易订单提醒" textSize="16"></u-divider>
  59. <view class="contents">
  60. <view class="item omit">
  61. <text class="label">商品名称:</text>
  62. <text class="desc">{{ order.goodsNames }}</text>
  63. </view>
  64. <view class="item omit">
  65. <text class="label">数量:</text>
  66. <text class="desc">{{ order.totalWeight }}</text>
  67. </view>
  68. <view class="item omit">
  69. <text class="label">金额:</text>
  70. <text class="desc">¥ {{ order.totalPrice }}</text>
  71. </view>
  72. </view>
  73. <button class="btn" @click="confirm()">去处理</button>
  74. </view>
  75. </u-popup>
  76. </view>
  77. </template>
  78. <script>
  79. export default {
  80. data() {
  81. return {
  82. keyword: '',
  83. bannerList: [],
  84. newsList: [],
  85. noticeList: ['边民互市贸易APP上线了', '关于边民互市贸易开通注意事项'],
  86. roleMenu: [],
  87. menuList: [],
  88. count: 0,
  89. show: false,
  90. order: {},
  91. user:{}
  92. };
  93. },
  94. onLoad() {
  95. this.user=this.getUser();
  96. this.getBannerList();
  97. this.getNewsList();
  98. this.getMenu();
  99. uni.$on('getMenu', res => {
  100. this.getMenu();
  101. });
  102. },
  103. onShow() {
  104. this.keyword = '';
  105. this.getRead();
  106. this.getOrderConfirm();
  107. },
  108. methods: {
  109. //获取待处理的订单弹出
  110. getOrderConfirm() {
  111. let user=this.getUser();
  112. console.log(user);
  113. if(user.userType>2){
  114. return;
  115. }
  116. this.http.request({
  117. url: '/level-one-server/app/TbOrder/getNoConfirmOrder',
  118. loading: 'false',
  119. success: res => {
  120. if (res.data.data) {
  121. this.order = res.data.data;
  122. this.show = true;
  123. }
  124. }
  125. });
  126. },
  127. confirm() {
  128. if(this.order.declareType == '1') {
  129. uni.navigateTo({ url: '/pages/market/one/leader/handle?orderId=' + this.order.id });
  130. } else {
  131. uni.navigateTo({ url: '/pages/market/one/leader/handleThree?orderId=' + this.order.id + '&peopleConfirmStatus=' + this.order.peopleConfirmStatus + '&cooperEntrustStatus=' + this.order.cooperEntrustStatus+ '&applyConfirmStatus=' + this.order.applyConfirmStatus});
  132. }
  133. this.show = false;
  134. },
  135. getRead() {
  136. this.http.request({
  137. url: '/sp-admin/app/TbMessage/getRead',
  138. loading: 'false',
  139. success: res => {
  140. if (res.data.data.count > 0) {
  141. this.count = res.data.data.count;
  142. uni.setTabBarBadge({ index: 1, text: res.data.data.count });
  143. } else {
  144. this.count = 0;
  145. }
  146. }
  147. });
  148. },
  149. getBannerList() {
  150. this.http.request({
  151. url: '/level-one-server/app/TbBanner/getList',
  152. success: res => {
  153. this.bannerList = res.data.data;
  154. }
  155. });
  156. },
  157. getMenu() {
  158. this.menuList = [];
  159. let menu = uni.getStorageSync('menu');
  160. this.http.request({
  161. url: '/sp-admin/app/AppMenu/getList',
  162. success: res => {
  163. let data = res.data.data;
  164. menu.map((item2, index1) => {
  165. data.map((item1, index) => {
  166. if (parseInt(item1.id) == parseInt(item2)) {
  167. this.menuList.push(item1);
  168. }
  169. });
  170. });
  171. this.menuList.sort((a, b) => a.sort - b.sort);
  172. }
  173. });
  174. },
  175. getNewsList() {
  176. this.http.request({
  177. url: '/level-one-server/app/TbPortNews/getNewestList',
  178. data: { limit: 3 },
  179. success: res => {
  180. this.newsList = res.data.data;
  181. }
  182. });
  183. },
  184. //点击轮播图
  185. click(index) {
  186. uni.navigateTo({ url: '/pages/news/detail?id=8' });
  187. },
  188. message() {
  189. uni.switchTab({ url: '/pages/message/message' });
  190. },
  191. search() {
  192. uni.navigateTo({ url: '/pages/news/list?keyword=' + this.keyword });
  193. },
  194. navTo(url) {
  195. //收购商需要认证才给访问
  196. if (this.getUser().userType == 3 && !this.hasAuth()) {
  197. uni.navigateTo({ url: '/pages/authentication/index' });
  198. return;
  199. }
  200. uni.navigateTo({
  201. url: url,
  202. fail: res => {
  203. console.log('zx:' + JSON.stringify(res));
  204. uni.showModal({ content: '功能还在开发中', showCancel: false });
  205. }
  206. });
  207. },
  208. go(url) {
  209. uni.navigateTo({ url: url });
  210. }
  211. },
  212. //下拉刷新
  213. onPullDownRefresh() {
  214. setTimeout(() => {
  215. uni.stopPullDownRefresh();
  216. this.getMenu();
  217. }, 1000);
  218. }
  219. };
  220. </script>
  221. <style lang="scss">
  222. page {
  223. background-color: $pg;
  224. }
  225. .top {
  226. width: 100%;
  227. position: relative;
  228. }
  229. .cmain {
  230. padding: 10px 15px 10px 15px;
  231. margin-top: -183px;
  232. position: relative;
  233. .vsearch {
  234. margin-bottom: 13px;
  235. position: relative;
  236. .vse {
  237. width: 82% !important;
  238. }
  239. .icon {
  240. position: absolute;
  241. right: 0px;
  242. top: 0px;
  243. color: white;
  244. font-size: 25px;
  245. top: 5px;
  246. }
  247. .bage {
  248. width: 8px;
  249. height: 8px;
  250. border-radius: 50%;
  251. background-color: #f44336;
  252. top: 0px;
  253. right: 0px;
  254. position: absolute;
  255. }
  256. }
  257. .uni-swiper {
  258. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  259. }
  260. .notice {
  261. margin-top: 10px;
  262. border-radius: 5px !important;
  263. overflow: hidden;
  264. }
  265. .news {
  266. margin-top: 15px;
  267. }
  268. }
  269. .ppopup {
  270. .item {
  271. padding: 5px 0px 5px 0px;
  272. color: $font-c;
  273. .label {
  274. width: 70px;
  275. float: left;
  276. text-align: left;
  277. padding-right: 10px;
  278. font-weight: bold;
  279. }
  280. }
  281. }
  282. </style>