Compare commits
No commits in common. "8a46adf96f9da00d917ee7b6ba38b77cbd7e7835" and "14cc8ad5f5a9daad0ceec7edce244e77974c2676" have entirely different histories.
8a46adf96f
...
14cc8ad5f5
|
@ -124,12 +124,12 @@
|
|||
:active-text="$fd('FeedBackStatus', 1)"
|
||||
:inactive-text="$fd('FeedBackStatus', 0)"
|
||||
:disabled="level < 8 || !isStateChange || form.State === 1"
|
||||
@change="visitTaskId ? () => false : changeState"
|
||||
@change="changeState"
|
||||
>
|
||||
</el-switch>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" v-if="type !== 'detail' || visitTaskId">
|
||||
<div slot="footer" v-if="type !== 'detail'">
|
||||
<!-- 取消 -->
|
||||
<el-button size="small" @click.stop="cancel">
|
||||
{{ $t("feedBack:button:cancel") }}
|
||||
|
@ -138,7 +138,7 @@
|
|||
<el-button
|
||||
type="primary"
|
||||
size="small"
|
||||
@click.stop="visitTaskId ? changeState : save"
|
||||
@click.stop="save"
|
||||
:loading="loading"
|
||||
>
|
||||
{{ $t("feedBack:button:save") }}
|
||||
|
@ -290,7 +290,7 @@ export default {
|
|||
try {
|
||||
let data = {
|
||||
IdList: [this.Id],
|
||||
State: this.form.State,
|
||||
State: 1,
|
||||
};
|
||||
let res = await batchUpdateFeedBackState(data);
|
||||
if (res.IsSuccess) {
|
||||
|
|
|
@ -65,7 +65,6 @@
|
|||
<el-form-item
|
||||
:label="$t('trials:dicomCfg:form:IsTestOK')"
|
||||
prop="IsTestOK"
|
||||
style="position: relative"
|
||||
>
|
||||
<el-tag
|
||||
:type="form.IsTestOK ? 'success' : 'danger'"
|
||||
|
@ -74,6 +73,9 @@
|
|||
>
|
||||
{{ $fd("DicomTest", form.IsTestOK) }}
|
||||
</el-tag>
|
||||
</el-form-item>
|
||||
</template>
|
||||
<el-form-item>
|
||||
<!-- 测试DICOM AE -->
|
||||
<el-button
|
||||
v-if="
|
||||
|
@ -82,14 +84,10 @@
|
|||
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="
|
||||
|
|
Loading…
Reference in New Issue