导出更改
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2025-01-07 10:23:34 +08:00
parent be5b9efa7b
commit bae5b9c51c
1 changed files with 9 additions and 17 deletions

View File

@ -1,10 +1,5 @@
<template> <template>
<el-table <el-table v-loading="loading" :data="list" border stripe height="500">
v-loading="loading"
:data="list"
border
stripe
height="500">
<el-table-column label="" width="50"> <el-table-column label="" width="50">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.$index + 1 }} {{ scope.$index + 1 }}
@ -19,11 +14,7 @@
{{ scope.row.FileName }} {{ scope.row.FileName }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column prop="" :label="$t('common:action:action')" min-width="80">
prop=""
:label="$t('common:action:action')"
min-width="80"
>
<template slot-scope="scope"> <template slot-scope="scope">
<!-- 下载 --> <!-- 下载 -->
<el-button <el-button
@ -53,20 +44,20 @@ export default {
props: { props: {
trialReadingCriterionId: { trialReadingCriterionId: {
type: String, type: String,
required: true required: true,
}, },
data: { data: {
type: Object, type: Object,
default() { default() {
return {} return {}
} },
} },
}, },
data() { data() {
return { return {
loading: false, loading: false,
trialId: null, trialId: null,
list: [] list: [],
} }
}, },
mounted() { mounted() {
@ -83,7 +74,7 @@ export default {
this.list = res.Result this.list = res.Result
} }
this.loading = false this.loading = false
} catch(e) { } catch (e) {
console.log(e) console.log(e)
this.loading = false this.loading = false
} }
@ -140,7 +131,8 @@ export default {
}) })
break break
case 8: case 8:
getCommonJudgeRatioList_Export(searchData) searchData.ReadingExportType = 8
getCommonEvaluationList_Export(searchData)
.then((res) => {}) .then((res) => {})
.catch(() => { .catch(() => {
this.loading = false this.loading = false