index.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <view class="businessInfo">
  3. <view class="info-continer">
  4. <view
  5. class="info-box"
  6. @click="navigateTo('/user_module/changeLogo/index')"
  7. >
  8. <view class="box-left">店铺LOGO</view>
  9. <view class="box-right">
  10. <image class="" :src="shopInfo.shopLogo" />
  11. <view class="icon">
  12. <tui-icon name="arrowright" color="#333333" :size="28"></tui-icon>
  13. </view>
  14. </view>
  15. </view>
  16. <view
  17. class="info-box top"
  18. v-for="(item, index) in infoData"
  19. :key="index"
  20. @click="goChangeInfo(item)"
  21. >
  22. <view class="box-left">{{ item.name }}</view>
  23. <view class="box-right">
  24. <text>{{ shopInfo[item.title] || "" }}</text>
  25. <view class="icon">
  26. <tui-icon name="arrowright" color="#333333" :size="28"></tui-icon>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="login-state">
  32. <!-- <view class="btn">切换账号</view> -->
  33. <view class="btn exit" @click="exitLogin">退出登录</view>
  34. </view>
  35. <modal
  36. :showModal="modal"
  37. :promptList="promptList"
  38. @closeModal="closeModal"
  39. :showBtn="true"
  40. showText="退出登录"
  41. @btnClick="btnClick"
  42. ></modal>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. onShow() {
  48. // 获取本地存储的数据
  49. this.shopInfo = uni.getStorageSync("shopInfo");
  50. console.log(this.shopInfo);
  51. },
  52. data() {
  53. return {
  54. shopInfo: {},
  55. infoData: [
  56. {
  57. name: "店铺名称",
  58. title: "shopName",
  59. },
  60. // {
  61. // name:'店铺负责人',
  62. // title:'shopName'
  63. // },
  64. {
  65. name: "手机号码",
  66. title: "shopPhone",
  67. },
  68. {
  69. name: "店铺地址",
  70. title: "shopAdress",
  71. },
  72. {
  73. name: "店铺简介",
  74. title: "shopBrief",
  75. },
  76. {
  77. name: "修改密码",
  78. title: "changePassword",
  79. },
  80. ],
  81. // 弹框
  82. modal: false,
  83. promptList: ["是否退出当前账号呢?"],
  84. };
  85. },
  86. methods: {
  87. goChangeInfo(item) {
  88. if (item.title == "changePassword") {
  89. this.navigateTo(`/user_module/changePassword/index`);
  90. return;
  91. }
  92. // 这个方法混入在 mixin 中
  93. this.navigateTo(
  94. `/user_module/changeInfo/index?barTitle=${item.name}&title=${
  95. item.title
  96. }`
  97. );
  98. },
  99. // 退出登录
  100. exitLogin() {
  101. this.modal = true;
  102. },
  103. // 确认退出登录
  104. btnClick() {
  105. // 清除本地缓存
  106. uni.clearStorageSync();
  107. // 跳转回登陆页面
  108. uni.reLaunch({
  109. url: "/pages/login/index",
  110. });
  111. },
  112. closeModal() {
  113. this.modal = false;
  114. },
  115. },
  116. };
  117. </script>
  118. <style lang="scss" scoped>
  119. @import "./index.scss";
  120. </style>