2025-08-20 14:26:14 +08:00

28 lines
528 B
Vue

<template>
<div>
<commonBox :role="role"></commonBox>
</div>
</template>
<script>
//运营|用户 查找商品|需求
import commonBox from '@/views/customer/productMangement/commonBox/index.vue';
export default {
name: 'productList',
components: { commonBox },
data() {
return {
role:{
role_type:'customer',
audit_status:'approved,rejected',
type:'user'
}
}
},
created() {
},
}
</script>