feat(custom): 新增消息订阅
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-27 17:06:59 +08:00
parent f199320de0
commit 1d8532eccf
104 changed files with 2350 additions and 2477 deletions

View File

@@ -7,19 +7,16 @@
:animated-time="10"
name="tabs"
direction="vertical"
@change="tabChange"
>
@change="tabChange">
<nut-tab-pane
v-for="item in list"
:title="(item.name as string)"
:key="item.ID"
>
:key="item.ID">
<view v-if="goodList.length > 0">
<view
class="list"
v-for="(item, index) in (goodList as any)"
:key="index"
>
:key="index">
<view class="item">
<img :src="item.cover" />
<view class="right">
@@ -46,9 +43,9 @@
</template>
<script lang="ts" setup>
import Taro from "@tarojs/taro";
import { ref } from "vue";
import { getCategoryList, getCategoryGoods } from "@/api/goods";
import Taro from '@tarojs/taro';
import {ref} from 'vue';
import {getCategoryList, getCategoryGoods} from '@/api/goods';
const val = ref(0);