部分问题修复
parent
55cc1492b6
commit
b9fe7d20ce
|
@ -3,7 +3,10 @@
|
|||
<div ref="leftContainer" class="left">
|
||||
<el-form :inline="true">
|
||||
<!--AE Title-->
|
||||
<el-form-item label="AE Title" prop="CalledAE">
|
||||
<el-form-item
|
||||
:label="$t('system:dicom:search:AETitle')"
|
||||
prop="CalledAE"
|
||||
>
|
||||
<el-input
|
||||
v-model="searchData.CalledAE"
|
||||
style="width: 140px"
|
||||
|
@ -11,11 +14,11 @@
|
|||
/>
|
||||
</el-form-item>
|
||||
<!--IP-->
|
||||
<el-form-item label="IP" prop="IP">
|
||||
<el-form-item :label="$t('system:dicom:search:IP')" prop="IP">
|
||||
<el-input v-model="searchData.IP" style="width: 140px" clearable />
|
||||
</el-form-item>
|
||||
<!--Port-->
|
||||
<el-form-item label="Port" prop="Port">
|
||||
<el-form-item :label="$t('system:dicom:search:Port')" prop="Port">
|
||||
<el-input v-model="searchData.Port" style="width: 140px" clearable />
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
|
@ -41,41 +44,41 @@
|
|||
>
|
||||
<!--AE Title-->
|
||||
<el-table-column
|
||||
label="AE Title"
|
||||
:label="$t('system:dicom:table:AETitle')"
|
||||
prop="CalledAE"
|
||||
min-width="120"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<!--IP-->
|
||||
<el-table-column
|
||||
label="IP"
|
||||
:label="$t('system:dicom:table:IP')"
|
||||
prop="IP"
|
||||
min-width="120"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<!--Port-->
|
||||
<el-table-column
|
||||
label="Port"
|
||||
:label="$t('system:dicom:table:Port')"
|
||||
prop="Port"
|
||||
min-width="120"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<!--Modality-->
|
||||
<el-table-column
|
||||
label="Modality"
|
||||
:label="$t('system:dicom:table:Modality')"
|
||||
prop="Modality"
|
||||
min-width="120"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<!--Description-->
|
||||
<el-table-column
|
||||
label="Description"
|
||||
:label="$t('system:dicom:table:Description')"
|
||||
prop="Description"
|
||||
min-width="120"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<el-table-column
|
||||
label="actions"
|
||||
:label="$t('system:dicom:table:action')"
|
||||
fixed="right"
|
||||
prop="UserTypeShortName"
|
||||
show-overflow-tooltip
|
||||
|
@ -86,7 +89,7 @@
|
|||
type="text"
|
||||
v-hasPermi="['system:dicom:edit']"
|
||||
@click="openDialog('edit', scope.row)"
|
||||
>编辑</el-button
|
||||
>{{ $t("system:dicom:table:edit") }}</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
|
|
|
@ -122,6 +122,7 @@ export default {
|
|||
PurchaseDuration: null,
|
||||
TrialCode: null,
|
||||
TrialId: null,
|
||||
HospitalCode: null,
|
||||
},
|
||||
};
|
||||
},
|
||||
|
@ -159,6 +160,7 @@ export default {
|
|||
CriterionTypeList: this.data.CriterionTypeList,
|
||||
CreateUserId: this.data.CreateUserId,
|
||||
AuthorizationDeadLineDate: null,
|
||||
HospitalCode: this.data.HospitalCode,
|
||||
};
|
||||
let res = await getTrialActivationCode(params);
|
||||
if (res.IsSuccess) {
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
>
|
||||
</el-form-item>
|
||||
<div v-if="isActivate">
|
||||
<p>{{ $t("trials:activate:Message") }}</p>
|
||||
<p>{{ $t("trials:activate:Message") }}</p>
|
||||
<!-- 单位名称 -->
|
||||
<el-form-item
|
||||
:label="$t('trials:trials-list:activate:organizationName')"
|
||||
|
@ -184,6 +184,7 @@ export default {
|
|||
HospitalName: null,
|
||||
CriterionTypeList: [],
|
||||
CreateUserId: null,
|
||||
HospitalCode: null,
|
||||
AuthorizationDeadLineDate: null,
|
||||
},
|
||||
ActivateData: {
|
||||
|
@ -193,6 +194,7 @@ export default {
|
|||
HospitalName: null,
|
||||
CriterionTypeList: [],
|
||||
CreateUserId: null,
|
||||
HospitalCode: null,
|
||||
AuthorizationDeadLineDate: null,
|
||||
},
|
||||
btnLoading: false,
|
||||
|
@ -260,6 +262,7 @@ export default {
|
|||
HospitalName: this.form.HospitalName,
|
||||
CriterionTypeList: this.form.CriterionTypeList,
|
||||
CreateUserId: this.form.CreateUserId,
|
||||
HospitalCode: this.form.HospitalCode,
|
||||
};
|
||||
try {
|
||||
let res = await getTrialAuthorizationCode(params);
|
||||
|
|
|
@ -245,7 +245,7 @@ export default {
|
|||
return (this.IsZhiZhunDisabled = true);
|
||||
}
|
||||
}
|
||||
this.form.IsZhiZhun = null;
|
||||
this.form.IsZhiZhun = false;
|
||||
this.form.OrganizationName = null;
|
||||
this.IsZhiZhunDisabled = false;
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue