index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  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' }"
  8. :animation="true" actionText="取消"></u-search>
  9. </view>
  10. <view class="icon" @click="message()">&#xe60d;</view>
  11. <view class="bage" v-if="count > 0"></view>
  12. </view>
  13. <!--轮播图-->
  14. <u-swiper circular :radius="5" :indicator="true" keyName="image" :list="bannerList" :height="110"
  15. class="uni-swiper" @click="click"></u-swiper>
  16. <!--通知公告-->
  17. <view class="notice">
  18. <u-notice-bar color="#848484" :text="noticeList" :step="true" direction="column" mode="link"
  19. bgColor="white" speed="300" url="/pages/notice/index"></u-notice-bar>
  20. </view>
  21. <!--菜单-->
  22. <view class="menu">
  23. <view class="msn" v-for="(item, index) in menuList" :key="index" @click="navTo(item.path)">
  24. <view class="out">
  25. <view class="int">
  26. <image :src="item.icon" mode="widthFix" style="max-width: 54px; max-height: 52px; object-fit: contain;"></image>
  27. <view class="tit">{{ item.menuName }}</view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="clear"></view>
  32. </view>
  33. <view class="menu">
  34. <!--边民菜单与组长菜单-->
  35. <view class="menu" v-if="user.userType == 1 || user.userType == 2">
  36. <view class="msn" @click="go('/pages/market/one/leader/order')">
  37. <view class="out">
  38. <view class="int">
  39. <view class="icon ioc" style="background-color: #00aaff; color: #ffffff">&#xe6e9;</view>
  40. <view class="tit">一级市场交易</view>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="msn" @click="go('/pages/market/two/leader/order')">
  45. <view class="out">
  46. <view class="int">
  47. <view class="icon ioc" style="background-color: #00aaff; color: #ffffff">&#xe606;</view>
  48. <view class="tit">二级市场交易</view>
  49. </view>
  50. </view>
  51. </view>
  52. <view class="msn" @click="go('/pages/market/order/order')">
  53. <view class="out">
  54. <view class="int">
  55. <view class="icon ioc" style="background-color: #00aaff; color: #aaffff">&#xe612;</view>
  56. <view class="tit">商品上架</view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. <!--收购商-->
  62. <view class="menu" v-if="user.userType == 3">
  63. <view class="msn" @click="go('/pages/market/two/purchaser/order/cart')">
  64. <view class="out">
  65. <view class="int">
  66. <view class="icon ioc" style="background-color: #fff6e0; color: #f1ba41">&#xe604;</view>
  67. <view class="tit">购物车</view>
  68. </view>
  69. </view>
  70. </view>
  71. <view class="msn" @click="go('/pages/market/two/purchaser/address/list')">
  72. <view class="out">
  73. <view class="int">
  74. <view class="icon ioc" style="background-color: #fff6e0; color: #f1ba41">&#xe623;</view>
  75. <view class="tit">地址管理</view>
  76. </view>
  77. </view>
  78. </view>
  79. <view class="msn" @click="go('/pages/market/two/purchaser/order/list')">
  80. <view class="out">
  81. <view class="int">
  82. <view class="icon ioc" style="background-color: #f0dcfc; color: #b064d8">&#xe628;</view>
  83. <view class="tit">我的订单</view>
  84. </view>
  85. </view>
  86. </view>
  87. <view class="msn" @click="go('/pages/authentication/purchaser/info')">
  88. <view class="out">
  89. <view class="int">
  90. <view class="icon ioc" style="background-color: #e0ffff; color: #00bfff">&#xe660;</view>
  91. <view class="tit">我的认证</view>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. <!--合作社-->
  97. <view class="menu" v-if="user.userType == 6">
  98. <view class="msn" @click="go('/pages/market/one/cooperative/order')">
  99. <view class="out">
  100. <view class="int">
  101. <view class="icon ioc" style="background-color: #e1f6e9; color: #47cf74">&#xe634;</view>
  102. <view class="tit">结算单</view>
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. <!--最新资讯-->
  109. <view class="news">
  110. <view class="vlabel">
  111. <view class="tag"></view>
  112. <text class="title">最新资讯</text>
  113. <text class="more" @click="navTo('/pages/news/list')">
  114. <text>更多</text>
  115. <text class="icon">&#xe8f2;</text>
  116. </text>
  117. </view>
  118. <view class="list animated fadeInDown">
  119. <view class="news_item" v-for="(item, index) in newsList" :key="index"
  120. @click="go('/pages/news/detail?id=' + item.id)">
  121. <image :src="item.cover" mode="aspectFill" class="img" v-if="item.cover"></image>
  122. <view class="con">
  123. <view class="title ellip">{{ item.title }}</view>
  124. <view class="source omit">
  125. <text class="icon">&#xe639;</text>
  126. <text>{{ item.readCount }}</text>
  127. </view>
  128. <view class="releaseTime">{{item.releaseTime}}</view>
  129. </view>
  130. </view>
  131. </view>
  132. </view>
  133. </view>
  134. <u-popup :show="show" @close="close()" round="15" mode="center" :closeable="true" :closeOnClickOverlay="false"
  135. :customStyle="{ width: '90%' }">
  136. <view class="ppopup">
  137. <u-divider text="交易订单提醒" textSize="16"></u-divider>
  138. <view class="contents">
  139. <view class="item omit">
  140. <text class="label">商品名称:</text>
  141. <text class="desc">{{ order.goodsNames }}</text>
  142. </view>
  143. <view class="item omit">
  144. <text class="label">数量:</text>
  145. <text class="desc">{{ order.totalWeight }}</text>
  146. </view>
  147. <view class="item omit">
  148. <text class="label">金额:</text>
  149. <text class="desc">¥ {{ order.totalPrice }}</text>
  150. </view>
  151. </view>
  152. <button class="btn" @click="confirm()">去处理</button>
  153. </view>
  154. </u-popup>
  155. <u-popup :show="faceRegister" @close="close()" round="15" mode="center" :closeOnClickOverlay="false"
  156. :customStyle="{ width: '90%' }">
  157. <view class="reflush" @click="checkFace">刷新</view>
  158. <view class="ppopup">
  159. <u-divider text="人脸录入" textSize="16"></u-divider>
  160. <view class="contents">
  161. <view class="item omit">
  162. <text class="label">边民信息:</text>
  163. <text class="desc">{{ user.name }}({{ user.phone }})</text>
  164. </view>
  165. <view style="text-indent: 2rem;line-height: 60rpx;">
  166. 根据相关规定,边民进行互市贸易需要确保为本人实际操作,为了确保后续交易的合规合法话,需要您先录入人脸!</view>
  167. </view>
  168. <button class="btn" @click="go('/pages/face/faceRegister')">马上录入</button>
  169. </view>
  170. </u-popup>
  171. </view>
  172. </template>
  173. <script>
  174. export default {
  175. data() {
  176. return {
  177. keyword: '',
  178. bannerList: [],
  179. newsList: [],
  180. noticeList: ['天保物流APP上线了', '关于天保物流边民互市贸易开通注意事项'],
  181. roleMenu: [],
  182. menuList: [],
  183. count: 0,
  184. show: false,
  185. order: {},
  186. user: {},
  187. faceRegister: false,
  188. cooper_entrust: 2
  189. };
  190. },
  191. onLoad() {
  192. let user = this.getUser();
  193. this.user = user;
  194. this.getBannerList();
  195. this.getNewsList();
  196. this.getMenu();
  197. uni.$on('getMenu', res => {
  198. this.getMenu();
  199. });
  200. },
  201. onShow() {
  202. this.getOrderConfirm();
  203. this.checkFace()
  204. this.keyword = '';
  205. this.getRead();
  206. },
  207. methods: {
  208. close() {
  209. this.show = false;
  210. },
  211. checkFace() {
  212. let user = this.getUser();
  213. if ((user.userType == 1 || user.userType == 2) && user.face == 0) {
  214. this.faceRegister = true;
  215. return;
  216. }
  217. this.faceRegister=false;
  218. this.getOrderConfirm();
  219. },
  220. go(url) {
  221. uni.navigateTo({
  222. url: url
  223. });
  224. },
  225. //获取待处理的订单弹出
  226. getOrderConfirm() {
  227. let user = this.getUser();
  228. if (user.userType > 2) {
  229. return;
  230. }
  231. // 是否校验互助委托书【1校验 2不校验】
  232. this.http.request({
  233. url: '/sp-admin/SpCfg/cooper',
  234. method: 'POST',
  235. data: { cfgName: 'cooper_entrust_cfg' },
  236. success: res => {
  237. this.cooper_entrust = JSON.parse(res.data.data).cooper_entrust
  238. this.http.request({
  239. url: '/level-one-server/app/TbOrder/getNoConfirmOrder',
  240. data: {cooper_entrust: this.cooper_entrust},
  241. loading: 'false',
  242. success: res => {
  243. if (res.data.data) {
  244. this.order = res.data.data;
  245. this.show = true;
  246. }
  247. }
  248. });
  249. }
  250. })
  251. },
  252. confirm() {
  253. if (this.order.declareType == '1') {
  254. uni.navigateTo({
  255. url: '/pages/market/one/leader/handle?orderId=' + this.order.id+'&peopleConfirmStatus=' + this.order.peopleConfirmStatus +'&applyConfirmStatus=' + this.order.applyConfirmStatus
  256. });
  257. } else {
  258. uni.navigateTo({
  259. url: '/pages/market/one/leader/handleThree?orderId=' + this.order.id +
  260. '&peopleConfirmStatus=' + this.order.peopleConfirmStatus + '&cooperEntrustStatus=' +
  261. this.order.cooperEntrustStatus + '&applyConfirmStatus=' + this.order.applyConfirmStatus
  262. });
  263. }
  264. this.show = false;
  265. },
  266. getRead() {
  267. this.http.request({
  268. url: '/sp-admin/app/TbMessage/getRead',
  269. loading: 'false',
  270. success: res => {
  271. if (res.data.data.count > 0) {
  272. this.count = res.data.data.count;
  273. uni.setTabBarBadge({
  274. index: 1,
  275. text: res.data.data.count
  276. });
  277. } else {
  278. this.count = 0;
  279. }
  280. }
  281. });
  282. },
  283. getBannerList() {
  284. this.http.request({
  285. url: '/level-one-server/app/TbBanner/getList',
  286. success: res => {
  287. this.bannerList = res.data.data;
  288. }
  289. });
  290. },
  291. getMenu() {
  292. this.menuList = [];
  293. let menu = uni.getStorageSync('menu');
  294. this.http.request({
  295. url: '/sp-admin/app/AppMenu/getList',
  296. data:{pageNo:1,pageSize:50},
  297. success: res => {
  298. let data = res.data.data;
  299. console.log(data);
  300. menu.map((item2, index1) => {
  301. data.map((item1, index) => {
  302. if (parseInt(item1.id) == parseInt(item2)) {
  303. item1.icon =item1.icon
  304. this.menuList.push(item1);
  305. }
  306. });
  307. });
  308. this.menuList.sort((a, b) => a.sort - b.sort);
  309. }
  310. });
  311. },
  312. getNewsList() {
  313. this.http.request({
  314. url: '/level-one-server/app/TbPortNews/getNewestList',
  315. data: {
  316. limit: 3
  317. },
  318. success: res => {
  319. this.newsList = res.data.data;
  320. }
  321. });
  322. },
  323. //点击轮播图
  324. click(index) {
  325. },
  326. message() {
  327. uni.switchTab({
  328. url: '/pages/message/message'
  329. });
  330. },
  331. search() {
  332. uni.navigateTo({
  333. url: '/pages/news/list?keyword=' + this.keyword
  334. });
  335. },
  336. navTo(url) {
  337. //收购商需要认证才给访问
  338. if (this.getUser().userType == 3 && !this.hasAuth()) {
  339. uni.navigateTo({
  340. url: '/pages/authentication/index'
  341. });
  342. return;
  343. }
  344. uni.navigateTo({
  345. url: url,
  346. fail: res => {
  347. console.log('zx:' + JSON.stringify(res));
  348. uni.showModal({
  349. content: '功能还在开发中',
  350. showCancel: false
  351. });
  352. }
  353. });
  354. },
  355. go(url) {
  356. uni.navigateTo({
  357. url: url
  358. });
  359. }
  360. },
  361. //下拉刷新
  362. onPullDownRefresh() {
  363. setTimeout(() => {
  364. uni.stopPullDownRefresh();
  365. this.getMenu();
  366. }, 1000);
  367. }
  368. };
  369. </script>
  370. <style lang="scss">
  371. page {
  372. background-color: $pg;
  373. }
  374. .top {
  375. width: 100%;
  376. position: relative;
  377. }
  378. .cmain {
  379. padding: 10px 15px 10px 15px;
  380. margin-top: -183px;
  381. position: relative;
  382. .vsearch {
  383. margin-bottom: 13px;
  384. position: relative;
  385. .vse {
  386. width: 82% !important;
  387. }
  388. .icon {
  389. position: absolute;
  390. right: 0px;
  391. top: 0px;
  392. color: white;
  393. font-size: 25px;
  394. top: 5px;
  395. }
  396. .bage {
  397. width: 8px;
  398. height: 8px;
  399. border-radius: 50%;
  400. background-color: #f44336;
  401. top: 0px;
  402. right: 0px;
  403. position: absolute;
  404. }
  405. }
  406. .uni-swiper {
  407. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  408. }
  409. .notice {
  410. margin-top: 10px;
  411. border-radius: 5px !important;
  412. overflow: hidden;
  413. }
  414. .news {
  415. margin-top: 15px;
  416. }
  417. }
  418. .reflush {
  419. width: 60rpx;
  420. height: 60rpx;
  421. float: right;
  422. position: absolute;
  423. right: 20rpx;
  424. padding: 20rpx;
  425. font-size: 24rpx;
  426. }
  427. .ppopup {
  428. padding: 50rpx 30rpx;
  429. .item {
  430. padding: 5px 0px 5px 0px;
  431. color: $font-c;
  432. .label {
  433. width: 70px;
  434. float: left;
  435. text-align: left;
  436. padding-right: 10px;
  437. font-weight: bold;
  438. }
  439. }
  440. }
  441. </style>