index.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view class="changeInfo">
  3. <view class="ipt-center">
  4. <template v-if="title == 'shopBrief'">
  5. <tui-textarea
  6. v-model="shopInfo[title]"
  7. height="240rpx"
  8. min-height="40rpx"
  9. :placeholder="placeholder"
  10. :focus="true"
  11. :adjustPosition="false"
  12. ></tui-textarea>
  13. </template>
  14. <template v-else>
  15. <tui-input
  16. type="text"
  17. :placeholder="placeholder"
  18. v-model="shopInfo[title]"
  19. :focus="true"
  20. >
  21. <template #right>
  22. <tui-icon
  23. @click="cleanVal"
  24. name="close"
  25. :size="18"
  26. color="rgba(0, 0, 0, 0.9)"
  27. ></tui-icon>
  28. </template>
  29. </tui-input>
  30. </template>
  31. </view>
  32. <view class="complete">
  33. <text :class="shopInfo[title] ? 'act' : ''" @click="changeInfo"
  34. >完成</text
  35. >
  36. </view>
  37. <modal :showModal="modal" :promptList="promptList" @closeModal="closeModal" :showBtn="true"></modal>
  38. </view>
  39. </template>
  40. <script>
  41. import { updateShopInfo } from "@/config/index.js";
  42. export default {
  43. onLoad(option) {
  44. uni.setNavigationBarTitle({
  45. title: option.barTitle,
  46. });
  47. this.placeholder = `请输入${option.barTitle}`;
  48. this.title = option.title;
  49. this.barTitle = option.barTitle;
  50. // 获取本地存储的 shopInfo 数据
  51. this.shopInfo = uni.getStorageSync("shopInfo");
  52. },
  53. data() {
  54. return {
  55. placeholder: "",
  56. shopInfo: {},
  57. barTitle: "",
  58. title: "",
  59. // 弹框
  60. modal:false,
  61. promptList:[]
  62. };
  63. },
  64. methods: {
  65. async changeInfo() {
  66. // 判断是不是电话号码 电话号码的话就用正则判断
  67. const phoneRule = /^1[3-9]\d{9}$/;
  68. if (this.title == "shopPhone" && !phoneRule.test(this.shopInfo[this.title])) {
  69. this.promptList = ['手机号码', '必须为1开头的11位数']
  70. this.modal = true
  71. return;
  72. }
  73. this.$loading.show("更新中");
  74. try {
  75. let res = await updateShopInfo(this.shopInfo);
  76. if (res.code == "") {
  77. this.$showToast(`${this.barTitle}修改成功`, "success");
  78. // 对本地存储的数据进行更换
  79. let uploadInfo = JSON.parse(res.json);
  80. this.shopInfo.shopLogo = uploadInfo.shopLogo;
  81. uni.setStorageSync("shopInfo", uploadInfo);
  82. }
  83. } finally {
  84. this.$loading.hide();
  85. }
  86. },
  87. // 关闭弹框
  88. closeModal(){
  89. this.modal = false
  90. },
  91. cleanVal() {
  92. this.shopInfo[this.title] = "";
  93. },
  94. },
  95. };
  96. </script>
  97. <style lang="scss" scoped>
  98. .changeInfo {
  99. width: 100vw;
  100. min-height: 100vh;
  101. background-color: rgb(247, 247, 247);
  102. padding-top: 20rpx;
  103. box-sizing: border-box;
  104. .complete {
  105. width: 100%;
  106. padding-right: 32rpx;
  107. box-sizing: border-box;
  108. margin-top: 32rpx;
  109. text-align: right;
  110. color: #999999;
  111. font-size: 28rpx;
  112. .act {
  113. color: #1db064;
  114. }
  115. }
  116. }
  117. </style>