App.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. <script>
  2. import Vue from 'vue';
  3. export default {
  4. onLaunch: function(options) {
  5. let that = this;
  6. console.log('App Launch');
  7. console.log(options);
  8. // 小程序更新
  9. const updateManager = uni.getUpdateManager();
  10. // 请求完新版本信息
  11. updateManager.onCheckForUpdate(function (res) {
  12. // console.log(res.hasUpdate);
  13. });
  14. // 新的版本已经下载好
  15. updateManager.onUpdateReady(function (res) {
  16. uni.showModal({
  17. title: '更新提示',
  18. content: '新版本已经准备好,是否重启应用?',
  19. success(res) {
  20. if (res.confirm) {
  21. // 调用 applyUpdate 应用新版本并重启
  22. updateManager.applyUpdate();
  23. }
  24. }
  25. });
  26. });
  27. // 新的版本下载失败
  28. updateManager.onUpdateFailed(function (res) {
  29. that.$toast('更新失败!');
  30. });
  31. uni.getSystemInfo({
  32. success: function(e) {
  33. console.log(e);
  34. Vue.prototype.StatusBar = e.statusBarHeight;
  35. let custom = wx.getMenuButtonBoundingClientRect();
  36. Vue.prototype.Custom = custom;
  37. Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight + 4;
  38. //用来判断是否iphoneX类型的全面屏设备
  39. if (e.model.indexOf('iPhone X') == 0) {
  40. Vue.prototype.isIphoneX = 68;
  41. } else {
  42. Vue.prototype.isIphoneX = 0;
  43. }
  44. if(e.environment == 'wxwork') {
  45. uni.setStorageSync('is_qywx', true);
  46. }else {
  47. uni.setStorageSync('is_qywx', false);
  48. }
  49. }
  50. })
  51. // 企业微信端
  52. if(uni.getStorageSync('is_qywx') == true) {
  53. wx.qy.login({
  54. success: function(loginRes) {
  55. if (loginRes.code) {
  56. //发起网络请求
  57. that.$axios({
  58. url: '/user/auth',
  59. params: {
  60. code: loginRes.code,
  61. work: true
  62. }
  63. }).then(authRes => {
  64. // console.log(authRes);
  65. that.$store.commit('changeUserInfo', authRes.data);
  66. that.$store.commit('changeUserId', authRes.data.userId);
  67. uni.setStorageSync('userInfo', authRes.data);
  68. uni.setStorageSync('userId', authRes.data.userId);
  69. uni.setStorageSync('token', authRes.data.token);
  70. that.$isResolve();
  71. })
  72. } else {
  73. console.log('登录失败!' + loginRes.errMsg)
  74. }
  75. }
  76. });
  77. }
  78. // 微信端
  79. else {
  80. uni.login({
  81. provider: 'weixin',
  82. success: (loginRes) => {
  83. console.log(loginRes);
  84. console.log('是否从企业微信端进入:'+uni.getStorageSync('is_qywx'));
  85. that.$axios({
  86. url: '/user/auth',
  87. params: {
  88. code: loginRes.code,
  89. work: uni.getStorageSync('is_qywx')
  90. }
  91. }).then(res => {
  92. try {
  93. console.log(res);
  94. that.$store.commit('changeUserInfo', res.data);
  95. that.$store.commit('changeUserId', res.data.userId);
  96. uni.setStorageSync('userInfo', res.data);
  97. uni.setStorageSync('userId', res.data.userId);
  98. uni.setStorageSync('token', res.data.token);
  99. that.$isResolve();
  100. } catch (e) {
  101. console.error(e)
  102. }
  103. })
  104. }
  105. });
  106. }
  107. },
  108. onShow: function() {
  109. console.log('App Show')
  110. },
  111. onHide: function() {
  112. console.log('App Hide')
  113. }
  114. }
  115. </script>
  116. <style>
  117. @import "./static/style/utils";
  118. </style>
  119. <style lang="scss">
  120. @import "@/uni_modules/uview-ui/index.scss";
  121. /*每个页面公共css */
  122. .clearfix:after{content:"";display:block;height:0;clear:both;visibility:hidden;}
  123. .ellipsis {overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
  124. .ellipsis-2 {display: -webkit-box; overflow: hidden; white-space: normal !important; text-overflow: ellipsis; word-wrap: break-word; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
  125. .ellipsis-3 {display: -webkit-box; overflow: hidden; white-space: normal !important; text-overflow: ellipsis; word-wrap: break-word; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
  126. .app-container {
  127. min-height: 100vh;
  128. font-size: 28rpx;
  129. color: #333333;
  130. font-family: 'Microsoft YaHei';
  131. }
  132. .bt-container {
  133. height: 100rpx;
  134. .container {
  135. position: fixed;
  136. bottom: 0;
  137. left: 0;
  138. z-index: 99;
  139. width: 100%;
  140. padding: 10rpx 30rpx;
  141. background: #FFFFFF;
  142. button {
  143. width: 690rpx;
  144. height: 80rpx;
  145. margin: 0;
  146. background: #6DA7FF;
  147. border-radius: 80rpx;
  148. color: #FFFFFF;
  149. line-height: 80rpx;
  150. font-size: 30rpx;
  151. }
  152. }
  153. }
  154. .global-mask {
  155. position: fixed;
  156. top: 0;
  157. left: 0;
  158. z-index: 998;
  159. width: 100%;
  160. height: 100%;
  161. background: rgba($color: #000000, $alpha: 0.3);
  162. }
  163. .global-dialog {
  164. position: fixed;
  165. top: calc(50vh - 150rpx);
  166. left: 60rpx;
  167. z-index: 999;
  168. width: 630rpx;
  169. background: #FFFFFF;
  170. border-radius: 15rpx;
  171. overflow: hidden;
  172. .title {
  173. font-size: 36rpx;
  174. font-weight: 500;
  175. text-align: center;
  176. line-height: 100rpx;
  177. padding-bottom: 10rpx;
  178. }
  179. .content {
  180. .text {
  181. font-size: 32rpx;
  182. text-align: center;
  183. padding-bottom: 40rpx;
  184. }
  185. .form {
  186. padding: 0 40rpx;
  187. .item {
  188. display: flex;
  189. align-items: center;
  190. justify-content: space-between;
  191. margin-bottom: 40rpx;
  192. input {
  193. width: 340rpx;
  194. height: 60rpx;
  195. border: 1px solid #eaeaea;
  196. border-radius: 10rpx;
  197. padding: 0 20rpx;
  198. }
  199. }
  200. }
  201. }
  202. .btn {
  203. border-top: 1px solid #eaeaea;
  204. display: flex;
  205. &> view {
  206. flex: 1;
  207. text-align: center;
  208. line-height: 100rpx;
  209. font-size: 32rpx;
  210. &.left {
  211. color: #666666;
  212. }
  213. &.right {
  214. color: #FFFFFF;
  215. background: #FF3F42;
  216. }
  217. }
  218. }
  219. }
  220. .goods-waterfall-list {
  221. padding: 20rpx 20rpx 0;
  222. box-sizing: border-box;
  223. display: flex;
  224. justify-content: space-between;
  225. .left, .right {
  226. display: flex;
  227. flex-direction: column;
  228. }
  229. .item {
  230. width: 348rpx;
  231. background: #FFFFFF;
  232. box-sizing: border-box;
  233. margin-bottom: 20rpx;
  234. border-radius: 20rpx;
  235. overflow: hidden;
  236. .image {
  237. width: 348rpx;
  238. height: 348rpx;
  239. flex-shrink: 0;
  240. position: relative;
  241. .img {
  242. width: 348rpx;
  243. height: 348rpx;
  244. display: block;
  245. }
  246. .water {
  247. width: 348rpx;
  248. height: 348rpx;
  249. display: block;
  250. position: absolute;
  251. left: 0;
  252. top: 0;
  253. z-index: 1;
  254. }
  255. }
  256. .content {
  257. padding: 15rpx 20rpx;
  258. .title {
  259. font-size: 30rpx;
  260. color: #333333;
  261. line-height: 36rpx;
  262. font-weight: 600;
  263. max-height: 72rpx;
  264. }
  265. .tags {
  266. display: flex;
  267. flex-wrap: wrap;
  268. .it {
  269. height: 28rpx;
  270. padding: 0 10rpx;
  271. line-height: 28rpx;
  272. border-radius: 10rpx;
  273. background: #e8e8e8;
  274. font-size: 20rpx;
  275. color: #666666;
  276. margin-right: 10rpx;
  277. margin-top: 10rpx;
  278. }
  279. }
  280. .tags2 {
  281. display: flex;
  282. flex-wrap: wrap;
  283. .it {
  284. height: 36rpx;
  285. padding: 0 6rpx;
  286. font-size: 24rpx;
  287. margin-right: 10rpx;
  288. border: 1px solid #FE781F;
  289. color: #FE781F;
  290. box-sizing: border-box;
  291. margin-top: 10rpx;
  292. display: flex;
  293. align-items: center;
  294. }
  295. }
  296. .price {
  297. display: flex;
  298. align-items: flex-end;
  299. margin-top: 10rpx;
  300. .price-1 {
  301. font-size: 32rpx;
  302. color: #FF3F42;
  303. line-height: 32rpx;
  304. }
  305. .price-2 {
  306. font-size: 26rpx;
  307. color: #666666;
  308. line-height: 26rpx;
  309. text-decoration: line-through;
  310. margin-left: 12rpx;
  311. }
  312. }
  313. .text {
  314. font-size: 24rpx;
  315. color: #999999;
  316. margin-top: 10rpx;
  317. }
  318. }
  319. }
  320. }
  321. .goods-row-list {
  322. padding: 20rpx 20rpx 0;
  323. box-sizing: border-box;
  324. .item {
  325. padding: 20rpx;
  326. background: #FFFFFF;
  327. border-radius: 20rpx;
  328. display: flex;
  329. margin-bottom: 20rpx;
  330. .image {
  331. width: 240rpx;
  332. height: 240rpx;
  333. flex-shrink: 0;
  334. position: relative;
  335. .img {
  336. width: 240rpx;
  337. height: 240rpx;
  338. display: block;
  339. }
  340. .water {
  341. width: 240rpx;
  342. height: 240rpx;
  343. display: block;
  344. position: absolute;
  345. left: 0;
  346. top: 0;
  347. z-index: 1;
  348. }
  349. }
  350. .right {
  351. flex: 1;
  352. display: flex;
  353. flex-direction: column;
  354. justify-content: space-between;
  355. margin-left: 20rpx;
  356. .title {
  357. font-size: 30rpx;
  358. color: #333333;
  359. line-height: 36rpx;
  360. font-weight: 600;
  361. max-height: 72rpx;
  362. }
  363. .tags {
  364. display: flex;
  365. flex-wrap: wrap;
  366. .it {
  367. height: 28rpx;
  368. padding: 0 10rpx;
  369. line-height: 28rpx;
  370. border-radius: 10rpx;
  371. background: #e8e8e8;
  372. font-size: 20rpx;
  373. color: #666666;
  374. margin-right: 10rpx;
  375. margin-top: 10rpx;
  376. }
  377. }
  378. .bottom {
  379. display: flex;
  380. align-items: flex-end;
  381. justify-content: space-between;
  382. .price {
  383. margin-top: 10rpx;
  384. .price-1 {
  385. font-size: 32rpx;
  386. color: #FF3F42;
  387. line-height: 32rpx;
  388. }
  389. .price-2 {
  390. font-size: 26rpx;
  391. color: #666666;
  392. line-height: 26rpx;
  393. text-decoration: line-through;
  394. margin-top: 6rpx;
  395. }
  396. }
  397. .text {
  398. font-size: 24rpx;
  399. color: #999999;
  400. }
  401. }
  402. }
  403. }
  404. }
  405. </style>