index.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <view class="user">
  3. <capsule :showBorder="true" bgColor="#FFFFFF">
  4. <template v-slot:top>
  5. <view class="user-box">个人中心</view>
  6. </template>
  7. </capsule>
  8. <view class="seize"></view>
  9. <view class="picture-bg">
  10. <view class="bg-icon">
  11. <tui-icon name="notice" :size="24" color="#FFFFFF"></tui-icon>
  12. <tui-icon
  13. name="setup"
  14. :size="24"
  15. color="#FFFFFF"
  16. @click="navigateTo('/user_module/businessInfo/index')"
  17. ></tui-icon>
  18. </view>
  19. <view class="bg-image">
  20. <image class="" :src="shopInfo.shopLogo" mode="center" />
  21. </view>
  22. <view class="bg-info">
  23. <view class="info-image">
  24. <view class="img">
  25. <image class="" :src="shopInfo.shopLogo" />
  26. </view>
  27. <view class="info-switch">
  28. <image class="" src="@/static/image/user/switch.png" />
  29. </view>
  30. </view>
  31. <view class="info-text">
  32. <view class="text-title">{{ shopInfo.shopName }}</view>
  33. <view class="text-lable">
  34. <view class="lable">{{ shopInfo.shopReturn.returnPerson || '--' }}</view>
  35. <view class="lable">{{ shopInfo.shopPhone }}</view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="user-container">
  41. <view class="user-flowing">
  42. <view class="flowing-box left">
  43. <view class="flowing-txt">营业额</view>
  44. <view class="flowing-price">¥{{ turnover }}元</view>
  45. </view>
  46. <view class="flowing-box left">
  47. <view class="flowing-txt">途中金额</view>
  48. <view class="flowing-price">¥{{ frozenMoney }}元</view>
  49. </view>
  50. <view class="flowing-box">
  51. <view class="flowing-txt">已到账金额</view>
  52. <view class="flowing-price">¥{{ withdrawableMoney }}元</view>
  53. </view>
  54. </view>
  55. <view class="user-account">
  56. <view
  57. class="account-top"
  58. @click="navigateTo('/user_module/myAccount/index')"
  59. >
  60. <text>我的账户</text>
  61. <tui-icon name="arrowright" :size="26" colo="#666666"></tui-icon>
  62. </view>
  63. <view class="account-bottom">
  64. <view
  65. class="bottom-box"
  66. v-for="item in accountList"
  67. :key="item.title"
  68. @click="userAccount(item)"
  69. >
  70. <image class="" :src="item.image" />
  71. <text>{{ item.title }}</text>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. </template>
  78. <script>
  79. import { getFinanceCount, getShopDetail } from "@/config/index.js";
  80. export default {
  81. created() {
  82. this.getFinance();
  83. },
  84. onShow() {
  85. // 本地获取店铺信息
  86. this.shopInfo = uni.getStorageSync("shopInfo");
  87. // 如果没有店铺信息 请求店铺信息
  88. if (!this.shopInfo) {
  89. this.getShop();
  90. }
  91. },
  92. data() {
  93. return {
  94. shopInfo: null,
  95. turnover: 0,
  96. frozenMoney: 0,
  97. withdrawableMoney: 0,
  98. accountList: [
  99. {
  100. title: "商家入驻",
  101. image: require("@/static/image/user/account_01.png"),
  102. url: "/user_module/webview/index?type=1",
  103. },
  104. {
  105. title: "商家码",
  106. image: require("@/static/image/user/account_02.png"),
  107. url: "/user_module/merchantCode/index",
  108. },
  109. {
  110. title: "会员管理",
  111. image: require("@/static/image/user/account_03.png"),
  112. url: "/user_module/memberManage/index",
  113. },
  114. {
  115. title: "官方客服",
  116. image: require("@/static/image/user/account_04.png"),
  117. url: "/user_module/webview/index?type=2",
  118. },
  119. ],
  120. financeInfo: {},
  121. };
  122. },
  123. methods: {
  124. // 获取流水
  125. async getFinance() {
  126. let res = await getFinanceCount({ condition: "1", time: "" });
  127. this.financeInfo = res.data;
  128. this.animateNumber("turnover", res.data.turnover);
  129. this.animateNumber("frozenMoney", res.data.frozenMoney);
  130. this.animateNumber("withdrawableMoney", res.data.withdrawableMoney);
  131. },
  132. // 获取店铺详情
  133. async getShop() {
  134. let { data } = await getShopDetail({});
  135. this.shopInfo = data;
  136. // 将店铺存到本地
  137. uni.setStorageSync("shopInfo", data);
  138. },
  139. // 流水动画
  140. animateNumber(str, targetNum) {
  141. const duration = 2000; // 动画时长,单位毫秒
  142. const interval = 20; // 动画间隔时间,单位毫秒
  143. const distance = targetNum - this[str];
  144. const steps = duration / interval;
  145. const step = distance / steps;
  146. let currentStep = 0;
  147. const timer = setInterval(() => {
  148. if (!targetNum) return;
  149. currentStep++;
  150. this[str] = parseFloat((this[str] + step).toFixed(2));
  151. if (currentStep >= steps) {
  152. this[str] = targetNum;
  153. clearInterval(timer);
  154. }
  155. }, interval);
  156. },
  157. // 下方功能页面跳转
  158. userAccount(item) {
  159. if (!item.url) {
  160. this.$showToast("功能暂未开放");
  161. return;
  162. }
  163. this.navigateTo(item.url);
  164. },
  165. },
  166. };
  167. </script>
  168. <style lang="scss" scoped>
  169. @import "./index.scss";
  170. </style>