diff --git a/src/views/trials/trials-panel/trial-summary/download-monitor/index.vue b/src/views/trials/trials-panel/trial-summary/download-monitor/index.vue index e3b7b0aa..3511ce4e 100644 --- a/src/views/trials/trials-panel/trial-summary/download-monitor/index.vue +++ b/src/views/trials/trials-panel/trial-summary/download-monitor/index.vue @@ -17,11 +17,7 @@ - + + + + + { Ip: null, ImageType: null, UserType: null, - Name:null + Name: null, } } export default { diff --git a/src/views/trials/trials-panel/trial-summary/push-record/index.vue b/src/views/trials/trials-panel/trial-summary/push-record/index.vue index b8dd38a7..840b46f0 100644 --- a/src/views/trials/trials-panel/trial-summary/push-record/index.vue +++ b/src/views/trials/trials-panel/trial-summary/push-record/index.vue @@ -65,7 +65,7 @@ - {{ $t("common:button:search") }} + {{ $t('common:button:search') }} - {{ $t("common:button:reset") }} + {{ $t('common:button:reset') }} @@ -176,6 +176,17 @@ show-overflow-tooltip sortable="custom" /> + + + + { return { CallingAE: null, @@ -207,9 +218,9 @@ const searchDataDefault = () => { PageIndex: 1, PageSize: 20, Asc: false, - SortField: "StartTime", - }; -}; + SortField: 'StartTime', + } +} export default { components: { BaseContainer, Pagination }, data() { @@ -222,14 +233,14 @@ export default { datetimerange: [], calledAEList: [], callingAEList: [], - }; + } }, created() { - this.getCalledAEList(); - this.getCallingAEList(); + this.getCalledAEList() + this.getCallingAEList() }, mounted() { - this.getList(); + this.getList() }, methods: { // 获取接收端AE列表 @@ -237,13 +248,13 @@ export default { try { let params = { TrialId: this.$route.query.trialId, - }; - let res = await getDicomCalledAEList(params); + } + let res = await getDicomCalledAEList(params) if (res.IsSuccess) { - this.calledAEList = res.Result; + this.calledAEList = res.Result } } catch (err) { - console.log(err); + console.log(err) } }, // 获取发送端端AE列表 @@ -251,60 +262,60 @@ export default { try { let params = { TrialId: this.$route.query.trialId, - }; - let res = await getDicomCallingAEList(params); + } + let res = await getDicomCallingAEList(params) if (res.IsSuccess) { - this.callingAEList = res.Result; + this.callingAEList = res.Result } } catch (err) { - console.log(err); + console.log(err) } }, getList() { - this.loading = true; - this.searchData.TrialId = this.$route.query.trialId; + this.loading = true + this.searchData.TrialId = this.$route.query.trialId getSCPImageUploadList(this.searchData) .then((res) => { - this.loading = false; - this.list = res.Result.CurrentPageData; - this.total = res.Result.TotalCount; + this.loading = false + this.list = res.Result.CurrentPageData + this.total = res.Result.TotalCount }) .catch(() => { - this.loading = false; - }); + this.loading = false + }) }, handleDatetimeChange(val) { if (val) { - this.searchData.StartTime = val[0]; - this.searchData.EndTime = val[1]; + this.searchData.StartTime = val[0] + this.searchData.EndTime = val[1] } else { - this.searchData.StartTime = ""; - this.searchData.EndTime = ""; + this.searchData.StartTime = '' + this.searchData.EndTime = '' } }, handleSearch() { - this.searchData.PageIndex = 1; - this.getList(); + this.searchData.PageIndex = 1 + this.getList() }, // 重置列表查询 handleReset() { - this.datetimerange = null; - this.handleDatetimeChange(); - this.searchData = searchDataDefault(); - this.getList(); + this.datetimerange = null + this.handleDatetimeChange() + this.searchData = searchDataDefault() + this.getList() }, // 排序 handleSortByColumn(column) { - if (column.order === "ascending") { - this.searchData.Asc = true; + if (column.order === 'ascending') { + this.searchData.Asc = true } else { - this.searchData.Asc = false; + this.searchData.Asc = false } - this.searchData.SortField = column.prop; - this.searchData.PageIndex = 1; - this.getList(); + this.searchData.SortField = column.prop + this.searchData.PageIndex = 1 + this.getList() }, }, -}; +} \ No newline at end of file diff --git a/src/views/trials/trials-panel/trial-summary/upload-monitor/index.vue b/src/views/trials/trials-panel/trial-summary/upload-monitor/index.vue index 41242f73..8762aa25 100644 --- a/src/views/trials/trials-panel/trial-summary/upload-monitor/index.vue +++ b/src/views/trials/trials-panel/trial-summary/upload-monitor/index.vue @@ -5,9 +5,14 @@ - + - + @@ -38,11 +46,7 @@ > {{ item.VisitName }} - + @@ -50,33 +54,70 @@ - - + + - - + + + + + {{ $t('common:button:search') }} - + {{ $t('common:button:reset') }} - + {{ $t('common:button:export') }} @@ -84,13 +125,13 @@ -
-
- {{$t('trials:uploadDicomList:table:FailedNumber')}}: {{lookText.Failed.length}} - {{$t('trials:uploadDicomList:table:ExistedNumber')}}: {{lookText.Existed.length}} - {{$t('trials:uploadDicomList:table:UploadedNumber')}}: {{lookText.Uploaded.length}} +
+
+ {{ $t('trials:uploadDicomList:table:FailedNumber') }}: + {{ lookText.Failed.length }} + {{ $t('trials:uploadDicomList:table:ExistedNumber') }}: + {{ lookText.Existed.length }} + {{ $t('trials:uploadDicomList:table:UploadedNumber') }}: + {{ lookText.Uploaded.length }}
-
-
{{$t('trials:uploadDicomList:table:Failed')}}:
+
+
+ {{ $t('trials:uploadDicomList:table:Failed') }}: +
-
{{item}}
+
{{ item }}
-
-
{{$t('trials:uploadDicomList:table:Existed')}}:
+
+
+ {{ $t('trials:uploadDicomList:table:Existed') }}: +
-
{{item}}
+
{{ item }}
-
-
{{$t('trials:uploadDicomList:table:Uploaded')}}:
+
+
+ {{ $t('trials:uploadDicomList:table:Uploaded') }}: +
-
{{item}}
+
{{ item }}
@@ -326,28 +370,34 @@