index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  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. let user = this.getUser();
  157. this.user = user;
  158. this.getBannerList();
  159. this.getNewsList();
  160. this.getMenu();
  161. uni.$on('getMenu', res => {
  162. this.getMenu();
  163. });
  164. },
  165. onShow() {
  166. this.getOrderConfirm();
  167. this.checkFace()
  168. this.keyword = '';
  169. this.getRead();
  170. this.getUpdateInfo();
  171. },
  172. methods: {
  173. getUpdateInfo() {
  174. let currentVersion = uni.getAppBaseInfo().appVersion;
  175. this.http.request({
  176. url: '/sp-admin/app/updateInfo',
  177. loading: 'false',
  178. success: resp => {
  179. let version = resp.data.data.version;
  180. this.update = {
  181. visible: currentVersion != version,
  182. currentVersion: currentVersion,
  183. content: resp.data.data.content,
  184. version: version,
  185. url: resp.data.data.url
  186. };
  187. console.log(this.update)
  188. }
  189. })
  190. },
  191. updateApk() {
  192. plus.runtime.openURL(this.update.url)
  193. return;
  194. var dtask = plus.downloader.createDownload(
  195. this.update.url, {
  196. force: true
  197. }, (d, status) => {
  198. if (status == 200) {
  199. console.log("下载成功安装: " + d.filename);
  200. plus.runtime.install(d.filename)
  201. } else {
  202. plus.nativeUI.alert("安装失败,请稍候重试: " + status)
  203. }
  204. });
  205. dtask.start();
  206. },
  207. close() {
  208. this.show = false;
  209. },
  210. checkFace() {
  211. let user = this.getUser();
  212. this.faceRegister = false;
  213. if ((user.userType == 1 || user.userType == 2) && user.face == 0) {
  214. this.faceRegister = true;
  215. return;
  216. } else if (user.userType == 3) {
  217. this.getTbPurchaserAuth()
  218. }
  219. },
  220. go(url) {
  221. uni.navigateTo({
  222. url: url
  223. });
  224. },
  225. getTbPurchaserAuth() {
  226. this.http.request({
  227. url: '/level-two-server/app/TbPurchaser/info',
  228. loading: 'false',
  229. success: res => {
  230. let resp = res.data;
  231. if (!resp.data || resp.data.judgeStatus == 2) {
  232. this.purchaser = true;
  233. return;
  234. }
  235. console.log(resp);
  236. }
  237. })
  238. },
  239. //获取待处理的订单弹出
  240. getOrderConfirm() {
  241. let user = this.getUser();
  242. if (user.userType > 2) {
  243. return;
  244. }
  245. // 是否校验互助委托书【1校验 2不校验】
  246. this.http.request({
  247. url: '/sp-admin/SpCfg/cooper',
  248. method: 'POST',
  249. data: {
  250. cfgName: 'cooper_entrust_cfg'
  251. },
  252. success: res => {
  253. this.cooper_entrust = JSON.parse(res.data.data).cooper_entrust
  254. this.http.request({
  255. url: '/level-one-server/app/TbOrder/getNoConfirmOrder',
  256. data: {
  257. cooper_entrust: this.cooper_entrust
  258. },
  259. loading: 'false',
  260. success: res => {
  261. if (res.data.data) {
  262. this.order = res.data.data;
  263. this.show = true;
  264. }
  265. }
  266. });
  267. }
  268. })
  269. },
  270. confirm() {
  271. if (this.order.declareType == '1') {
  272. uni.navigateTo({
  273. url: '/pages/market/one/leader/handle?orderId=' + this.order.id + '&peopleConfirmStatus=' +
  274. this.order.peopleConfirmStatus + '&applyConfirmStatus=' + this.order.applyConfirmStatus
  275. });
  276. } else {
  277. uni.navigateTo({
  278. url: '/pages/market/one/leader/handleThree?orderId=' + this.order.id +
  279. '&peopleConfirmStatus=' + this.order.peopleConfirmStatus + '&cooperEntrustStatus=' +
  280. this.order.cooperEntrustStatus + '&applyConfirmStatus=' + this.order.applyConfirmStatus
  281. });
  282. }
  283. this.show = false;
  284. },
  285. getRead() {
  286. this.http.request({
  287. url: '/sp-admin/app/TbMessage/getRead',
  288. loading: 'false',
  289. success: res => {
  290. if (res.data.data.count > 0) {
  291. this.count = res.data.data.count;
  292. uni.setTabBarBadge({
  293. index: 1,
  294. text: res.data.data.count
  295. });
  296. } else {
  297. this.count = 0;
  298. }
  299. }
  300. });
  301. },
  302. getBannerList() {
  303. this.http.request({
  304. url: '/level-one-server/app/TbBanner/getList',
  305. success: res => {
  306. this.bannerList = res.data.data;
  307. }
  308. });
  309. },
  310. getMenu() {
  311. this.menuList = [];
  312. let menu = uni.getStorageSync('menu');
  313. this.http.request({
  314. url: '/sp-admin/app/AppMenu/getList',
  315. data: {
  316. pageNo: 1,
  317. pageSize: 50
  318. },
  319. success: res => {
  320. let data = res.data.data;
  321. menu.map((item2, index1) => {
  322. data.map((item1, index) => {
  323. if (parseInt(item1.id) == parseInt(item2)) {
  324. item1.icon = item1.icon
  325. this.menuList.push(item1);
  326. }
  327. });
  328. });
  329. this.menuList.sort((a, b) => a.sort - b.sort);
  330. }
  331. });
  332. },
  333. getNewsList() {
  334. this.http.request({
  335. url: '/level-one-server/app/TbPortNews/getNewestList',
  336. data: {
  337. limit: 3
  338. },
  339. success: res => {
  340. let list = res.data.data;
  341. this.newsList = res.data.data;
  342. this.noticeList = list.map(obj => obj.title);
  343. }
  344. });
  345. },
  346. //点击轮播图
  347. click(index) {
  348. let item = this.bannerList[index];
  349. let url = item.url;
  350. if (url) {
  351. // #ifdef APP-PLUS
  352. plus.runtime.openURL(url) //这里默认使用外部浏览器打开而不是内部web-view组件打开
  353. // #endif
  354. // #ifdef H5
  355. window.open(url)
  356. // #endif
  357. }
  358. },
  359. message() {
  360. uni.switchTab({
  361. url: '/pages/message/message'
  362. });
  363. },
  364. search() {
  365. uni.navigateTo({
  366. url: '/pages/news/list?keyword=' + this.keyword
  367. });
  368. },
  369. navTo(url) {
  370. //收购商需要认证才给访问
  371. if (this.getUser().userType == 3 && !this.hasAuth()) {
  372. uni.navigateTo({
  373. url: '/pages/authentication/index'
  374. });
  375. return;
  376. }
  377. uni.navigateTo({
  378. url: url,
  379. fail: res => {
  380. uni.showModal({
  381. content: '功能还在开发中',
  382. showCancel: false
  383. });
  384. }
  385. });
  386. },
  387. go(url) {
  388. uni.navigateTo({
  389. url: url
  390. });
  391. }
  392. },
  393. //下拉刷新
  394. onPullDownRefresh() {
  395. setTimeout(() => {
  396. uni.stopPullDownRefresh();
  397. this.getMenu();
  398. }, 1000);
  399. }
  400. };
  401. </script>
  402. <style lang="scss">
  403. page {
  404. background-color: $pg;
  405. }
  406. .top {
  407. width: 100%;
  408. position: relative;
  409. }
  410. .cmain {
  411. padding: 10px 15px 10px 15px;
  412. margin-top: -183px;
  413. position: relative;
  414. .vsearch {
  415. margin-bottom: 13px;
  416. position: relative;
  417. .vse {
  418. width: 82% !important;
  419. }
  420. .icon {
  421. position: absolute;
  422. right: 0px;
  423. top: 0px;
  424. color: white;
  425. font-size: 25px;
  426. top: 5px;
  427. }
  428. .bage {
  429. width: 8px;
  430. height: 8px;
  431. border-radius: 50%;
  432. background-color: #f44336;
  433. top: 0px;
  434. right: 0px;
  435. position: absolute;
  436. }
  437. }
  438. .uni-swiper {
  439. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  440. }
  441. .notice {
  442. margin-top: 10px;
  443. border-radius: 5px !important;
  444. overflow: hidden;
  445. }
  446. .news {
  447. margin-top: 15px;
  448. }
  449. }
  450. .reflush {
  451. width: 60rpx;
  452. height: 60rpx;
  453. float: right;
  454. position: absolute;
  455. right: 20rpx;
  456. padding: 20rpx;
  457. font-size: 24rpx;
  458. }
  459. .ppopup {
  460. padding: 50rpx 30rpx;
  461. .item {
  462. padding: 5px 0px 5px 0px;
  463. color: $font-c;
  464. .label {
  465. width: 70px;
  466. float: left;
  467. text-align: left;
  468. padding-right: 10px;
  469. font-weight: bold;
  470. }
  471. }
  472. }
  473. </style>