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