index.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view class="home">
  3. <view class="bg-box" :style="{ height: bgHeight + 'px' }"></view>
  4. <view id="computed-box">
  5. <capsule @getHeight="getCapusleHeight"></capsule>
  6. <view class="header-top" :style="{ height: menuButtonHeight + 'px' }">
  7. <view class="shop-title">{{ shopInfo.shopName }}</view>
  8. <view class="shop-state">
  9. <tui-icon
  10. style="margin-top: 4rpx"
  11. name="circle-fill"
  12. :color="
  13. shopInfo.trade ? 'rgb(70,208,88)' : 'rgba(239, 83, 14, 0.63)'
  14. "
  15. :size="20"
  16. ></tui-icon>
  17. <text>{{ shopInfo.trade || "营业中" }}</text>
  18. </view>
  19. </view>
  20. <view class="main">
  21. <view class="main-tool">
  22. <view class="tool-list">
  23. <view
  24. class="tool-item"
  25. v-for="item in toolList"
  26. :key="item.title"
  27. @click="scanCode(item.url)"
  28. >
  29. <view class="item-img" :style="{ background: item.background }">
  30. <image class="" :src="item.img" />
  31. </view>
  32. <view class="item-text">{{ item.title }}</view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="main-container">
  37. <view class="tube-list">
  38. <view
  39. class="tube-item"
  40. v-for="item in tobeList"
  41. :key="item.title"
  42. @click="tobeNavigate(item)"
  43. >
  44. <image :src="item.img" />
  45. <text>{{ item.title }}</text>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. <!-- <view class="header-content"></view>
  52. <view class="main-tool">
  53. <view class="tool-list">
  54. <view class="tool-item" v-for="item in toolList" :key="item.title" @click="scanCode(item.url)">
  55. <image :src="item.img" alt="" />
  56. <text>{{ item.title }}</text>
  57. </view>
  58. </view>
  59. </view> -->
  60. <view class="summarize-box">
  61. <view class="summarize-left">经营概括</view>
  62. <view
  63. class="summarize-right"
  64. @click="navigateTo('/pages_module/operateData/index')"
  65. >
  66. <text>更多</text>
  67. <tui-icon name="arrowright" :size="22"></tui-icon>
  68. </view>
  69. </view>
  70. <view class="data-list">
  71. <view
  72. class="data-box"
  73. v-for="(item, index) in statisticsList"
  74. :key="index"
  75. >
  76. <text>{{ item.title }}</text>
  77. <text>{{
  78. todayData[item.price] ? todayData[item.price] : "0" + item.proportion
  79. }}</text>
  80. </view>
  81. </view>
  82. <!-- <view class=""></view> -->
  83. <!-- <view class="statistics-list">
  84. <view
  85. class="statistics-item"
  86. v-for="(item, index) in statisticsList"
  87. :key="index"
  88. >
  89. <view class="statistics-trans">{{ item.title }}</view>
  90. <view class="statistics-price">
  91. <view class="price">{{ todayData[item.price] >= 0 && !Object.is(todayData[item.price], null) ? todayData[item.price] : '--' }}</view>
  92. </view>
  93. <view class="proportion" v-if="item.state !== 2">
  94. <view class="proportion-box">
  95. <text :style="{ color: item.state == 0 ? '#42D373' : '#EF530E' }"
  96. >{{ item.proportion }}%</text
  97. >
  98. <image
  99. :src="
  100. item.state == 0
  101. ? require('@/static/image/home/decline-icon.png')
  102. : require('@/static/image/home/rise-icon.png')
  103. "
  104. alt=""
  105. />
  106. </view>
  107. </view>
  108. <view class="chart-img" v-if="todayData[item.price]">
  109. <template v-if="item.state == 0">
  110. <image
  111. :src="
  112. item.proportion <= 16
  113. ? require('@/static/image/home/green.png')
  114. : require('@/static/image/home/green-more.png')
  115. "
  116. alt=""
  117. />
  118. </template>
  119. <template v-if="item.state == 1">
  120. <image src="@/static/image/home/red.png" alt="" />
  121. </template>
  122. </view>
  123. <view class="empty" v-else>
  124. <view class="left"></view>
  125. <view class="bottom"></view>
  126. </view>
  127. </view>
  128. </view> -->
  129. </view>
  130. </template>
  131. <script>
  132. import { getShopDetail, getBusinessData } from "@/config/index.js";
  133. import { toolList, tobeList, statisticsList } from "./data";
  134. export default {
  135. mounted() {
  136. //.box获取class为box的元素,如果使用的id= 'box' 则使用'#box'
  137. uni
  138. .createSelectorQuery()
  139. .select("#computed-box")
  140. .boundingClientRect((data) => {
  141. console.log(data);
  142. this.bgHeight = data.height;
  143. // console.log(this.bgHeight, 98989898);
  144. })
  145. .exec();
  146. },
  147. created() {
  148. // 获取胶囊的高度
  149. // #ifdef MP-WEIXIN
  150. let menuButtonInfo = uni.getMenuButtonBoundingClientRect();
  151. this.menuButtonHeight = menuButtonInfo.height;
  152. // #endif
  153. // 请求获取店铺的信息
  154. this.getShop();
  155. // 获取经营数据信息
  156. this.getData();
  157. },
  158. data() {
  159. return {
  160. // 背景高度
  161. bgHeight: 0,
  162. // 胶囊的高度
  163. menuButtonHeight: null,
  164. toolList: toolList,
  165. tobeList: tobeList,
  166. statisticsList: statisticsList,
  167. // 店铺信息
  168. shopInfo: {},
  169. // 动态计算 main 的高度
  170. mainHeight: 0,
  171. todayData: {},
  172. };
  173. },
  174. onLoad() {},
  175. methods: {
  176. // 获取经营数据
  177. async getData() {
  178. let res = await getBusinessData({});
  179. this.todayData = res.data;
  180. },
  181. getCapusleHeight(e) {
  182. // this.mainHeight = 327 - e - this.menuButtonHeight + 16;
  183. console.log(this.mainHeight);
  184. },
  185. // 底部菜单跳转
  186. tobeNavigate(item) {
  187. if (item.title == "订单管理") {
  188. uni.switchTab({
  189. url: item.url,
  190. });
  191. } else if (item.url) {
  192. this.navigateTo(item.url);
  193. } else {
  194. this.$showToast("功能暂未开放");
  195. }
  196. },
  197. // 获取店铺详情
  198. async getShop() {
  199. let { data } = await getShopDetail({});
  200. this.shopInfo = data;
  201. // 将店铺存到本地
  202. uni.setStorageSync("shopInfo", data);
  203. },
  204. // 扫码
  205. scanCode(url) {
  206. if (!url) {
  207. this.$showToast("功能暂未开放");
  208. return;
  209. }
  210. uni.navigateTo({
  211. url: url,
  212. fail: () => {
  213. uni.switchTab({
  214. url: url,
  215. });
  216. },
  217. });
  218. },
  219. },
  220. };
  221. </script>
  222. <style lang="scss" scoped>
  223. @import "./index.scss";
  224. </style>