|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="service-provider-review">
|
|
|
+ <BsPageWrapper>
|
|
|
<bs-table v-bind="tableOptions">
|
|
|
<template #searchRight>
|
|
|
<div>
|
|
|
@@ -9,7 +9,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</bs-table>
|
|
|
- </div>
|
|
|
+ </BsPageWrapper>
|
|
|
</template>
|
|
|
<script setup lang="jsx">
|
|
|
import { ref, reactive, onMounted, nextTick } from "vue"
|
|
|
@@ -55,7 +55,7 @@ const {
|
|
|
getTablePropsValue: getValue,
|
|
|
} = useBsTable({
|
|
|
tableOptions: {
|
|
|
- url: '/supports/provider/queryPage',
|
|
|
+ // url: '/supports/provider/queryPage',
|
|
|
gridOptions: {
|
|
|
loading: false,
|
|
|
columns: [
|
|
|
@@ -165,8 +165,8 @@ const {
|
|
|
},
|
|
|
},
|
|
|
],
|
|
|
+ data:generateMockData(),
|
|
|
},
|
|
|
- data:generateMockData(),
|
|
|
searchConfig: {
|
|
|
enabled: true,
|
|
|
fieldSpan: 4,
|
|
|
@@ -198,15 +198,6 @@ const {
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
- pagerConfig: {
|
|
|
- enabled: true,
|
|
|
- pageSize: 10,
|
|
|
- pageNum: 1,
|
|
|
- total: 0,
|
|
|
- // isFixed: false
|
|
|
- },
|
|
|
- toolbarConfig: {
|
|
|
- },
|
|
|
tableSearchBeforeBiz() {
|
|
|
const searchParams = getValue('searchConfig.data');
|
|
|
setValue('searchConfig.data', { ...searchParams, bizModel: 'INTERVIEW' });
|