Compare commits

...

2 Commits

Author SHA1 Message Date
DESKTOP-6C3NK6N\WXS 8a46adf96f 阅片跟踪反馈弹窗添加确认取消
continuous-integration/drone/push Build is passing Details
2024-08-02 10:40:20 +08:00
DESKTOP-6C3NK6N\WXS 57f470e219 AE的状态测试按钮调整 2024-08-02 10:29:51 +08:00
2 changed files with 18 additions and 16 deletions

View File

@ -124,12 +124,12 @@
:active-text="$fd('FeedBackStatus', 1)"
:inactive-text="$fd('FeedBackStatus', 0)"
:disabled="level < 8 || !isStateChange || form.State === 1"
@change="changeState"
@change="visitTaskId ? () => false : changeState"
>
</el-switch>
</el-form-item>
</el-form>
<div slot="footer" v-if="type !== 'detail'">
<div slot="footer" v-if="type !== 'detail' || visitTaskId">
<!-- 取消 -->
<el-button size="small" @click.stop="cancel">
{{ $t("feedBack:button:cancel") }}
@ -138,7 +138,7 @@
<el-button
type="primary"
size="small"
@click.stop="save"
@click.stop="visitTaskId ? changeState : save"
:loading="loading"
>
{{ $t("feedBack:button:save") }}
@ -290,7 +290,7 @@ export default {
try {
let data = {
IdList: [this.Id],
State: 1,
State: this.form.State,
};
let res = await batchUpdateFeedBackState(data);
if (res.IsSuccess) {

View File

@ -65,6 +65,7 @@
<el-form-item
:label="$t('trials:dicomCfg:form:IsTestOK')"
prop="IsTestOK"
style="position: relative"
>
<el-tag
:type="form.IsTestOK ? 'success' : 'danger'"
@ -73,9 +74,6 @@
>
{{ $fd("DicomTest", form.IsTestOK) }}
</el-tag>
</el-form-item>
</template>
<el-form-item>
<!-- 测试DICOM AE -->
<el-button
v-if="
@ -84,10 +82,14 @@
form.IsPACSConnect
"
type="primary"
style="position: absolute; right: 100px; top: 0"
@click.stop="testSCPServerConnect"
>
{{ $t("common:button:DicomTest") }}
</el-button>
</el-form-item>
</template>
<el-form-item>
<!-- 保存 -->
<el-button
v-if="