From d39644872fa6f9499fc2c1651bced631a9e96b19 Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期一, 23 十二月 2024 09:48:53 +0800
Subject: [PATCH] 1.高德地图未开发完成版本(可能废弃)
---
pages/home/components/home-category.vue | 30 ++++++++++++++++++++++++++++--
1 files changed, 28 insertions(+), 2 deletions(-)
diff --git a/pages/home/components/home-category.vue b/pages/home/components/home-category.vue
index 0ff549c..68d2934 100644
--- a/pages/home/components/home-category.vue
+++ b/pages/home/components/home-category.vue
@@ -1,8 +1,9 @@
<template>
<view class="home-category">
<view class="flex">
- <view class="t1">{{today}}(今日)第一场交易中</view>
- <view class="t2">当前在售</view>
+ <view class="t1">{{today}}(今日)交易中</view>
+ <view class="t2">当前在{{tj||0}}售</view>
+ <!-- 加了/api/customer/flower/up/stock -->
</view>
<view class="m-t-12 flex">
<view class="item" v-for="(item,index) of list" :key="index" @click.stop="toList(item)">
@@ -29,8 +30,32 @@
})
}
})
+ this.$http.request('get', '/api/customer/flower/up/stock', {}).then(res => {
+ var data = res.data
+ this.tj = data || 0
+ })
+
},
methods: {
+ init(){
+ this.today = this.$util.toDate(new Date())
+ this.$http.request('get', '/api/customer/flower/category/tree', {}).then(res => {
+ var data = res.data
+ this.list = []
+ var arr = data || []
+ for (let i = 0; i < arr.length && i < 10; i++) {
+ this.list.push({
+ id: arr[i].id,
+ name: arr[i].name,
+ url: arr[i].imageUrl
+ })
+ }
+ })
+ this.$http.request('get', '/api/customer/flower/up/stock', {}).then(res => {
+ var data = res.data
+ this.tj = data || 0
+ })
+ },
toList(item) {
// uni.navigateTo({
// url:'/sub_pages/customer/trade/list?categoryId='+item.id
@@ -44,6 +69,7 @@
return {
list: [],
today: '',
+ tj: 0
};
}
--
Gitblit v1.9.3