index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596
  1. <template>
  2. <view style=" padding: 30rpx;">
  3. <view>
  4. <img style=" height: 250rpx;
  5. width: 100%;" src="http://www.gzzzyd.com/groupon/regiment/提货管理_2@2x.png" alt="预览" @click="scanCode">
  6. </view>
  7. <view class="u-demo-block__content" style="margin-top: 15px;">
  8. <u-input placeholder="输入取货码" class="slot-ipt" v-model="pickupCode">
  9. <template slot="suffix">
  10. <u-button class="slot-btn" text="确认核销" type="success" size="mini" @click="confirmOrder"></u-button>
  11. </template>
  12. </u-input>
  13. </view>
  14. <view class="tool_list">
  15. <view class="title" style=" font-weight: 500;padding-left: 30rpx;">
  16. &nbsp;&nbsp;核销记录
  17. </view>
  18. <mescroll-item ref="MescrollItem" :i="index" :index="tabIndex" :height="height" v-for="(tab, index) in tabsList"
  19. :key="index">
  20. </mescroll-item>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import MescrollItem from "./module/mescrollUni-item.vue";
  26. import { confirmOrder } from '@/api/groupon.js'
  27. import {
  28. getUserInfo,
  29. userEdit,
  30. getLogout
  31. } from '@/api/user.js';
  32. import {
  33. switchH5Login
  34. } from '@/api/api.js';
  35. import {
  36. toLogin
  37. } from '@/libs/login.js';
  38. import {
  39. mapGetters
  40. } from "vuex";
  41. import dayjs from "@/plugin/dayjs/dayjs.min.js";
  42. // #ifdef MP
  43. import authorize from '@/components/Authorize';
  44. // #endif
  45. import colors from '@/mixins/color.js';
  46. export default {
  47. components: {
  48. MescrollItem,
  49. // #ifdef APP-PLUS
  50. appUpdate,
  51. // #endif
  52. // #ifdef MP
  53. authorize
  54. // #endif
  55. },
  56. mixins: [colors],
  57. data () {
  58. return {
  59. height: '750rpx',
  60. pickupCode: '',
  61. tabIndex: 0,
  62. tabsList: [{ name: "核销记录" }]
  63. };
  64. },
  65. computed: mapGetters(['isLogin']),
  66. watch: {
  67. isLogin: {
  68. handler: function (newV, oldV) {
  69. if (newV) {
  70. this.getUserInfo();
  71. }
  72. },
  73. deep: true
  74. }
  75. },
  76. onShow () {
  77. let sysInfo = uni.getSystemInfoSync()
  78. this.height = sysInfo.windowHeight - (sysInfo.screenWidth / 750) * (530) + 'px';
  79. console.log(this.height)
  80. },
  81. onLoad () {
  82. if (this.isLogin) {
  83. // this.getUserInfo();
  84. // #ifdef APP-PLUS
  85. // this.formatSize()
  86. // 获取版本号
  87. // plus.runtime.getProperty(plus.runtime.appid, (inf) => {
  88. // console.log(inf.version)
  89. // this.version = inf.version;
  90. // });
  91. // #endif
  92. // this.setLang();
  93. } else {
  94. toLogin();
  95. }
  96. },
  97. methods: {
  98. scanCode () {
  99. let that = this;
  100. uni.scanCode({
  101. onlyFromCamera: true,
  102. success: function (res) {
  103. that.pickupCode = res.result;
  104. console.log("scan code success ...", res.result)
  105. },
  106. fail () {
  107. console.log("scan code fail ...")
  108. },
  109. complete () {
  110. console.log("scan code complete ...")
  111. }
  112. })
  113. },
  114. swiperChange: function (e) {
  115. this.currentSwiper = e.detail.current
  116. },
  117. confirmOrder () {
  118. let that = this;
  119. confirmOrder(this.pickupCode).then(res => {
  120. uni.$u.toast(res.msg)
  121. that.$refs.MescrollItem[that.tabIndex].downCallback();
  122. }).catch(err => {
  123. uni.$u.toast(err)
  124. })
  125. },
  126. isNew () {
  127. this.$util.Tips({
  128. title: this.$t(`当前为最新版本`)
  129. });
  130. },
  131. setLang () {
  132. this.array.map((item, i) => {
  133. if (this.$i18n.locale == item.value) {
  134. this.setIndex = i
  135. }
  136. })
  137. },
  138. bindPickerChange (e, item) {
  139. this.setIndex = e.detail.value
  140. this.$i18n.locale = this.array[this.setIndex].value;
  141. uni.setStorageSync('locale', this.array[this.setIndex].value);
  142. },
  143. updateApp () {
  144. this.$refs.appUpdate.update(); //调用子组件 检查更新
  145. },
  146. formatSize () {
  147. let that = this;
  148. plus.cache.calculate(function (size) {
  149. let sizeCache = parseInt(size);
  150. if (sizeCache == 0) {
  151. that.fileSizeString = "0B";
  152. } else if (sizeCache < 1024) {
  153. that.fileSizeString = sizeCache + "B";
  154. } else if (sizeCache < 1048576) {
  155. that.fileSizeString = (sizeCache / 1024).toFixed(2) + "KB";
  156. } else if (sizeCache < 1073741824) {
  157. that.fileSizeString = (sizeCache / 1048576).toFixed(2) + "MB";
  158. } else {
  159. that.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "GB";
  160. }
  161. });
  162. },
  163. initData () {
  164. uni.showModal({
  165. title: this.$t(`清除缓存`),
  166. content: this.$t(`确定清楚本地缓存数据吗`),
  167. success: (res) => {
  168. if (res.confirm) {
  169. this.clearCache()
  170. this.formatSize()
  171. } else if (res.cancel) {
  172. return that.$util.Tips({
  173. title: that.$t(`取消`)
  174. });
  175. }
  176. }
  177. });
  178. },
  179. clearCache () {
  180. let that = this;
  181. let os = plus.os.name;
  182. if (os == 'Android') {
  183. let main = plus.android.runtimeMainActivity();
  184. let sdRoot = main.getCacheDir();
  185. let files = plus.android.invoke(sdRoot, "listFiles");
  186. let len = files.length;
  187. for (let i = 0; i < len; i++) {
  188. let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
  189. plus.io.resolveLocalFileSystemURL(filePath, function (entry) {
  190. if (entry.isDirectory) {
  191. entry.removeRecursively(function (entry) { //递归删除其下的所有文件及子目录
  192. uni.showToast({
  193. title: that.$t(`缓存清理完成`),
  194. duration: 2000
  195. });
  196. that.formatSize(); // 重新计算缓存
  197. }, function (e) {
  198. console.log(e.message)
  199. });
  200. } else {
  201. entry.remove();
  202. }
  203. }, function (e) { });
  204. }
  205. } else { // ios暂时未找到清理缓存的方法,以下是官方提供的方法,但是无效,会报错
  206. plus.cache.clear(function () {
  207. uni.showToast({
  208. title: that.$t(`缓存清理完成`),
  209. duration: 2000
  210. });
  211. that.formatSize();
  212. });
  213. }
  214. },
  215. /**
  216. * 授权回调
  217. */
  218. onLoadFun: function () {
  219. this.getUserInfo();
  220. },
  221. // 授权关闭
  222. authColse: function (e) {
  223. this.isShowAuth = e
  224. },
  225. /**
  226. * 小程序设置
  227. */
  228. Setting: function () {
  229. uni.openSetting({
  230. success: function (res) { }
  231. });
  232. },
  233. switchAccounts: function (index) {
  234. let userInfo = this.switchUserInfo[index],
  235. that = this;
  236. that.userIndex = index;
  237. if (that.switchUserInfo.length <= 1) return true;
  238. if (userInfo === undefined) return that.$util.Tips({
  239. title: that.$t(`切换的账号不存在`)
  240. });
  241. if (userInfo.user_type === 'h5') {
  242. uni.showLoading({
  243. title: that.$t(`正在切换中`)
  244. });
  245. switchH5Login().then(res => {
  246. uni.hideLoading();
  247. that.$store.commit("LOGIN", {
  248. 'token': res.data.token,
  249. 'time': this.$Cache.strTotime(res.data.expires_time) - this.$Cache.time()
  250. });
  251. that.getUserInfo();
  252. }).catch(err => {
  253. uni.hideLoading();
  254. return that.$util.Tips({
  255. title: err
  256. });
  257. })
  258. } else {
  259. that.$store.commit("LOGOUT");
  260. uni.showLoading({
  261. title: that.$t(`正在切换中`)
  262. });
  263. toLogin();
  264. }
  265. },
  266. /**
  267. * 退出登录
  268. *
  269. */
  270. outLogin: function () {
  271. let that = this;
  272. if (that.loginType == 'h5') {
  273. uni.showModal({
  274. title: that.$t(`提示`),
  275. content: that.$t(`确认退出登录`),
  276. success: function (res) {
  277. if (res.confirm) {
  278. getLogout()
  279. .then(res => {
  280. // uni.clearStorage()
  281. that.$store.commit("LOGOUT");
  282. uni.reLaunch({
  283. url: '/pages/index/index'
  284. })
  285. })
  286. .catch(err => { });
  287. } else if (res.cancel) { }
  288. }
  289. });
  290. }
  291. },
  292. /**
  293. * 获取用户详情
  294. */
  295. getUserInfo: function () {
  296. let that = this;
  297. getUserInfo().then(res => {
  298. that.$set(that, 'userInfo', res.data);
  299. let switchUserInfo = res.data.switchUserInfo || [];
  300. for (let i = 0; i < switchUserInfo.length; i++) {
  301. if (switchUserInfo[i].uid == that.userInfo.uid) that.userIndex = i;
  302. // 切割h5用户;user_type状态:h5、routine(小程序)、wechat(公众号);注:只有h5未注册手机号时,h5才可和小程序或是公众号数据想通;
  303. //#ifdef H5
  304. if (
  305. !that.$wechat.isWeixin() &&
  306. switchUserInfo[i].user_type != "h5" &&
  307. switchUserInfo[i].phone === ""
  308. )
  309. switchUserInfo.splice(i, 1);
  310. //#endif
  311. }
  312. that.$set(that, "switchUserInfo", switchUserInfo);
  313. });
  314. },
  315. /**
  316. * 上传文件
  317. *
  318. */
  319. uploadpic: function () {
  320. let that = this;
  321. this.canvasStatus = true
  322. that.$util.uploadImageChange('upload/image', (res) => {
  323. let userInfo = that.switchUserInfo[that.userIndex];
  324. if (userInfo !== undefined) {
  325. that.userInfo.avatar = res.data.url;
  326. }
  327. that.switchUserInfo[that.userIndex] = userInfo;
  328. that.$set(that, 'switchUserInfo', that.switchUserInfo);
  329. this.canvasStatus = false
  330. }, (res) => {
  331. this.canvasStatus = false
  332. }, (res) => {
  333. this.canvasWidth = res.w
  334. this.canvasHeight = res.h
  335. });
  336. },
  337. /**
  338. * 提交修改
  339. */
  340. formSubmit: function (e) {
  341. let that = this,
  342. value = e.detail.value,
  343. userInfo = that.switchUserInfo[that.userIndex];
  344. if (!value.nickname) return that.$util.Tips({
  345. title: that.$t(`请输入姓名`)
  346. });
  347. value.avatar = this.userInfo.avatar;
  348. userEdit(value).then(res => {
  349. return that.$util.Tips({
  350. title: res.msg,
  351. icon: 'success'
  352. }, {
  353. tab: 3,
  354. url: 1
  355. });
  356. }).catch(msg => {
  357. return that.$util.Tips({
  358. title: msg || that.$t(`保存失败`)
  359. }, {
  360. tab: 3,
  361. url: 1
  362. });
  363. });
  364. }
  365. }
  366. }
  367. </script>
  368. <style lang="scss">
  369. .cartcolor {
  370. color: var(--view-theme);
  371. border: 1px solid var(--view-theme);
  372. }
  373. .personal-data .wrapper {
  374. margin: 10rpx 0;
  375. background-color: #fff;
  376. padding: 36rpx 30rpx 13rpx 30rpx;
  377. }
  378. .personal-data .wrapper .title {
  379. margin-bottom: 30rpx;
  380. font-size: 32rpx;
  381. color: #282828;
  382. }
  383. .group-buying-data {
  384. position: relative;
  385. width: 100%;
  386. height: 200rpx;
  387. padding: 40rpx;
  388. margin: 0 auto;
  389. background-image: url('http://www.gzzzyd.com/groupon/regiment/提货管理@2x.png');
  390. background-size: 100% auto;
  391. background-color: var(--view-theme);
  392. .group-title {
  393. font-size: 32rpx;
  394. font-weight: 500;
  395. color: #B22338;
  396. line-height: 44rpx;
  397. height: 44rpx;
  398. }
  399. .group-content {
  400. display: flex;
  401. .group-content-l {
  402. text-align: center;
  403. flex: 1;
  404. border-color: #333333;
  405. border-right: 1px solid dashed;
  406. }
  407. .group-content-r {
  408. text-align: center;
  409. flex: 1
  410. }
  411. .content-num {
  412. margin-top: 20rpx;
  413. height: 48rpx;
  414. font-size: 40rpx;
  415. font-weight: bold;
  416. color: #B22338;
  417. line-height: 48rpx;
  418. }
  419. .content-info {
  420. margin-top: 20rpx;
  421. text-align: center;
  422. width: 100%;
  423. height: 36rpx;
  424. font-size: 24rpx;
  425. font-weight: 400;
  426. color: #CF7986;
  427. line-height: 36rpx;
  428. }
  429. }
  430. }
  431. .tool_list,
  432. .footer {
  433. background: #fff;
  434. border-radius: 16rpx;
  435. margin-top: 20rpx;
  436. }
  437. .footer {
  438. height: 100rpx;
  439. button {
  440. height: 100%;
  441. font-size: 28rpx;
  442. font-weight: 400;
  443. color: #999999;
  444. line-height: 60rpx;
  445. }
  446. }
  447. /deep/ .tool_list .u-line,
  448. .my_order .u-line {
  449. display: none !important;
  450. }
  451. .u-slot-title {
  452. line-height: 60rpx;
  453. font-size: 28rpx;
  454. font-weight: 400;
  455. color: #333333;
  456. text {
  457. vertical-align: text-bottom;
  458. }
  459. image {
  460. margin-right: 20rpx;
  461. transform: translateY(10rpx);
  462. width: 60rpx;
  463. height: 60rpx;
  464. }
  465. }
  466. .slot-ipt {
  467. background-color: rgba(255, 255, 255, 1.000000);
  468. border-radius: 46rpx;
  469. width: 686rpx;
  470. border: 1px solid rgba(178, 35, 56, 1);
  471. }
  472. .slot-btn {
  473. background-color: rgba(178, 35, 56, 1.000000);
  474. border-radius: 46rpx;
  475. padding: 20rpx 40rpx 20rpx 40rpx;
  476. }
  477. .tool_list {
  478. .title {
  479. /*padding: 0 40rpx;*/
  480. /*padding-top: 20rpx;*/
  481. height: 100rpx;
  482. font-size: 36rpx;
  483. font-weight: bolder;
  484. color: #111111;
  485. line-height: 100rpx;
  486. }
  487. }
  488. /deep/ .tool_list .u-line,
  489. .my_order .u-line {
  490. display: none !important;
  491. }
  492. .u-slot-title {
  493. line-height: 60rpx;
  494. font-size: 28rpx;
  495. font-weight: 400;
  496. color: #333333;
  497. text {
  498. vertical-align: text-bottom;
  499. }
  500. image {
  501. margin-right: 20rpx;
  502. width: 40rpx;
  503. height: 40rpx;
  504. vertical-align: super;
  505. }
  506. }
  507. ::v-deep .u-input {
  508. padding-left: 20rpx !important;
  509. background: white;
  510. border-radius: 46rpx !important;
  511. border: 1px solid #B22338 !important;
  512. padding-top: 0 !important;
  513. padding-bottom: 0 !important;
  514. position: relative;
  515. height: 80rpx !important;
  516. }
  517. ::v-deep .u-input button {
  518. position: relative !important;
  519. right: 0 !important;
  520. transform: translateX(20rpx);
  521. background: #B22338 !important;
  522. text {
  523. font-size: 15px !important;
  524. }
  525. color: white;
  526. width: 200rpx !important;
  527. height: 80rpx !important;
  528. border: none !important;
  529. display: flex !important;
  530. justify-content: flex-start !important;
  531. padding-left: 40rpx !important;
  532. border-radius: 0 46rpx 46rpx 0 !important;
  533. border: 1px solid #B22338 !important;
  534. padding-top: 0 !important;
  535. padding-bottom: 0 !important;
  536. }
  537. .bord {
  538. border: 1px solid red;
  539. }
  540. </style>