mall_client/zyhs3_uniapp/pages/merchants/settleIn/industry.vue

39 lines
711 B
Vue

<style lang="scss" scoped>
.containear {
padding: 0 20rpx;
}
</style>
<template>
<view class="containear">
<u-gap height="20rpx"></u-gap>
<u-search :showAction="false" bgColor='#fff' placeholder="搜索" v-model="keyword" actionText=""></u-search>
<u-list
@scrolltolower="scrolltolower"
>
<u-list-item
v-for="(item, index) in list"
:key="index"
>
<u-cell
:title="item"
>
</u-cell>
</u-list-item>
</u-list>
</view>
</template>
<script>
export default {
data() {
return {
list: [
'食品', '租赁', '食品', '租赁','食品', '租赁', '租赁', '食品', '租赁','食品', '租赁'
]
};
}
}
</script>