jiuyiUniapp/jiuyi2/pages/merchant/business-operator/index.vue

30 lines
655 B
Vue
Raw Normal View History

2024-12-18 15:46:27 +08:00
<!-- 商品管理 -->
<template>
2024-12-27 15:03:48 +08:00
<view class="jy-business-operator-order">
<JyCommonHead title="商品管理" isRight>
<template v-slot:right>
<view @click="right">添加</view>
</template>
</JyCommonHead>
<view class="p16">
<JyOrderCard v-for="(item, index) in 10" type="merchandise_control"></JyOrderCard>
</view>
</view>
2024-12-18 15:46:27 +08:00
</template>
<script setup>
2024-12-27 15:03:48 +08:00
import {
ref
} from 'vue'
import {
onLoad,
onReachBottom
} from "@dcloudio/uni-app"
import JyCommonHead from '@/components/public/jy-common-head'
//顶部条件栏
import JyOrderCard from '@/components/public/jy-order-card'
2024-12-18 15:46:27 +08:00
2024-12-27 15:03:48 +08:00
onReachBottom(() => {
//
})
2024-12-18 15:46:27 +08:00
</script>