|
@@ -120,7 +120,7 @@
|
|
|
|
|
|
<script>
|
|
|
import store from '@/store'
|
|
|
-import { handlerAsk, getQAHistoryList, getGroup, getQAHistoryListAll, getQAHistoryDetail, removeQAHistory } from '@/api/als/intelligentQA'
|
|
|
+import { handlerAsk, getQAHistoryList, getGroup, getQAHistoryDetail, removeQAHistory, getQAHistoryListName } from '@/api/als/intelligentQA'
|
|
|
import graphECharts from '@/views/als/components/Charts/graph.vue'
|
|
|
import { getListByIdsApi } from '@/api/als/oss'
|
|
|
//引入VueOfficeDocx组件
|
|
@@ -218,11 +218,10 @@ export default {
|
|
|
this.loading = true
|
|
|
const { pageSize, pageNum } = this.historyRequset
|
|
|
try {
|
|
|
- const { data } = await getQAHistoryList({ pageSize, pageNum })
|
|
|
+ const { data } = await getQAHistoryListName({ pageSize, pageNum })
|
|
|
this.historyRequset.total = data.total
|
|
|
this.historyData = data.list
|
|
|
this.loading = false
|
|
|
- // console.log('this.historyData', this.historyData)
|
|
|
} catch (error) {}
|
|
|
},
|
|
|
|