ba22b4ad by lihua

隐藏准标识符

1 parent 003edf27
...@@ -189,7 +189,7 @@ ...@@ -189,7 +189,7 @@
189 <template v-if="step == 0"> 189 <template v-if="step == 0">
190 <el-button @click="cancelTask">取消</el-button> 190 <el-button @click="cancelTask">取消</el-button>
191 <el-button type="primary" 191 <el-button type="primary"
192 :disabled="formRef?.formInline?.handleType == '02' && formRef?.formInline?.dataSource == 3 && dicomStatisticsData?.progress != 100" 192 :disabled="formRef?.formInline?.handleType == '02' && formRef?.formInline?.dataSource == 3 && dicomStatisticsData?.state == 'Y'"
193 @click="changeStep(formRef?.formInline?.handleType == '02' ? 3 : 2)">下一步</el-button> 193 @click="changeStep(formRef?.formInline?.handleType == '02' ? 3 : 2)">下一步</el-button>
194 </template> 194 </template>
195 <template v-else-if="step == 1"> 195 <template v-else-if="step == 1">
...@@ -685,7 +685,7 @@ const setDataSelectFormItems = (info, isDetail = false) => { ...@@ -685,7 +685,7 @@ const setDataSelectFormItems = (info, isDetail = false) => {
685 item.default = ''; 685 item.default = '';
686 } 686 }
687 } else if (item.field == 'qualifiedIdentifier') { 687 } else if (item.field == 'qualifiedIdentifier') {
688 item.visible = info['handleType'] == '02'; 688 item.visible = info['handleType'] == '02' && info['dataSource'] != 3;
689 if (info['dataSource'] == 3) { 689 if (info['dataSource'] == 3) {
690 item.options = qualifiedIdentifierFloderList.value; 690 item.options = qualifiedIdentifierFloderList.value;
691 } 691 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!