下载记录列表修改
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2024-11-19 16:08:51 +08:00
parent 1491d7ee78
commit d9488e55df
1 changed files with 73 additions and 54 deletions

View File

@ -74,7 +74,7 @@
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleSearch"> <el-button type="primary" icon="el-icon-search" @click="handleSearch">
{{ $t("common:button:search") }} {{ $t('common:button:search') }}
</el-button> </el-button>
<!-- 重置 --> <!-- 重置 -->
<el-button <el-button
@ -82,7 +82,7 @@
icon="el-icon-refresh-left" icon="el-icon-refresh-left"
@click="handleReset" @click="handleReset"
> >
{{ $t("common:button:reset") }} {{ $t('common:button:reset') }}
</el-button> </el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -148,8 +148,8 @@
show-overflow-tooltip show-overflow-tooltip
sortable="custom" sortable="custom"
> >
<template slot-scope="scope"> <template slot-scope="scope">
{{ $fd("UserType", scope.row.UserTypeEnum) }} {{ $fd('UserType', scope.row.UserTypeEnum) }}
</template> </template>
</el-table-column> </el-table-column>
<!--检查数量---> <!--检查数量--->
@ -186,12 +186,31 @@
</el-table-column> </el-table-column>
<!--下载时间---> <!--下载时间--->
<el-table-column <el-table-column
:label="$t('trials:downloadRecord:table:DownloadTime')" :label="$t('trials:downloadRecord:table:DownloadStartTime')"
prop="DownloadTime" prop="DownloadStartTime"
min-width="90" min-width="130"
show-overflow-tooltip show-overflow-tooltip
sortable="custom" sortable="custom"
/> />
<!-- 下载结束时间 -->
<el-table-column
prop="DownloadEndTime"
min-width="130"
:label="$t('trials:downloadRecord:table:downloadEndTime')"
show-overflow-tooltip
sortable="custom"
/>
<!-- 总共用时 -->
<el-table-column
prop="UploadIntervalStr"
min-width="100"
:label="$t('trials:downloadRecord:table:totalTime')"
show-overflow-tooltip
>
<template slot-scope="scope">
{{ scope.row.UploadIntervalStr }}
</template>
</el-table-column>
</el-table> </el-table>
<!-- 分页组件 --> <!-- 分页组件 -->
<pagination <pagination
@ -205,25 +224,25 @@
</BaseContainer> </BaseContainer>
</template> </template>
<script> <script>
import { getUserTypeListByUserType } from "@/api/admin"; import { getUserTypeListByUserType } from '@/api/admin'
import { getTrialSubjectVisitDownloadList } from "@/api/inspection"; import { getTrialSubjectVisitDownloadList } from '@/api/inspection'
import BaseContainer from "@/components/BaseContainer"; import BaseContainer from '@/components/BaseContainer'
import Pagination from "@/components/Pagination"; import Pagination from '@/components/Pagination'
const searchDataDefault = () => { const searchDataDefault = () => {
return { return {
TrialId: "", TrialId: '',
SubjectCode: null, SubjectCode: null,
IP: "", IP: '',
VisitName: "", VisitName: '',
Name: "", Name: '',
BeginDownloadTime: null, BeginDownloadTime: null,
EndDownloadTime: null, EndDownloadTime: null,
Asc: false, Asc: false,
SortField: "DownloadTime", SortField: 'DownloadTime',
PageIndex: 1, PageIndex: 1,
PageSize: 20, PageSize: 20,
}; }
}; }
export default { export default {
components: { BaseContainer, Pagination }, components: { BaseContainer, Pagination },
data() { data() {
@ -234,78 +253,78 @@ export default {
total: 0, total: 0,
loading: false, loading: false,
dateValue: [], dateValue: [],
}; }
}, },
mounted() { mounted() {
this.getList(); this.getList()
this.getUserType(); this.getUserType()
}, },
methods: { methods: {
// //
getUserType() { getUserType() {
getUserTypeListByUserType(0).then((res) => { getUserTypeListByUserType(0).then((res) => {
let arr = []; let arr = []
if (this.hasPermi(["role:admin"])) { if (this.hasPermi(['role:admin'])) {
arr = [1]; arr = [1]
} }
if (this.hasPermi(["role:oa"])) { if (this.hasPermi(['role:oa'])) {
arr = [1, 2]; arr = [1, 2]
} }
if (this.hasPermi(["role:pm"])) { if (this.hasPermi(['role:pm'])) {
arr = [1, 2, 14]; arr = [1, 2, 14]
} }
this.userTypeOptions = res.Result.map((item) => { this.userTypeOptions = res.Result.map((item) => {
if (!arr.includes(item.UserTypeEnum)) { if (!arr.includes(item.UserTypeEnum)) {
return item; return item
} }
}).filter((item) => item); }).filter((item) => item)
}); })
}, },
getList() { getList() {
this.loading = true; this.loading = true
this.searchData.TrialId = this.$route.query.trialId; this.searchData.TrialId = this.$route.query.trialId
if (this.dateValue && this.dateValue[0] && this.dateValue[1]) { if (this.dateValue && this.dateValue[0] && this.dateValue[1]) {
this.searchData.BeginDownloadTime = this.$moment( this.searchData.BeginDownloadTime = this.$moment(
this.dateValue[0] this.dateValue[0]
).format("YYYY-MM-DD HH:mm:ss"); ).format('YYYY-MM-DD HH:mm:ss')
this.searchData.EndDownloadTime = this.$moment( this.searchData.EndDownloadTime = this.$moment(
this.dateValue[1] this.dateValue[1]
).format("YYYY-MM-DD HH:mm:ss"); ).format('YYYY-MM-DD HH:mm:ss')
} else { } else {
this.searchData.BeginDownloadTime = null; this.searchData.BeginDownloadTime = null
this.searchData.EndDownloadTime = null; this.searchData.EndDownloadTime = null
} }
getTrialSubjectVisitDownloadList(this.searchData) getTrialSubjectVisitDownloadList(this.searchData)
.then((res) => { .then((res) => {
this.loading = false; this.loading = false
this.list = res.Result.CurrentPageData; this.list = res.Result.CurrentPageData
this.total = res.Result.TotalCount; this.total = res.Result.TotalCount
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false
}); })
}, },
handleSearch() { handleSearch() {
this.searchData.PageIndex = 1; this.searchData.PageIndex = 1
this.getList(); this.getList()
}, },
// //
handleReset() { handleReset() {
this.searchData = searchDataDefault(); this.searchData = searchDataDefault()
this.dateValue = []; this.dateValue = []
this.getList(); this.getList()
}, },
// //
handleSortByColumn(column) { handleSortByColumn(column) {
if (column.order === "ascending") { if (column.order === 'ascending') {
this.searchData.Asc = true; this.searchData.Asc = true
} else { } else {
this.searchData.Asc = false; this.searchData.Asc = false
} }
this.searchData.SortField = column.prop; this.searchData.SortField = column.prop
this.searchData.PageIndex = 1; this.searchData.PageIndex = 1
this.getList(); this.getList()
}, },
}, },
}; }
</script> </script>