index.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <template>
  2. <view class="user">
  3. <view class="bg-box">
  4. <image class="" src="@/static/image/user/user-bg.png" mode="widthFix" />
  5. </view>
  6. <view class="pos-box">
  7. <capsule :showBorder="true" bgColor="transparent">
  8. <template v-slot:top>
  9. <view class="user-top">我的</view>
  10. </template>
  11. </capsule>
  12. <view class="box-container">
  13. <view class="user-info">
  14. <view class="info-image">
  15. <view class="img" @click="navigateTo('/user_module/changeLogo/index')">
  16. <image
  17. class=""
  18. :src="shopInfo.shopLogo"
  19. />
  20. </view>
  21. <view class="info-switch">
  22. <image class="" src="@/static/image/user/switch.png" />
  23. </view>
  24. </view>
  25. <view class="info-text">
  26. <view class="text-title">{{ shopInfo.shopName }}</view>
  27. <view class="text-name">
  28. <text>负责人:{{ shopInfo.shopReturn.returnPerson || '--' }}</text>
  29. <text>{{ shopInfo.shopPhone }}</text>
  30. </view>
  31. </view>
  32. <image class="notice" src="@/static/image/user/notice.png" />
  33. </view>
  34. <view class="user-money">
  35. <view class="money-bg">
  36. <image src="@/static/image/user/money-bg.png" />
  37. </view>
  38. <view class="money-container">
  39. <view class="money-top">
  40. <view class="top-box" @click="userAccount('/user_module/balance/index?type=4')">
  41. <text>{{ withdrawableMoney || 0 }}</text>
  42. <text>余额</text>
  43. </view>
  44. <view class="top-box" @click="userAccount('/user_module/consumptionPrice/index')">
  45. <text>{{ withdrawalIn || 0 }}</text>
  46. <text>消费金</text>
  47. </view>
  48. <view class="top-box" @click="navigateTo('/user_module/voucherPrice/index')">
  49. <text>{{ voucherWithdrawalIn || 0 }}</text>
  50. <text>代金券</text>
  51. </view>
  52. <view class="top-box" @click="navigateTo('/user_module/platformBalance/index')">
  53. <text>{{ rechargeWithdrawalIn || 0 }}</text>
  54. <text>平台余额</text>
  55. </view>
  56. </view>
  57. <view class="money-bottom">
  58. <view>收入明细</view>
  59. <view>
  60. <text>去查看</text>
  61. <tui-icon
  62. name="arrowright"
  63. color="rgba(0, 0, 0, 0.4)"
  64. :size="18"
  65. ></tui-icon>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. <view class="user-account">
  71. <view
  72. class="account-item"
  73. v-for="(item, index) in accountList"
  74. :key="index"
  75. @click="userAccount(item)"
  76. >
  77. <image :src="item.image" />
  78. <text>{{ item.title }}</text>
  79. </view>
  80. </view>
  81. <view class="user-related">
  82. <view
  83. class="related-item"
  84. v-for="item in relatedList"
  85. :key="item.title"
  86. @click="userAccount(item)"
  87. >
  88. <view class="item-left">
  89. <image :src="item.image" />
  90. <text>{{ item.title }}</text>
  91. </view>
  92. <view class="item-right">
  93. <!-- <text>¥{{ financeInfo[item.name] }}</text> -->
  94. <tui-icon name="arrowright" color="#000" :size="18"></tui-icon>
  95. </view>
  96. </view>
  97. </view>
  98. <view class="user-setup">
  99. <view
  100. class="related-item"
  101. @click="navigateTo('/user_module/businessInfo/index')"
  102. >
  103. <view class="item-left">
  104. <image src="@/static/image/user/user_icon5.png" />
  105. <text>设置</text>
  106. </view>
  107. <view class="item-right">
  108. <tui-icon name="arrowright" color="#000" :size="18"></tui-icon>
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. </view>
  114. </view>
  115. </template>
  116. <script>
  117. import { getFinanceCount, getShopDetail } from "@/config/index.js";
  118. export default {
  119. created() {
  120. this.getFinance();
  121. },
  122. onShow() {
  123. // 本地获取店铺信息
  124. this.shopInfo = uni.getStorageSync("shopInfo");
  125. // 如果没有店铺信息 请求店铺信息
  126. if (!this.shopInfo) {
  127. this.getShop();
  128. }
  129. },
  130. data() {
  131. return {
  132. shopInfo: null,
  133. // turnover: 0,
  134. // frozenMoney: 0,
  135. // rechargeWithdrawalIn:0,
  136. withdrawableMoney: 0,
  137. // 总流水
  138. financeInfo:{},
  139. accountList: [
  140. // {
  141. // title: "商家入驻",
  142. // image: require("@/static/image/user/account_01.png"),
  143. // url: "/user_module/webview/index?type=1",
  144. // },
  145. {
  146. title: "商家码",
  147. image: require("@/static/image/user/account_02.png"),
  148. url: "/user_module/merchantCode/index",
  149. },
  150. {
  151. title: "会员管理",
  152. image: require("@/static/image/user/account_03.png"),
  153. url: "/user_module/memberManage/index",
  154. },
  155. {
  156. title: "官方客服",
  157. image: require("@/static/image/user/account_04.png"),
  158. url: "/user_module/webview/index?type=2",
  159. },
  160. ],
  161. relatedList: [
  162. {
  163. title: "余额",
  164. image: require("@/static/image/user/user_icon1.png"),
  165. url:"/user_module/balance/index?type=4",
  166. name:"rechargeAllRealIncome"
  167. },
  168. {
  169. title: "消费金",
  170. image: require("@/static/image/user/user_icon2.png"),
  171. url:"/user_module/consumptionPrice/index",
  172. name:"withdrawalIn"
  173. },
  174. {
  175. title: "代金券",
  176. image: require("@/static/image/user/user_icon3.png"),
  177. url:"/user_module/voucherPrice/index",
  178. name:"voucherWithdrawalIn"
  179. },
  180. {
  181. title: "平台余额",
  182. image: require("@/static/image/user/user_icon4.png"),
  183. url:"/user_module/platformBalance/index",
  184. // name:"platformBalance"
  185. },
  186. {
  187. title: "佣金",
  188. image: require("@/static/image/user/user_icon6.png"),
  189. url:"/user_module/commission/index",
  190. // name:"platformBalance"
  191. },
  192. ],
  193. };
  194. },
  195. methods: {
  196. // 获取流水
  197. async getFinance() {
  198. let res = await getFinanceCount({ condition: "1", time: "",paymentMode:1 });
  199. this.financeInfo = res.data;
  200. this.animateNumber("turnover", res.data.turnover);
  201. this.animateNumber("frozenMoney", res.data.frozenMoney);
  202. this.animateNumber("withdrawableMoney", res.data.withdrawableMoney);
  203. // this.animateNumber("rechargeWithdrawalIn", res.data.rechargeWithdrawalIn);
  204. },
  205. // 获取店铺详情
  206. async getShop() {
  207. let { data } = await getShopDetail({});
  208. this.shopInfo = data;
  209. // 将店铺存到本地
  210. uni.setStorageSync("shopInfo", data);
  211. },
  212. // 流水动画
  213. animateNumber(str, targetNum) {
  214. const duration = 2000; // 动画时长,单位毫秒
  215. const interval = 20; // 动画间隔时间,单位毫秒
  216. const distance = targetNum - this[str];
  217. const steps = duration / interval;
  218. const step = distance / steps;
  219. let currentStep = 0;
  220. const timer = setInterval(() => {
  221. if (!targetNum) return;
  222. currentStep++;
  223. this[str] = parseFloat((this[str] + step).toFixed(2));
  224. if (currentStep >= steps) {
  225. this[str] = targetNum;
  226. clearInterval(timer);
  227. }
  228. }, interval);
  229. },
  230. // 下方功能页面跳转
  231. userAccount(item) {
  232. // 判断是不是一个字符串
  233. if (typeof item === "string") {
  234. this.navigateTo(item);
  235. return;
  236. }
  237. if (!item.url) {
  238. this.$showToast("功能暂未开放");
  239. return;
  240. }
  241. this.navigateTo(item.url);
  242. },
  243. },
  244. };
  245. </script>
  246. <style lang="scss" scoped>
  247. @import "./index.scss";
  248. </style>