28 lines
901 B
Vue
28 lines
901 B
Vue
|
<!-- 商品管理 -->
|
||
|
<template>
|
||
|
<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>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from 'vue'
|
||
|
import { onLoad } from "@dcloudio/uni-app"
|
||
|
import JyCommonHead from '@/components/public/jy-common-head'
|
||
|
//顶部条件栏
|
||
|
import JyOrderCard from '@/components/public/jy-order-card'
|
||
|
import { onReachBottom } from '@dcloudio/uni-app';
|
||
|
|
||
|
onReachBottom(() => {
|
||
|
console.log('====================================');
|
||
|
console.log("加载到底了通知刷新");
|
||
|
console.log('====================================');
|
||
|
})
|
||
|
</script>
|