index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  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/news/list"></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"
  27. style="max-width: 54px; max-height: 52px; object-fit: contain;"></image>
  28. <view class="tit">{{ item.menuName }}</view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="clear"></view>
  33. </view>
  34. <!--最新资讯-->
  35. <view class="news">
  36. <view class="vlabel">
  37. <view class="tag"></view>
  38. <text class="title">最新资讯</text>
  39. <text class="more" @click="navTo('/pages/news/list')">
  40. <text>更多</text>
  41. <text class="icon">&#xe8f2;</text>
  42. </text>
  43. </view>
  44. <view class="list animated fadeInDown">
  45. <view class="news_item" v-for="(item, index) in newsList" :key="index"
  46. @click="go('/pages/news/detail?id=' + item.id)">
  47. <image :src="item.cover" mode="aspectFill" class="img" v-if="item.cover"></image>
  48. <view class="con">
  49. <view class="title ellip">{{ item.title }}</view>
  50. <view class="source omit">
  51. <text class="icon">&#xe639;</text>
  52. <text>{{ item.readCount }}</text>
  53. </view>
  54. <view class="releaseTime">{{item.releaseTime}}</view>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. <u-popup :show="show" @close="close()" round="15" mode="center" :closeable="false" :closeOnClickOverlay="false"
  61. :customStyle="{ width: '90%' }">
  62. <view class="ppopup">
  63. <u-divider text="交易订单提醒" textSize="16"></u-divider>
  64. <view class="contents">
  65. <view class="item omit">
  66. <text class="label">商品名称:</text>
  67. <text class="desc">{{ order.goodsNames }}</text>
  68. </view>
  69. <view class="item omit">
  70. <text class="label">数量:</text>
  71. <text class="desc">{{ order.totalWeight }}</text>
  72. </view>
  73. <view class="item omit">
  74. <text class="label">金额:</text>
  75. <text class="desc">¥ {{ order.totalPrice }}</text>
  76. </view>
  77. </view>
  78. <button class="btn" @click="confirm()">去处理</button>
  79. </view>
  80. </u-popup>
  81. <u-popup :show="faceRegister" @close="close()" round="15" mode="center" :closeable="false"
  82. :closeOnClickOverlay="false" :customStyle="{ width: '90%' }">
  83. <view class="reflush" @click="checkFace">刷新</view>
  84. <view class="ppopup">
  85. <u-divider text="人脸录入" textSize="16"></u-divider>
  86. <view class="contents">
  87. <view class="item omit">
  88. <text class="label">边民信息:</text>
  89. <text class="desc">{{ user.name }}({{ user.phone }})</text>
  90. </view>
  91. <view style="text-indent: 2rem;line-height: 60rpx;">
  92. 根据相关规定,边民进行互市贸易需要确保为本人实际操作,为了确保后续交易的合规合法化,需要您先录入人脸!</view>
  93. </view>
  94. <button class="btn" @click="go('/pages/face/faceRegister')">马上录入</button>
  95. </view>
  96. </u-popup>
  97. <u-popup :show="purchaser" round="15" mode="center" :closeable="false" :closeOnClickOverlay="false"
  98. :customStyle="{ width: '90%' }">
  99. <view class="reflush" @click="getTbPurchaserAuth()">刷新</view>
  100. <view class="ppopup">
  101. <u-divider text="提醒" textSize="16"></u-divider>
  102. <view class="contents">
  103. <view style="text-indent: 2rem;line-height: 60rpx;">
  104. 您的资料不完善或正在审核中,请前往补充或者等待管理员审核!</view>
  105. </view>
  106. <button class="btn" @click="go('/pages/authentication/index')">前往查看</button>
  107. </view>
  108. </u-popup>
  109. <u-popup :show="update.visible" round="15" mode="center" :closeable="false" :closeOnClickOverlay="false"
  110. :customStyle="{ width: '90%' }">
  111. <view class="ppopup">
  112. <u-divider text="有新版本更新!" textSize="16"></u-divider>
  113. <view class="contents">
  114. <view style="text-indent: 2rem;line-height: 60rpx;">
  115. 更新内容:{{update.content}}
  116. </view>
  117. <view style="text-indent: 2rem;line-height: 60rpx;">
  118. 当前版本号:{{update.currentVersion}}
  119. </view>
  120. <view style="text-indent: 2rem;line-height: 60rpx;">
  121. 新版本号:{{update.version}}
  122. </view>
  123. </view>
  124. <button class="btn" @click="updateApk">立即更新</button>
  125. </view>
  126. </u-popup>
  127. </view>
  128. </template>
  129. <script>
  130. export default {
  131. data() {
  132. return {
  133. keyword: '',
  134. bannerList: [],
  135. newsList: [],
  136. noticeList: [],
  137. roleMenu: [],
  138. menuList: [],
  139. count: 0,
  140. show: false,
  141. order: {},
  142. user: {},
  143. faceRegister: false,
  144. cooper_entrust: 2,
  145. purchaser: false,
  146. update: {
  147. visible: false,
  148. currentVersion: '',
  149. version: '',
  150. content: '',
  151. url: ''
  152. }
  153. };
  154. },
  155. onLoad() {
  156. this.getBannerList();
  157. this.getNewsList();
  158. this.getMenu();
  159. uni.$on('getMenu', res => {
  160. this.getMenu();
  161. });
  162. },
  163. onShow() {
  164. this.keyword = '';
  165. let user = uni.getStorageSync('info');
  166. this.user = user;
  167. this.checkFace()
  168. this.getRead();
  169. this.getUpdateInfo();
  170. },
  171. methods: {
  172. getUpdateInfo() {
  173. let currentVersion = uni.getAppBaseInfo().appVersion;
  174. this.update.visible=false;
  175. this.http.request({
  176. url: '/sp-admin/app/updateInfo',
  177. loading: 'false',
  178. success: resp => {
  179. if(resp.data.data){
  180. let version = resp.data.data.version;
  181. this.update = {
  182. visible: currentVersion != version,
  183. currentVersion: currentVersion,
  184. content: resp.data.data.content,
  185. version: version,
  186. url: resp.data.data.url
  187. };
  188. }
  189. }
  190. })
  191. },
  192. updateApk() {
  193. plus.runtime.openURL(this.update.url)
  194. return;
  195. var dtask = plus.downloader.createDownload(
  196. this.update.url, {
  197. force: true
  198. }, (d, status) => {
  199. if (status == 200) {
  200. console.log("下载成功安装: " + d.filename);
  201. plus.runtime.install(d.filename)
  202. } else {
  203. plus.nativeUI.alert("安装失败,请稍候重试: " + status)
  204. }
  205. });
  206. dtask.start();
  207. },
  208. close() {
  209. this.show = false;
  210. },
  211. checkFace() {
  212. let user = this.user;
  213. this.faceRegister = false;
  214. if ((user.userType == 1 || user.userType == 2)) {
  215. this.http.request({
  216. url:'/sp-admin/app/AppUser/getAuth',
  217. success:resp=>{
  218. let res=resp.data.data;
  219. this.user.name=res.name;
  220. this.user.phone=res.phone;
  221. this.user.face=res.face;
  222. this.faceRegister=res.face==0;
  223. if(res.face==1){
  224. this.getOrderConfirm();
  225. }
  226. }
  227. })
  228. return;
  229. } else if (user.userType == 3) {
  230. this.getTbPurchaserAuth()
  231. }
  232. },
  233. go(url) {
  234. uni.navigateTo({
  235. url: url
  236. });
  237. },
  238. getTbPurchaserAuth() {
  239. this.purchaser = false;
  240. this.http.request({
  241. url: '/level-two-server/app/TbPurchaser/info',
  242. loading: 'false',
  243. success: res => {
  244. let resp = res.data;
  245. if (!resp.data || resp.data.judgeStatus == 2) {
  246. this.purchaser = true;
  247. return;
  248. }
  249. }
  250. })
  251. },
  252. //获取待处理的订单弹出
  253. getOrderConfirm() {
  254. let user = this.getUser();
  255. if (user.userType > 2) {
  256. return;
  257. }
  258. // 是否校验互助委托书【1校验 2不校验】
  259. this.http.request({
  260. url: '/sp-admin/SpCfg/cooper',
  261. method: 'POST',
  262. data: {
  263. cfgName: 'cooper_entrust_cfg'
  264. },
  265. success: res => {
  266. this.cooper_entrust = JSON.parse(res.data.data).cooper_entrust
  267. this.http.request({
  268. url: '/level-one-server/app/TbOrder/getNoConfirmOrder',
  269. data: {
  270. cooper_entrust: this.cooper_entrust
  271. },
  272. loading: 'false',
  273. success: res => {
  274. if (res.data.data) {
  275. this.order = res.data.data;
  276. this.show = true;
  277. }
  278. }
  279. });
  280. }
  281. })
  282. },
  283. confirm() {
  284. if (this.order.declareType == '1') {
  285. uni.navigateTo({
  286. url: '/pages/market/one/leader/handle?orderId=' + this.order.id + '&peopleConfirmStatus=' +
  287. this.order.peopleConfirmStatus + '&applyConfirmStatus=' + this.order.applyConfirmStatus
  288. });
  289. } else {
  290. uni.navigateTo({
  291. url: '/pages/market/one/leader/handleThree?orderId=' + this.order.id +
  292. '&peopleConfirmStatus=' + this.order.peopleConfirmStatus + '&cooperEntrustStatus=' +
  293. this.order.cooperEntrustStatus + '&applyConfirmStatus=' + this.order.applyConfirmStatus
  294. });
  295. }
  296. this.show = false;
  297. },
  298. getRead() {
  299. this.http.request({
  300. url: '/sp-admin/app/TbMessage/getRead',
  301. loading: 'false',
  302. success: res => {
  303. if (res.data.data.count > 0) {
  304. this.count = res.data.data.count;
  305. uni.setTabBarBadge({
  306. index: 1,
  307. text: res.data.data.count
  308. });
  309. } else {
  310. this.count = 0;
  311. }
  312. }
  313. });
  314. },
  315. getBannerList() {
  316. this.http.request({
  317. url: '/level-one-server/app/TbBanner/getList',
  318. success: res => {
  319. this.bannerList = res.data.data;
  320. }
  321. });
  322. },
  323. getMenu() {
  324. this.menuList = [];
  325. let menu = uni.getStorageSync('menu');
  326. this.http.request({
  327. url: '/sp-admin/app/AppMenu/getList',
  328. data: {
  329. pageNo: 1,
  330. pageSize: 50
  331. },
  332. success: res => {
  333. let data = res.data.data;
  334. menu.map((item2, index1) => {
  335. data.map((item1, index) => {
  336. if (parseInt(item1.id) == parseInt(item2)) {
  337. item1.icon = item1.icon
  338. this.menuList.push(item1);
  339. }
  340. });
  341. });
  342. this.menuList.sort((a, b) => a.sort - b.sort);
  343. }
  344. });
  345. },
  346. getNewsList() {
  347. this.http.request({
  348. url: '/level-one-server/app/TbPortNews/getNewestList',
  349. data: {
  350. limit: 3
  351. },
  352. success: res => {
  353. let list = res.data.data;
  354. this.newsList = res.data.data;
  355. this.noticeList = list?list.map(obj => obj.title):[];
  356. }
  357. });
  358. },
  359. //点击轮播图
  360. click(index) {
  361. let item = this.bannerList[index];
  362. let url = item.url;
  363. if (url) {
  364. // #ifdef APP-PLUS
  365. plus.runtime.openURL(url) //这里默认使用外部浏览器打开而不是内部web-view组件打开
  366. // #endif
  367. // #ifdef H5
  368. window.open(url)
  369. // #endif
  370. }
  371. },
  372. message() {
  373. uni.switchTab({
  374. url: '/pages/message/message'
  375. });
  376. },
  377. search() {
  378. uni.navigateTo({
  379. url: '/pages/news/list?keyword=' + this.keyword
  380. });
  381. },
  382. navTo(url) {
  383. //收购商需要认证才给访问
  384. if (this.getUser().userType == 3 && !this.hasAuth()) {
  385. uni.navigateTo({
  386. url: '/pages/authentication/index'
  387. });
  388. return;
  389. }
  390. uni.navigateTo({
  391. url: url,
  392. fail: res => {
  393. uni.showModal({
  394. content: '功能还在开发中',
  395. showCancel: false
  396. });
  397. }
  398. });
  399. },
  400. go(url) {
  401. uni.navigateTo({
  402. url: url
  403. });
  404. }
  405. },
  406. //下拉刷新
  407. onPullDownRefresh() {
  408. setTimeout(() => {
  409. uni.stopPullDownRefresh();
  410. this.getMenu();
  411. }, 1000);
  412. }
  413. };
  414. </script>
  415. <style lang="scss">
  416. page {
  417. background-color: $pg;
  418. }
  419. .top {
  420. width: 100%;
  421. position: relative;
  422. }
  423. .cmain {
  424. padding: 10px 15px 10px 15px;
  425. margin-top: -183px;
  426. position: relative;
  427. .vsearch {
  428. margin-bottom: 13px;
  429. position: relative;
  430. .vse {
  431. width: 82% !important;
  432. }
  433. .icon {
  434. position: absolute;
  435. right: 0px;
  436. top: 0px;
  437. color: white;
  438. font-size: 25px;
  439. top: 5px;
  440. }
  441. .bage {
  442. width: 8px;
  443. height: 8px;
  444. border-radius: 50%;
  445. background-color: #f44336;
  446. top: 0px;
  447. right: 0px;
  448. position: absolute;
  449. }
  450. }
  451. .uni-swiper {
  452. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  453. }
  454. .notice {
  455. margin-top: 10px;
  456. border-radius: 5px !important;
  457. overflow: hidden;
  458. }
  459. .news {
  460. margin-top: 15px;
  461. }
  462. }
  463. .reflush {
  464. width: 60rpx;
  465. height: 60rpx;
  466. float: right;
  467. position: absolute;
  468. right: 20rpx;
  469. padding: 20rpx;
  470. font-size: 24rpx;
  471. }
  472. .ppopup {
  473. padding: 50rpx 30rpx;
  474. .item {
  475. padding: 5px 0px 5px 0px;
  476. color: $font-c;
  477. .label {
  478. width: 70px;
  479. float: left;
  480. text-align: left;
  481. padding-right: 10px;
  482. font-weight: bold;
  483. }
  484. }
  485. }
  486. </style>