影像检查查看影像查询条件
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
aafbfd075d
commit
46e7939088
|
@ -23,10 +23,10 @@
|
||||||
style="width: 140px"
|
style="width: 140px"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item of $d.modalType"
|
v-for="item of $d.Modality"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.label"
|
:label="item.value"
|
||||||
:value="item.label"
|
:value="item.value"
|
||||||
>
|
>
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
|
@ -41,6 +41,7 @@
|
||||||
:range-separator="$t('baseForm:daterange:rangeSeparator')"
|
:range-separator="$t('baseForm:daterange:rangeSeparator')"
|
||||||
:start-placeholder="$t('imageInspect:daterange:startPlaceholder')"
|
:start-placeholder="$t('imageInspect:daterange:startPlaceholder')"
|
||||||
:end-placeholder="$t('imageInspect:daterange:endPlaceholder')"
|
:end-placeholder="$t('imageInspect:daterange:endPlaceholder')"
|
||||||
|
value-format="yyyy-MM-dd HH:mm:ss"
|
||||||
:default-time="['00:00:00', '23:59:59']"
|
:default-time="['00:00:00', '23:59:59']"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
|
@ -218,12 +219,8 @@ export default {
|
||||||
});
|
});
|
||||||
data.PatientId = this.Patient.PatientId;
|
data.PatientId = this.Patient.PatientId;
|
||||||
if (this.dateValue && this.dateValue[0] && this.dateValue[1]) {
|
if (this.dateValue && this.dateValue[0] && this.dateValue[1]) {
|
||||||
data.EarliestStudyTime = this.$moment(this.dateValue[0]).format(
|
data.EarliestStudyTime = this.dateValue[0];
|
||||||
"YYYY-MM-DD HH:mm:ss"
|
data.LatestStudyTime = this.dateValue[1];
|
||||||
);
|
|
||||||
data.LatestStudyTime = this.$moment(this.dateValue[1]).format(
|
|
||||||
"YYYY-MM-DD HH:mm:ss"
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
data.EarliestStudyTime = null;
|
data.EarliestStudyTime = null;
|
||||||
data.LatestStudyTime = null;
|
data.LatestStudyTime = null;
|
||||||
|
|
Loading…
Reference in New Issue