App.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  1. <script>
  2. // app.js
  3. import { getUserId } from './utils'
  4. import { BASE_WS_API } from './config'
  5. import { T_SELECTED_ADDRESS } from './constant'
  6. export default {
  7. name: 'App',
  8. onLaunch(options) {
  9. // this.connectSocket()
  10. if (this.isLogin()) {
  11. this.$store.dispatch('auth/refrshUserInfoAction')
  12. }
  13. uni.getSystemInfo({
  14. success: (res) => {
  15. if (res.safeArea.top > 20 && res.model.indexOf('iPhone') !== -1) {
  16. this.globalData.isIphone = true
  17. }
  18. }
  19. })
  20. this.$store.dispatch('app/getSystermTerminal')
  21. // #ifdef H5
  22. this.globalData.terminal = 2
  23. // #endif
  24. // #ifdef APP || APP-NVUE
  25. this.globalData.terminal = 3
  26. // #endif
  27. // #ifdef MP
  28. this.globalData.terminal = 1
  29. // #endif
  30. },
  31. onShow() {
  32. // 判断浏览器环境
  33. // if (ua.search(/MicroMessenger/i) > -1 && !uni.getStorageSync("appType")) {
  34. // }
  35. // const state = util.getUrlKey('state')
  36. // const code = util.getUrlKey('code')
  37. // if ((state == 'needCode' || state == 'unNeedCode') && code) {
  38. // let path = window.location.href
  39. // if (path.indexOf('code=') > 0 && path.indexOf('&state=unNeedCode') > -1) {
  40. // http.mpLogin(null, code)
  41. // path = path.substring(0, path.indexOf('code=') - 1)
  42. // history.replaceState({}, '', path)
  43. // }
  44. // }
  45. // getUserId();
  46. },
  47. globalData: {
  48. // 定义全局请求队列
  49. requestQueue: [],
  50. // 是否正在进行登陆
  51. isLanding: false,
  52. // 购物车商品数量
  53. totalCartCount: 0,
  54. // 是否一直显示 弹窗
  55. isShowCommunityPopup: true,
  56. // 是否已经打开过绑定手机号弹窗
  57. isShowedBindMobilePopu: false,
  58. // 用户是否授权获取当前位置
  59. isHasLocationPermission: true,
  60. // 是否显示关注公众号
  61. isShowFollowOfficialAccount: false,
  62. // 压屏窗弹出次数
  63. communityPopupCount: 0,
  64. // 判断设备是否为 iPhone
  65. isIphone: false,
  66. // 画布设备 1 小程序,2 H5,3 App 4 电脑
  67. terminal: ''
  68. },
  69. data() {
  70. return {
  71. scene: ''
  72. }
  73. },
  74. mounted() {
  75. this.setUserLocation()
  76. this.$store.dispatch('app/getUserSystermInfo')
  77. const launchOptions = uni.getLaunchOptionsSync()
  78. this.scene = launchOptions.scene
  79. },
  80. methods: {
  81. connectSocket() {
  82. if (this.isLogin()) {
  83. this.$store.dispatch('customerService/joinCustomerServiceChat', {
  84. ref: this,
  85. wsHandle: uni.connectSocket({
  86. url: `${BASE_WS_API}/${getUserId()}`,
  87. complete: () => { }
  88. })
  89. })
  90. }
  91. },
  92. onOpen() {
  93. // console.log('onOpen连接成功');
  94. },
  95. onMessage(evt) {
  96. // console.log('onMessage收到消息', evt);
  97. // const data = JSON.parse(evt.data)
  98. // console.log(data)
  99. // if (data.status == 10400) {
  100. // uni.showToast({
  101. // title: '网络不给力,请检查网络连接',
  102. // icon: 'none'
  103. // }) // 弹出提示框
  104. // } else if (data.status == 13140) {
  105. // this.$store.dispatch('customerService/getChatList')
  106. // }
  107. },
  108. onError(errMsg) {
  109. // console.log('onError出错了');
  110. // uni.showLoading({
  111. // title: '断线了,正在重新连接......',
  112. // mask: true
  113. // })
  114. // uni.showToast({
  115. // title: 'Error出错了' + errMsg,
  116. // icon: 'none',
  117. // duration: 2000
  118. // })
  119. },
  120. onClose() {
  121. // console.log('onClose关闭了');
  122. this.timer && clearTimeout(this.timer)
  123. if (this.isLogin()) {
  124. this.timer = setTimeout(() => {
  125. this.$store.dispatch('customerService/joinCustomerServiceChat', {
  126. ref: '',
  127. wsHandle: uni.connectSocket({
  128. url: `${BASE_WS_API}/${getUserId()}`,
  129. complete: () => { }
  130. })
  131. })
  132. }, 2000)
  133. }
  134. },
  135. // 设置用户定位
  136. async setUserLocation() {
  137. // // #ifdef APP
  138. // this.useStorageLocation();
  139. // // #endif
  140. try {
  141. // #ifdef H5
  142. this.globalData.isHasLocationPermission = true
  143. // #endif
  144. await this.$store.dispatch('location/getCurrentLocation')
  145. } catch (error) {
  146. this.globalData.isHasLocationPermission = false
  147. const lastAddress = uni.getStorageSync(T_SELECTED_ADDRESS)
  148. if (lastAddress) {
  149. this.$store.dispatch('location/getDetailAddress', lastAddress.data)
  150. } else {
  151. // 后端兜底1
  152. }
  153. }
  154. setTimeout(() => {
  155. if (!this.$store.getters.currentCity) {
  156. this.useStorageLocation()
  157. }
  158. }, 2000)
  159. },
  160. // 使用本地数据
  161. useStorageLocation() {
  162. const lastAddress = uni.getStorageSync(T_SELECTED_ADDRESS)
  163. if (lastAddress) {
  164. this.$store.dispatch('location/getDetailAddress', lastAddress.data)
  165. }
  166. }
  167. }
  168. }
  169. </script>
  170. <style lang="scss">
  171. @import './app.css';
  172. /*每个页面公共css */
  173. @import "uview-ui/index.scss";
  174. .tui-badge.tui-danger.tui-badge-scale {
  175. box-shadow: 0px 0 1upx #ed3f14;
  176. border: 4upx solid #fff;
  177. }
  178. .tui-toast-text {
  179. line-height: 1.5;
  180. }
  181. /* 隐藏头部 */
  182. uni-page-head {
  183. display: none;
  184. }
  185. uni-page-wrapper {
  186. height: 100%;
  187. }
  188. /* 轮播图指示点 */
  189. uni-swiper .uni-swiper-dots-horizontal {
  190. bottom: 20px !important;
  191. }
  192. /* uni-page-body {
  193. overflow: scroll;
  194. } */
  195. .uni-page-refresh--pulling,
  196. .uni-page-refresh--reached {
  197. z-index: 1019000;
  198. }
  199. // 自定义骨架屏
  200. .ske-loading {
  201. .child-loading {
  202. animation: loading 2s linear 0s infinite alternate;
  203. }
  204. }
  205. uni-rich-text img {
  206. max-width: 100% !important;
  207. }
  208. // 图片占位图
  209. .pic-img {
  210. width: 100%;
  211. height: 100%;
  212. }
  213. .default-img {
  214. background: url('./static/images/common/default.png') no-repeat center;
  215. background-size: 100% 100%;
  216. }
  217. .line1 {
  218. text-overflow: ellipsis;
  219. white-space: nowrap;
  220. overflow: hidden;
  221. }
  222. .wid {
  223. width: 100%;
  224. }
  225. .fs4 {
  226. font-size: 4upx;
  227. }
  228. .fs18 {
  229. font-size: 18upx;
  230. }
  231. .fs20 {
  232. font-size: 20upx;
  233. }
  234. .fs22 {
  235. font-size: 22upx;
  236. }
  237. .fs24 {
  238. font-size: 24upx;
  239. }
  240. .fs26 {
  241. font-size: 26upx;
  242. }
  243. .fs28 {
  244. font-size: 28upx;
  245. }
  246. .fs30 {
  247. font-size: 30upx;
  248. }
  249. .fs32 {
  250. font-size: 32upx;
  251. }
  252. .fs34 {
  253. font-size: 34upx;
  254. }
  255. .fs36 {
  256. font-size: 36upx;
  257. }
  258. .fs38 {
  259. font-size: 38upx;
  260. }
  261. .fs40 {
  262. font-size: 40upx;
  263. }
  264. .fs42 {
  265. font-size: 42upx;
  266. }
  267. .fs44 {
  268. font-size: 44upx;
  269. }
  270. .fs46 {
  271. font-size: 46upx;
  272. }
  273. .fs48 {
  274. font-size: 46upx;
  275. }
  276. .fs50 {
  277. font-size: 50upx;
  278. }
  279. .fs60 {
  280. font-size: 60upx;
  281. }
  282. .fs-bold {
  283. font-weight: bold;
  284. }
  285. .fs-weight-300 {
  286. font-weight: 300;
  287. }
  288. .fs-weight-200 {
  289. font-weight: 200;
  290. }
  291. .fs-weight-400 {
  292. font-weight: 400;
  293. }
  294. .flex-display {
  295. display: flex;
  296. }
  297. .flex-center {
  298. display: flex;
  299. justify-content: center;
  300. }
  301. .flex-items {
  302. display: flex;
  303. align-items: center;
  304. }
  305. .flex-items-plus {
  306. display: flex;
  307. justify-content: center;
  308. align-items: center;
  309. }
  310. .flex-start {
  311. display: flex;
  312. justify-content: flex-start;
  313. }
  314. .flex-end {
  315. display: flex;
  316. justify-content: flex-end;
  317. }
  318. .flex-end-plus {
  319. display: flex;
  320. justify-content: flex-end;
  321. align-items: center;
  322. }
  323. .flex-column {
  324. flex-direction: column
  325. }
  326. .flex-column-plus {
  327. display: flex;
  328. flex-direction: column
  329. }
  330. .flex-row {
  331. flex-direction: row
  332. }
  333. .flex-row-plus {
  334. display: flex;
  335. flex-direction: row
  336. }
  337. .flex-sp-around {
  338. justify-content: space-around;
  339. }
  340. .flex-sp-between {
  341. justify-content: space-between;
  342. }
  343. .text-align {
  344. text-align: center;
  345. }
  346. .flex-wrap-1 {
  347. display: flex;
  348. flex-wrap: wrap
  349. }
  350. .flex-nowrap-1 {
  351. display: flex;
  352. flex-wrap: nowrap
  353. }
  354. .align-end {
  355. display: flex;
  356. align-items: flex-end;
  357. }
  358. .align-sp-between {
  359. align-content: space-between;
  360. }
  361. .mar-top-5 {
  362. margin-top: 5upx;
  363. }
  364. .mar-top-10 {
  365. margin-top: 10upx;
  366. }
  367. .mar-top-20 {
  368. margin-top: 20upx;
  369. }
  370. .mar-top-30 {
  371. margin-top: 30upx;
  372. }
  373. .mar-top-32 {
  374. margin-top: 32upx;
  375. }
  376. .mar-top-36 {
  377. margin-top: 36upx;
  378. }
  379. .mar-top-40 {
  380. margin-top: 40upx;
  381. }
  382. .mar-top-50 {
  383. margin-top: 50upx;
  384. }
  385. .mar-top-60 {
  386. margin-top: 60upx;
  387. }
  388. .mar-top-70 {
  389. margin-top: 70upx;
  390. }
  391. .mar-top-100 {
  392. margin-top: 100upx;
  393. }
  394. .mar-top-percent40 {
  395. margin-top: 40%;
  396. }
  397. .mar-top-half {
  398. margin-top: 50%;
  399. }
  400. .mar-left-6 {
  401. margin-left: 6upx;
  402. }
  403. .mar-left-5 {
  404. margin-left: 5upx;
  405. }
  406. .mar-left-10 {
  407. margin-left: 10upx;
  408. }
  409. .mar-left-20 {
  410. margin-left: 20upx;
  411. }
  412. .mar-left-30 {
  413. margin-left: 30upx;
  414. }
  415. .mar-left-35 {
  416. margin-left: 35upx;
  417. }
  418. .mar-left-40 {
  419. margin-left: 40upx;
  420. }
  421. .mar-left-50 {
  422. margin-left: 50upx;
  423. }
  424. .mar-left-60 {
  425. margin-left: 60upx;
  426. }
  427. .mar-left-70 {
  428. margin-left: 70upx;
  429. }
  430. .mar-right-10 {
  431. margin-right: 10upx;
  432. }
  433. .mar-right-20 {
  434. margin-right: 20upx;
  435. }
  436. .mar-right-25 {
  437. margin-right: 25upx;
  438. }
  439. .mar-right-30 {
  440. margin-right: 30upx;
  441. }
  442. .mar-right-35 {
  443. margin-right: 35upx;
  444. }
  445. .mar-right-40 {
  446. margin-right: 40upx;
  447. }
  448. .mar-right-50 {
  449. margin-right: 50upx;
  450. }
  451. .pad-left-10 {
  452. padding-left: 10upx;
  453. }
  454. .pad-left-20 {
  455. padding-left: 20upx;
  456. }
  457. .pad-left-40 {
  458. padding-left: 40upx;
  459. }
  460. .pad-right-20 {
  461. padding-right: 20upx;
  462. }
  463. .pad-top-20 {
  464. padding-top: 20upx;
  465. }
  466. .pad-top-40 {
  467. padding-top: 40upx;
  468. }
  469. .pad-bot-20 {
  470. padding-bottom: 20upx;
  471. }
  472. .pad-topbot-20 {
  473. padding: 20upx 0upx;
  474. }
  475. .pad-topbot-5 {
  476. padding: 0upx 5upx;
  477. }
  478. .pad-topbot-10 {
  479. padding: 0upx 10upx;
  480. }
  481. .pad-topbot-50 {
  482. padding: 50upx 0upx;
  483. }
  484. .pad-bot-20 {
  485. padding-bottom: 20upx;
  486. }
  487. .pad-bot-30 {
  488. padding-bottom: 30upx;
  489. }
  490. .pad-bot-40 {
  491. padding-bottom: 40upx;
  492. }
  493. .pad-bot-100 {
  494. padding-bottom: 100upx;
  495. }
  496. .pad-bot-140 {
  497. padding-bottom: 140upx;
  498. }
  499. .bor-rad-30 {
  500. border-radius: 30upx;
  501. }
  502. .bor-rad-45 {
  503. border-radius: 45upx;
  504. }
  505. .bor-rad-half {
  506. border-radius: 50%;
  507. }
  508. .backColor {
  509. background-color: #009688;
  510. }
  511. .backColorFFF {
  512. background-color: #FFFFFF;
  513. }
  514. .pos-abs {
  515. position: absolute;
  516. }
  517. .bor-bot-line {
  518. border-bottom: #C8C7CC 1upx solid;
  519. }
  520. .bor-line-F7F7F7 {
  521. border-bottom: #F7F7F7 1upx solid;
  522. }
  523. .bor-line-E5E5E5 {
  524. border-bottom: #E5E5E5 1upx solid;
  525. }
  526. .borRig-line-E5E5E5 {
  527. border-right: #DDDDDD 2upx solid;
  528. }
  529. .borRig-line-20 {
  530. border-bottom: #F7F7F7 20upx solid;
  531. }
  532. .font-color-red {
  533. color: red;
  534. }
  535. .font-color-FFF {
  536. color: #FFFFFF;
  537. }
  538. .font-color-8A734A {
  539. color: #8A734A;
  540. }
  541. .font-color-71521B {
  542. color: #71521B;
  543. }
  544. .font-color-222 {
  545. color: #222222;
  546. }
  547. .font-color-333 {
  548. color: #333333;
  549. }
  550. .font-color-666 {
  551. color: #666666;
  552. }
  553. .font-color-999 {
  554. color: #999999;
  555. }
  556. .font-color-656 {
  557. color: #656565;
  558. }
  559. .font-color-DDD {
  560. color: #DDDDDD;
  561. }
  562. .font-color-CCC {
  563. color: #CCCCCC;
  564. }
  565. .font-color-FFEBC4 {
  566. color: #FFEBC4;
  567. }
  568. .font-color-1CC363 {
  569. color: #1CC363;
  570. }
  571. .font-color-47A7EE {
  572. color: #47A7EE;
  573. }
  574. .font-color-C5AA7B {
  575. color: #C5AA7B;
  576. }
  577. .font-color-FF7700 {
  578. color: #FF7700;
  579. }
  580. .font-color-FF7911 {
  581. color: #FF7911;
  582. }
  583. .font-color-80 {
  584. color: #808080;
  585. }
  586. .font-color-DD {
  587. color: #DD524D;
  588. }
  589. .font-color-C83732 {
  590. color: #C83732;
  591. }
  592. .font-color-3F {
  593. color: #3F536E;
  594. }
  595. .font-color-009 {
  596. color: #009688;
  597. }
  598. .font-weight-500 {
  599. font-weight: 500;
  600. }
  601. .font-weight-bold {
  602. font-weight: bold;
  603. }
  604. .overflow {
  605. overflow: hidden;
  606. text-overflow: ellipsis;
  607. white-space: nowrap;
  608. }
  609. .overflowNoDot {
  610. display: block;
  611. overflow: hidden;
  612. }
  613. .discountsPriceLine {
  614. text-decoration: line-through;
  615. }
  616. .border-bottom-Line {
  617. border-bottom: 1upx solid #EDEDED;
  618. }
  619. .decoration {
  620. text-decoration: line-through;
  621. }
  622. .anonymous {
  623. margin-top: 25upx;
  624. .uni-checkbox-input {
  625. border-color: #C5AA7B !important;
  626. width: 30upx;
  627. height: 30upx;
  628. }
  629. .uni-checkbox-input-checked:before {
  630. font-size: 30upx !important;
  631. }
  632. .uni-checkbox-input-checked {
  633. background: #C5AA7B;
  634. }
  635. }
  636. .footprint {
  637. .itemList {
  638. .uni-checkbox-input {
  639. border-color: #C5AA7B !important;
  640. width: 36upx;
  641. height: 36upx;
  642. border-radius: 50%;
  643. margin-right: 20upx;
  644. }
  645. .uni-checkbox-input-checked:before {
  646. font-size: 36upx !important;
  647. }
  648. .uni-checkbox-input-checked {
  649. background: #C5AA7B;
  650. }
  651. }
  652. }
  653. </style>