index.vue 12 KB

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