2025-08-14 14:59:34 +08:00

27 lines
489 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:'pending'
}
}
},
created() {
},
}
</script>