App.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. <script>
  2. // import { T_STORAGE_KEY } from './constant'
  3. export default {
  4. name: 'App',
  5. onLaunch(options) {
  6. // if (!uni.getStorageSync(T_STORAGE_KEY)) {
  7. // uni.navigateTo({
  8. // url: '/pages/login/login'
  9. // })
  10. // }
  11. if (this.isLogin()) {
  12. this.$store.dispatch('auth/refrshUserInfoAction')
  13. }
  14. uni.getSystemInfo({
  15. success: (res) => {
  16. if (res.safeArea.top > 20 && res.model.indexOf('iPhone') !== -1) {
  17. this.globalData.isIphone = true
  18. }
  19. }
  20. })
  21. this.$store.dispatch('app/getSystermTerminal')
  22. // #ifdef H5
  23. this.globalData.terminal = 2
  24. // #endif
  25. // #ifdef APP || APP-NVUE
  26. this.globalData.terminal = 3
  27. // #endif
  28. // #ifdef MP
  29. this.globalData.terminal = 1
  30. // #endif
  31. },
  32. onShow() {
  33. },
  34. globalData: {
  35. // 判断设备是否为 iPhone
  36. isIphone: false,
  37. // 画布设备 1 小程序,2 H5,3 App 4 电脑
  38. terminal: ''
  39. },
  40. data() {
  41. return {
  42. scene: ''
  43. }
  44. },
  45. mounted() {
  46. this.$store.dispatch('app/getUserSystermInfo')
  47. const launchOptions = uni.getLaunchOptionsSync()
  48. this.scene = launchOptions.scene
  49. },
  50. onHide() {
  51. },
  52. methods: {
  53. }
  54. }
  55. </script>
  56. <style lang="scss">
  57. @import './app.css';
  58. .tui-badge.tui-danger.tui-badge-scale {
  59. box-shadow: 0px 0 1upx #ed3f14;
  60. border: 4upx solid #fff;
  61. }
  62. .tui-toast-text {
  63. line-height: 1.5;
  64. }
  65. /* 隐藏头部 */
  66. uni-page-head {
  67. display: none;
  68. }
  69. uni-page-wrapper {
  70. height: 100%;
  71. }
  72. /* 轮播图指示点 */
  73. uni-swiper .uni-swiper-dots-horizontal {
  74. bottom: 20px !important;
  75. }
  76. /* uni-page-body {
  77. overflow: scroll;
  78. } */
  79. .uni-page-refresh--pulling,
  80. .uni-page-refresh--reached {
  81. z-index: 1019000;
  82. }
  83. // 自定义骨架屏
  84. .ske-loading {
  85. .child-loading {
  86. animation: loading 2s linear 0s infinite alternate;
  87. }
  88. }
  89. uni-rich-text img {
  90. max-width: 100% !important;
  91. }
  92. // 图片占位图
  93. .pic-img {
  94. width: 100%;
  95. height: 100%;
  96. }
  97. .default-img {
  98. background: url('./static/images/common/default.png') no-repeat center;
  99. background-size: 100% 100%;
  100. }
  101. .line1 {
  102. text-overflow: ellipsis;
  103. white-space: nowrap;
  104. overflow: hidden;
  105. }
  106. .wid {
  107. width: 100%;
  108. }
  109. .fs4 {
  110. font-size: 4upx;
  111. }
  112. .fs18 {
  113. font-size: 18upx;
  114. }
  115. .fs20 {
  116. font-size: 20upx;
  117. }
  118. .fs22 {
  119. font-size: 22upx;
  120. }
  121. .fs24 {
  122. font-size: 24upx;
  123. }
  124. .fs26 {
  125. font-size: 26upx;
  126. }
  127. .fs28 {
  128. font-size: 28upx;
  129. }
  130. .fs30 {
  131. font-size: 30upx;
  132. }
  133. .fs32 {
  134. font-size: 32upx;
  135. }
  136. .fs34 {
  137. font-size: 34upx;
  138. }
  139. .fs36 {
  140. font-size: 36upx;
  141. }
  142. .fs38 {
  143. font-size: 38upx;
  144. }
  145. .fs40 {
  146. font-size: 40upx;
  147. }
  148. .fs42 {
  149. font-size: 42upx;
  150. }
  151. .fs44 {
  152. font-size: 44upx;
  153. }
  154. .fs46 {
  155. font-size: 46upx;
  156. }
  157. .fs48 {
  158. font-size: 46upx;
  159. }
  160. .fs50 {
  161. font-size: 50upx;
  162. }
  163. .fs60 {
  164. font-size: 60upx;
  165. }
  166. .fs-bold {
  167. font-weight: bold;
  168. }
  169. .fs-weight-300 {
  170. font-weight: 300;
  171. }
  172. .fs-weight-200 {
  173. font-weight: 200;
  174. }
  175. .fs-weight-400 {
  176. font-weight: 400;
  177. }
  178. .flex-display {
  179. display: flex;
  180. }
  181. .flex-center {
  182. display: flex;
  183. justify-content: center;
  184. }
  185. .flex-items {
  186. display: flex;
  187. align-items: center;
  188. }
  189. .flex-items-plus {
  190. display: flex;
  191. justify-content: center;
  192. align-items: center;
  193. }
  194. .flex-start {
  195. display: flex;
  196. justify-content: flex-start;
  197. }
  198. .flex-end {
  199. display: flex;
  200. justify-content: flex-end;
  201. }
  202. .flex-end-plus {
  203. display: flex;
  204. justify-content: flex-end;
  205. align-items: center;
  206. }
  207. .flex-column {
  208. flex-direction: column
  209. }
  210. .flex-column-plus {
  211. display: flex;
  212. flex-direction: column
  213. }
  214. .flex-row {
  215. flex-direction: row
  216. }
  217. .flex-row-plus {
  218. display: flex;
  219. flex-direction: row
  220. }
  221. .flex-sp-around {
  222. justify-content: space-around;
  223. }
  224. .flex-sp-between {
  225. justify-content: space-between;
  226. }
  227. .text-align {
  228. text-align: center;
  229. }
  230. .flex-wrap-1 {
  231. display: flex;
  232. flex-wrap: wrap
  233. }
  234. .flex-nowrap-1 {
  235. display: flex;
  236. flex-wrap: nowrap
  237. }
  238. .align-end {
  239. display: flex;
  240. align-items: flex-end;
  241. }
  242. .align-sp-between {
  243. align-content: space-between;
  244. }
  245. .mar-top-5 {
  246. margin-top: 5upx;
  247. }
  248. .mar-top-10 {
  249. margin-top: 10upx;
  250. }
  251. .mar-top-20 {
  252. margin-top: 20upx;
  253. }
  254. .mar-top-30 {
  255. margin-top: 30upx;
  256. }
  257. .mar-top-32 {
  258. margin-top: 32upx;
  259. }
  260. .mar-top-36 {
  261. margin-top: 36upx;
  262. }
  263. .mar-top-40 {
  264. margin-top: 40upx;
  265. }
  266. .mar-top-50 {
  267. margin-top: 50upx;
  268. }
  269. .mar-top-60 {
  270. margin-top: 60upx;
  271. }
  272. .mar-top-70 {
  273. margin-top: 70upx;
  274. }
  275. .mar-top-100 {
  276. margin-top: 100upx;
  277. }
  278. .mar-top-percent40 {
  279. margin-top: 40%;
  280. }
  281. .mar-top-half {
  282. margin-top: 50%;
  283. }
  284. .mar-left-6 {
  285. margin-left: 6upx;
  286. }
  287. .mar-left-5 {
  288. margin-left: 5upx;
  289. }
  290. .mar-left-10 {
  291. margin-left: 10upx;
  292. }
  293. .mar-left-20 {
  294. margin-left: 20upx;
  295. }
  296. .mar-left-30 {
  297. margin-left: 30upx;
  298. }
  299. .mar-left-35 {
  300. margin-left: 35upx;
  301. }
  302. .mar-left-40 {
  303. margin-left: 40upx;
  304. }
  305. .mar-left-50 {
  306. margin-left: 50upx;
  307. }
  308. .mar-left-60 {
  309. margin-left: 60upx;
  310. }
  311. .mar-left-70 {
  312. margin-left: 70upx;
  313. }
  314. .mar-right-10 {
  315. margin-right: 10upx;
  316. }
  317. .mar-right-20 {
  318. margin-right: 20upx;
  319. }
  320. .mar-right-25 {
  321. margin-right: 25upx;
  322. }
  323. .mar-right-30 {
  324. margin-right: 30upx;
  325. }
  326. .mar-right-35 {
  327. margin-right: 35upx;
  328. }
  329. .mar-right-40 {
  330. margin-right: 40upx;
  331. }
  332. .mar-right-50 {
  333. margin-right: 50upx;
  334. }
  335. .pad-left-10 {
  336. padding-left: 10upx;
  337. }
  338. .pad-left-20 {
  339. padding-left: 20upx;
  340. }
  341. .pad-left-40 {
  342. padding-left: 40upx;
  343. }
  344. .pad-right-20 {
  345. padding-right: 20upx;
  346. }
  347. .pad-top-20 {
  348. padding-top: 20upx;
  349. }
  350. .pad-top-40 {
  351. padding-top: 40upx;
  352. }
  353. .pad-bot-20 {
  354. padding-bottom: 20upx;
  355. }
  356. .pad-topbot-20 {
  357. padding: 20upx 0upx;
  358. }
  359. .pad-topbot-5 {
  360. padding: 0upx 5upx;
  361. }
  362. .pad-topbot-10 {
  363. padding: 0upx 10upx;
  364. }
  365. .pad-topbot-50 {
  366. padding: 50upx 0upx;
  367. }
  368. .pad-bot-20 {
  369. padding-bottom: 20upx;
  370. }
  371. .pad-bot-30 {
  372. padding-bottom: 30upx;
  373. }
  374. .pad-bot-40 {
  375. padding-bottom: 40upx;
  376. }
  377. .pad-bot-100 {
  378. padding-bottom: 100upx;
  379. }
  380. .pad-bot-140 {
  381. padding-bottom: 140upx;
  382. }
  383. .bor-rad-30 {
  384. border-radius: 30upx;
  385. }
  386. .bor-rad-45 {
  387. border-radius: 45upx;
  388. }
  389. .bor-rad-half {
  390. border-radius: 50%;
  391. }
  392. .backColor {
  393. background-color: #009688;
  394. }
  395. .backColorFFF {
  396. background-color: #FFFFFF;
  397. }
  398. .pos-abs {
  399. position: absolute;
  400. }
  401. .bor-bot-line {
  402. border-bottom: #C8C7CC 1upx solid;
  403. }
  404. .bor-line-F7F7F7 {
  405. border-bottom: #F7F7F7 1upx solid;
  406. }
  407. .bor-line-E5E5E5 {
  408. border-bottom: #E5E5E5 1upx solid;
  409. }
  410. .borRig-line-E5E5E5 {
  411. border-right: #DDDDDD 2upx solid;
  412. }
  413. .borRig-line-20 {
  414. border-bottom: #F7F7F7 20upx solid;
  415. }
  416. .font-color-red {
  417. color: red;
  418. }
  419. .font-color-FFF {
  420. color: #FFFFFF;
  421. }
  422. .font-color-8A734A {
  423. color: #8A734A;
  424. }
  425. .font-color-71521B {
  426. color: #71521B;
  427. }
  428. .font-color-222 {
  429. color: #222222;
  430. }
  431. .font-color-333 {
  432. color: #333333;
  433. }
  434. .font-color-666 {
  435. color: #666666;
  436. }
  437. .font-color-999 {
  438. color: #999999;
  439. }
  440. .font-color-656 {
  441. color: #656565;
  442. }
  443. .font-color-DDD {
  444. color: #DDDDDD;
  445. }
  446. .font-color-CCC {
  447. color: #CCCCCC;
  448. }
  449. .font-color-FFEBC4 {
  450. color: #FFEBC4;
  451. }
  452. .font-color-1CC363 {
  453. color: #1CC363;
  454. }
  455. .font-color-47A7EE {
  456. color: #47A7EE;
  457. }
  458. .font-color-C5AA7B {
  459. color: #C5AA7B;
  460. }
  461. .font-color-FF7700 {
  462. color: #FF7700;
  463. }
  464. .font-color-FF7911 {
  465. color: #FF7911;
  466. }
  467. .font-color-80 {
  468. color: #808080;
  469. }
  470. .font-color-DD {
  471. color: #DD524D;
  472. }
  473. .font-color-C83732 {
  474. color: #C83732;
  475. }
  476. .font-color-3F {
  477. color: #3F536E;
  478. }
  479. .font-color-009 {
  480. color: #009688;
  481. }
  482. .font-weight-500 {
  483. font-weight: 500;
  484. }
  485. .font-weight-bold {
  486. font-weight: bold;
  487. }
  488. .overflow {
  489. overflow: hidden;
  490. text-overflow: ellipsis;
  491. white-space: nowrap;
  492. }
  493. .overflowNoDot {
  494. display: block;
  495. overflow: hidden;
  496. }
  497. .discountsPriceLine {
  498. text-decoration: line-through;
  499. }
  500. .border-bottom-Line {
  501. border-bottom: 1upx solid #EDEDED;
  502. }
  503. .decoration {
  504. text-decoration: line-through;
  505. }
  506. .anonymous {
  507. margin-top: 25upx;
  508. .uni-checkbox-input {
  509. border-color: #C5AA7B !important;
  510. width: 30upx;
  511. height: 30upx;
  512. }
  513. .uni-checkbox-input-checked:before {
  514. font-size: 30upx !important;
  515. }
  516. .uni-checkbox-input-checked {
  517. background: #C5AA7B;
  518. }
  519. }
  520. .footprint {
  521. .itemList {
  522. .uni-checkbox-input {
  523. border-color: #C5AA7B !important;
  524. width: 36upx;
  525. height: 36upx;
  526. border-radius: 50%;
  527. margin-right: 20upx;
  528. }
  529. .uni-checkbox-input-checked:before {
  530. font-size: 36upx !important;
  531. }
  532. .uni-checkbox-input-checked {
  533. background: #C5AA7B;
  534. }
  535. }
  536. }
  537. </style>