index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. <template>
  2. <view style=" padding: 30rpx;">
  3. <view class="dt">
  4. <view class="dt1">
  5. 取货码
  6. </view>
  7. <view class="dt2">
  8. {{pickupCode}}
  9. </view>
  10. </view>
  11. <view class="all-products-body">
  12. <view class="all-products-item" v-for="(item,index) in goodsList" :key="index">
  13. <image
  14. :src="item.goodsImage"
  15. mode="scaleToFill" />
  16. <view class="all-products-item-content">
  17. <view class="all-products-item-content-t">
  18. {{item.goodsName}}
  19. </view>
  20. <view class="all-products-item-content-b">
  21. <view style="display:flex;">
  22. <text class="red"> 共{{item.goodsNum}}件</text>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. import { getOrderGoodsList} from '@/api/groupon.js'
  32. import {
  33. getUserInfo,
  34. userEdit,
  35. getLogout
  36. } from '@/api/user.js';
  37. import {
  38. switchH5Login
  39. } from '@/api/api.js';
  40. import {
  41. toLogin
  42. } from '@/libs/login.js';
  43. import {
  44. mapGetters
  45. } from "vuex";
  46. import dayjs from "@/plugin/dayjs/dayjs.min.js";
  47. // #ifdef MP
  48. import authorize from '@/components/Authorize';
  49. // #endif
  50. import colors from '@/mixins/color.js';
  51. export default {
  52. components: {
  53. // #ifdef APP-PLUS
  54. appUpdate,
  55. // #endif
  56. // #ifdef MP
  57. authorize
  58. // #endif
  59. },
  60. mixins: [colors],
  61. data () {
  62. return {
  63. pickupCode:'',
  64. goodsList:[]
  65. };
  66. },
  67. computed: mapGetters(['isLogin']),
  68. watch: {
  69. isLogin: {
  70. handler: function (newV, oldV) {
  71. if (newV) {
  72. this.getUserInfo();
  73. }
  74. },
  75. deep: true
  76. }
  77. },
  78. onLoad (e) {
  79. if (e.pickupCode){
  80. this.pickupCode=e.pickupCode
  81. }
  82. if (e.orderId){
  83. this.getOrderGoodsList(e.orderId)
  84. }
  85. },
  86. methods: {
  87. getOrderGoodsList(orderId){
  88. getOrderGoodsList(orderId).then(res =>{
  89. this.goodsList=res.data
  90. })
  91. },
  92. isNew () {
  93. this.$util.Tips({
  94. title: this.$t(`当前为最新版本`)
  95. });
  96. },
  97. setLang () {
  98. this.array.map((item, i) => {
  99. if (this.$i18n.locale == item.value) {
  100. this.setIndex = i
  101. }
  102. })
  103. },
  104. bindPickerChange (e, item) {
  105. this.setIndex = e.detail.value
  106. this.$i18n.locale = this.array[this.setIndex].value;
  107. uni.setStorageSync('locale', this.array[this.setIndex].value);
  108. },
  109. updateApp () {
  110. this.$refs.appUpdate.update(); //调用子组件 检查更新
  111. },
  112. formatSize () {
  113. let that = this;
  114. plus.cache.calculate(function (size) {
  115. let sizeCache = parseInt(size);
  116. if (sizeCache == 0) {
  117. that.fileSizeString = "0B";
  118. } else if (sizeCache < 1024) {
  119. that.fileSizeString = sizeCache + "B";
  120. } else if (sizeCache < 1048576) {
  121. that.fileSizeString = (sizeCache / 1024).toFixed(2) + "KB";
  122. } else if (sizeCache < 1073741824) {
  123. that.fileSizeString = (sizeCache / 1048576).toFixed(2) + "MB";
  124. } else {
  125. that.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "GB";
  126. }
  127. });
  128. },
  129. initData () {
  130. uni.showModal({
  131. title: this.$t(`清除缓存`),
  132. content: this.$t(`确定清楚本地缓存数据吗`),
  133. success: (res) => {
  134. if (res.confirm) {
  135. this.clearCache()
  136. this.formatSize()
  137. } else if (res.cancel) {
  138. return that.$util.Tips({
  139. title: that.$t(`取消`)
  140. });
  141. }
  142. }
  143. });
  144. },
  145. clearCache () {
  146. let that = this;
  147. let os = plus.os.name;
  148. if (os == 'Android') {
  149. let main = plus.android.runtimeMainActivity();
  150. let sdRoot = main.getCacheDir();
  151. let files = plus.android.invoke(sdRoot, "listFiles");
  152. let len = files.length;
  153. for (let i = 0; i < len; i++) {
  154. let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
  155. plus.io.resolveLocalFileSystemURL(filePath, function (entry) {
  156. if (entry.isDirectory) {
  157. entry.removeRecursively(function (entry) { //递归删除其下的所有文件及子目录
  158. uni.showToast({
  159. title: that.$t(`缓存清理完成`),
  160. duration: 2000
  161. });
  162. that.formatSize(); // 重新计算缓存
  163. }, function (e) {
  164. console.log(e.message)
  165. });
  166. } else {
  167. entry.remove();
  168. }
  169. }, function (e) { });
  170. }
  171. } else { // ios暂时未找到清理缓存的方法,以下是官方提供的方法,但是无效,会报错
  172. plus.cache.clear(function () {
  173. uni.showToast({
  174. title: that.$t(`缓存清理完成`),
  175. duration: 2000
  176. });
  177. that.formatSize();
  178. });
  179. }
  180. },
  181. /**
  182. * 授权回调
  183. */
  184. onLoadFun: function () {
  185. this.getUserInfo();
  186. },
  187. // 授权关闭
  188. authColse: function (e) {
  189. this.isShowAuth = e
  190. },
  191. /**
  192. * 小程序设置
  193. */
  194. Setting: function () {
  195. uni.openSetting({
  196. success: function (res) { }
  197. });
  198. },
  199. switchAccounts: function (index) {
  200. let userInfo = this.switchUserInfo[index],
  201. that = this;
  202. that.userIndex = index;
  203. if (that.switchUserInfo.length <= 1) return true;
  204. if (userInfo === undefined) return that.$util.Tips({
  205. title: that.$t(`切换的账号不存在`)
  206. });
  207. if (userInfo.user_type === 'h5') {
  208. uni.showLoading({
  209. title: that.$t(`正在切换中`)
  210. });
  211. switchH5Login().then(res => {
  212. uni.hideLoading();
  213. that.$store.commit("LOGIN", {
  214. 'token': res.data.token,
  215. 'time': this.$Cache.strTotime(res.data.expires_time) - this.$Cache.time()
  216. });
  217. that.getUserInfo();
  218. }).catch(err => {
  219. uni.hideLoading();
  220. return that.$util.Tips({
  221. title: err
  222. });
  223. })
  224. } else {
  225. that.$store.commit("LOGOUT");
  226. uni.showLoading({
  227. title: that.$t(`正在切换中`)
  228. });
  229. toLogin();
  230. }
  231. },
  232. /**
  233. * 退出登录
  234. *
  235. */
  236. outLogin: function () {
  237. let that = this;
  238. if (that.loginType == 'h5') {
  239. uni.showModal({
  240. title: that.$t(`提示`),
  241. content: that.$t(`确认退出登录`),
  242. success: function (res) {
  243. if (res.confirm) {
  244. getLogout()
  245. .then(res => {
  246. // uni.clearStorage()
  247. that.$store.commit("LOGOUT");
  248. uni.reLaunch({
  249. url: '/pages/index/index'
  250. })
  251. })
  252. .catch(err => { });
  253. } else if (res.cancel) { }
  254. }
  255. });
  256. }
  257. },
  258. /**
  259. * 获取用户详情
  260. */
  261. getUserInfo: function () {
  262. let that = this;
  263. getUserInfo().then(res => {
  264. that.$set(that, 'userInfo', res.data);
  265. let switchUserInfo = res.data.switchUserInfo || [];
  266. for (let i = 0; i < switchUserInfo.length; i++) {
  267. if (switchUserInfo[i].uid == that.userInfo.uid) that.userIndex = i;
  268. // 切割h5用户;user_type状态:h5、routine(小程序)、wechat(公众号);注:只有h5未注册手机号时,h5才可和小程序或是公众号数据想通;
  269. //#ifdef H5
  270. if (
  271. !that.$wechat.isWeixin() &&
  272. switchUserInfo[i].user_type != "h5" &&
  273. switchUserInfo[i].phone === ""
  274. )
  275. switchUserInfo.splice(i, 1);
  276. //#endif
  277. }
  278. that.$set(that, "switchUserInfo", switchUserInfo);
  279. });
  280. },
  281. /**
  282. * 上传文件
  283. *
  284. */
  285. uploadpic: function () {
  286. let that = this;
  287. this.canvasStatus = true
  288. that.$util.uploadImageChange('upload/image', (res) => {
  289. let userInfo = that.switchUserInfo[that.userIndex];
  290. if (userInfo !== undefined) {
  291. that.userInfo.avatar = res.data.url;
  292. }
  293. that.switchUserInfo[that.userIndex] = userInfo;
  294. that.$set(that, 'switchUserInfo', that.switchUserInfo);
  295. this.canvasStatus = false
  296. }, (res) => {
  297. this.canvasStatus = false
  298. }, (res) => {
  299. this.canvasWidth = res.w
  300. this.canvasHeight = res.h
  301. });
  302. },
  303. /**
  304. * 提交修改
  305. */
  306. formSubmit: function (e) {
  307. let that = this,
  308. value = e.detail.value,
  309. userInfo = that.switchUserInfo[that.userIndex];
  310. if (!value.nickname) return that.$util.Tips({
  311. title: that.$t(`请输入姓名`)
  312. });
  313. value.avatar = this.userInfo.avatar;
  314. userEdit(value).then(res => {
  315. return that.$util.Tips({
  316. title: res.msg,
  317. icon: 'success'
  318. }, {
  319. tab: 3,
  320. url: 1
  321. });
  322. }).catch(msg => {
  323. return that.$util.Tips({
  324. title: msg || that.$t(`保存失败`)
  325. }, {
  326. tab: 3,
  327. url: 1
  328. });
  329. });
  330. }
  331. }
  332. }
  333. </script>
  334. <style scoped lang="scss">
  335. .cartcolor {
  336. color: var(--view-theme);
  337. border: 1px solid var(--view-theme);
  338. }
  339. .all-products-body {
  340. background: white;
  341. padding-top: 30rpx;
  342. .all-products-item {
  343. display: flex;
  344. margin-bottom: 20rpx;
  345. image {
  346. width: 128rpx;
  347. height: 128rpx;
  348. margin-right: 20rpx;
  349. border: 2rpx solid #FFFFFF;
  350. }
  351. .all-products-item-content {
  352. flex-grow: 1;
  353. display: flex;
  354. flex-direction: column;
  355. .all-products-item-content-t {
  356. flex: 1;
  357. font-size: 24rpx;
  358. font-weight: 400;
  359. color: #333333;
  360. line-height: 40rpx;
  361. }
  362. .all-products-item-content-b {
  363. flex: 1;
  364. font-size: 28rpx;
  365. font-weight: 500;
  366. line-height: 80rpx;
  367. display: flex;
  368. justify-content: space-between;
  369. .red {
  370. display: block;
  371. font-size: 28rpx;
  372. font-weight: 500;
  373. color: #999999 !important;
  374. margin-right: 10rpx;
  375. }
  376. .line-thr {
  377. display: block;
  378. font-size: 28rpx;
  379. font-weight: 400;
  380. color: #999999;
  381. text-decoration: line-through;
  382. }
  383. .count {
  384. font-size: 24rpx;
  385. font-weight: 400;
  386. color: #999999;
  387. margin-right: 30rpx;
  388. }
  389. }
  390. }
  391. }
  392. }
  393. .dt {
  394. height: 148rpx;
  395. background: #FFFFFF;
  396. padding: 20rpx;
  397. text-align: center;
  398. margin-bottom: 20rpx;
  399. .dt1 {
  400. height: 44rpx;
  401. font-size: 28rpx;
  402. font-weight: 400;
  403. color: #333333;
  404. line-height: 44rpx;
  405. margin-bottom: 20rpx;
  406. }
  407. .dt2 {
  408. height: 48rpx;
  409. font-size: 32rpx;
  410. font-weight: 500;
  411. color: #333333;
  412. line-height: 48rpx;
  413. }
  414. }
  415. </style>