标签儿管理

This commit is contained in:
ZLI263
2025-12-03 08:29:05 +08:00
parent d42d236452
commit 3805684053
4 changed files with 743 additions and 151 deletions

View File

@@ -19,7 +19,7 @@
<text>刷新</text>
</view>
</view>
<scroll-view class="service-list" scroll-y>
<scroll-view class="service-list" scroll-y @scrolltolower="onReachBottom">
<view
class="service-item"
v-for="(item, index) in list"
@@ -81,6 +81,9 @@
salesName: this.salesName.trim(),
customerName: this.customerName.trim()
});
},
onReachBottom() {
this.$emit('reachBottom');
}
}
}