28 lines
528 B
Vue
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>
|