index.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <view class="changeLogo">
  3. <view class="changeLogo-center">
  4. <!-- <image class="" src="https://img1.baidu.com/it/u=1845374591,668063497&fm=253&fmt=auto&app=138&f=JPEG?w=501&h=500"/> -->
  5. <image class="" :src="shopInfo.shopLogo" />
  6. </view>
  7. <view class="changeLogo-btn">
  8. <view class="btn" @click="photograph('camera')">
  9. <image class="" src="@/static/image/user/logo_1.png" />
  10. <text>拍照</text>
  11. </view>
  12. <view class="btn" @click="photograph('album')">
  13. <image class="" src="@/static/image/user/logo_2.png" />
  14. <text>打开相册</text>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import { updateShopInfo } from "@/config/index.js";
  21. export default {
  22. created() {
  23. // 获取本地存储的数据
  24. this.shopInfo = uni.getStorageSync("shopInfo");
  25. console.log(this.shopInfo);
  26. },
  27. data() {
  28. return {
  29. shopInfo: {},
  30. };
  31. },
  32. methods: {
  33. photograph(str) {
  34. uni.chooseImage({
  35. count: 6, //默认9
  36. sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
  37. sourceType: [str], //从相册选择
  38. success: (res) => {
  39. console.log(res);
  40. // this.getImage(res.tempFilePaths[0]);
  41. },
  42. });
  43. },
  44. // 图片上传接口
  45. async getImage(file) {
  46. // 加载状态
  47. this.$loading.show("上传中...");
  48. uni.uploadFile({
  49. url: `${process.env.UNI_BASE_URL}/file/upload`, //仅为示例,非真实的接口地址
  50. filePath: file,
  51. header: {
  52. "Content-Type": "application/json; charset=UTF-8",
  53. "Authorization-Business": uni.getStorageSync("storage_key"),
  54. },
  55. name: "file",
  56. formData: {
  57. user: "test",
  58. },
  59. success: (uploadFileRes) => {
  60. this.save(JSON.parse(uploadFileRes.data).data.url);
  61. },
  62. });
  63. },
  64. // 保存更新
  65. async save(logo) {
  66. let obj = { ...this.shopInfo };
  67. obj.shopLogo = logo;
  68. try {
  69. let res = await updateShopInfo(obj);
  70. if (res.code == "") {
  71. this.$showToast("店铺LOGO修改成功", "success");
  72. // 对本地存储的数据进行更换
  73. let uploadInfo = JSON.parse(res.json);
  74. this.shopInfo.shopLogo = uploadInfo.shopLogo;
  75. uni.setStorageSync("shopInfo", uploadInfo);
  76. }
  77. } finally {
  78. this.$loading.hide();
  79. }
  80. },
  81. },
  82. };
  83. </script>
  84. <style lang="scss" scoped>
  85. .changeLogo {
  86. width: 100vw;
  87. min-height: 100vh;
  88. background-color: #000;
  89. position: relative;
  90. .changeLogo-center {
  91. width: 100%;
  92. position: absolute;
  93. top: 262rpx;
  94. left: 0;
  95. image {
  96. width: 100%;
  97. height: 750rpx;
  98. display: block;
  99. }
  100. }
  101. .changeLogo-btn {
  102. width: 100%;
  103. position: absolute;
  104. bottom: 108rpx;
  105. left: 0;
  106. padding: 0 75rpx;
  107. box-sizing: border-box;
  108. @include flex(space-between);
  109. .btn {
  110. width: 276rpx;
  111. height: 108rpx;
  112. background-color: rgba(255, 255, 255, 0.4);
  113. @include flex(center, null, 27rpx);
  114. border-radius: 24rpx;
  115. image {
  116. width: 42rpx;
  117. height: 32rpx;
  118. display: block;
  119. }
  120. text {
  121. font-size: 32rpx;
  122. color: #e6e4e5;
  123. }
  124. }
  125. }
  126. }
  127. </style>