index.vue 12 KB

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