|
@@ -10,7 +10,10 @@ const props = defineProps({
|
|
|
defaultClassify: {
|
|
|
type: Array,
|
|
|
default: []
|
|
|
- }
|
|
|
+ },
|
|
|
+ defaultReport: {
|
|
|
+ type: Object
|
|
|
+ },
|
|
|
})
|
|
|
const emit = defineEmits(['close','confirm'])
|
|
|
|
|
@@ -29,9 +32,10 @@ const statusLabel = computed(() => {
|
|
|
|
|
|
const filterForm = reactive({
|
|
|
classifys: props.defaultClassify||[],
|
|
|
- status:''
|
|
|
+ status:'',
|
|
|
+ reportId: props.defaultReport.id||0
|
|
|
})
|
|
|
-const keyword=ref('')
|
|
|
+const keyword=ref(props.defaultReport.id?props.defaultReport.title:'')
|
|
|
const selectItem = ref({})
|
|
|
const listState = reactive({
|
|
|
list:[],
|
|
@@ -45,6 +49,7 @@ async function getList(){
|
|
|
CurrentIndex:listState.page,
|
|
|
PageSize:listState.pageSize,
|
|
|
Keyword:keyword.value,
|
|
|
+ ReportId: filterForm.reportId,
|
|
|
State: String(filterForm.status),
|
|
|
ClassifyIdFirst: filterForm.classifys[0]?.id,
|
|
|
ClassifyIdSecond: filterForm.classifys[1]?.id,
|
|
@@ -52,16 +57,23 @@ async function getList(){
|
|
|
})
|
|
|
if(res.Ret===200){
|
|
|
listState.loading=false
|
|
|
- if(!res.Data){
|
|
|
+ if(!res.Data.List){
|
|
|
listState.finished=true
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- listState.finished=res.Data.Paging.IsEnd
|
|
|
+ listState.finished=res.Data.Paging.Pages>=listState.pageSize;
|
|
|
const arr=res.Data.List||[]
|
|
|
listState.list=[...listState.list,...arr]
|
|
|
+
|
|
|
+
|
|
|
+ if(filterForm.reportId && listState.list.length) {
|
|
|
+ selectItem.value = listState.list[0];
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+filterForm.classifys.length && getList();
|
|
|
+
|
|
|
function onLoad(){
|
|
|
console.log('onload');
|
|
|
listState.page++
|
|
@@ -73,18 +85,23 @@ function handleSearch(){
|
|
|
showToast('请输入关键词')
|
|
|
return
|
|
|
}
|
|
|
- listState.page=1
|
|
|
- listState.list=[]
|
|
|
- listState.finished=false
|
|
|
- getList()
|
|
|
+ filterChange();
|
|
|
+}
|
|
|
+
|
|
|
+function filterChange() {
|
|
|
+ listState.page=1;
|
|
|
+ listState.list=[];
|
|
|
+ listState.finished=false;
|
|
|
+ filterForm.reportId = 0;
|
|
|
+ getList();
|
|
|
}
|
|
|
|
|
|
|
|
|
function handleCancle() {
|
|
|
- emit('close')
|
|
|
+ emit('close')
|
|
|
}
|
|
|
function handleConfirm() {
|
|
|
- handleCancle()
|
|
|
+ handleCancle()
|
|
|
emit('confirm',selectItem.value)
|
|
|
}
|
|
|
|
|
@@ -100,10 +117,7 @@ function handleShowClassify() {
|
|
|
function handleConfirmClassify(arr){
|
|
|
filterForm.classifys = arr;
|
|
|
showClassify.value=false
|
|
|
- listState.page=1
|
|
|
- listState.list=[]
|
|
|
- listState.finished=false
|
|
|
- getList()
|
|
|
+ filterChange();
|
|
|
}
|
|
|
|
|
|
|
|
@@ -123,10 +137,7 @@ function handleShowStatus() {
|
|
|
function handleConfirmStatus(e) {
|
|
|
filterForm.status = e.selectedValues[0];
|
|
|
showStatusPop.value = false;
|
|
|
- listState.page=1
|
|
|
- listState.list=[]
|
|
|
- listState.finished=false
|
|
|
- getList()
|
|
|
+ filterChange();
|
|
|
}
|
|
|
</script>
|
|
|
|
|
@@ -154,6 +165,7 @@ function handleConfirmStatus(e) {
|
|
|
placeholder="请输入报告标题"
|
|
|
v-model="keyword"
|
|
|
@search="handleSearch"
|
|
|
+ @clear="filterChange"
|
|
|
/>
|
|
|
</div>
|
|
|
|
|
@@ -206,6 +218,7 @@ function handleConfirmStatus(e) {
|
|
|
round
|
|
|
>
|
|
|
<ListClassify
|
|
|
+ :enable="1"
|
|
|
@close="showClassify=false"
|
|
|
@confirm="handleConfirmClassify"
|
|
|
/>
|