历史融合弹窗添加取消事件
parent
0a56880080
commit
f34de6073f
|
@ -136,7 +136,7 @@
|
|||
</div>
|
||||
<el-form-item style="text-align:right;">
|
||||
<!-- 取消 -->
|
||||
<el-button size="mini" @click="fusionSeries.visible = false">{{ $t('common:button:cancel') }}</el-button>
|
||||
<el-button size="mini" @click="handleCancel">{{ $t('common:button:cancel') }}</el-button>
|
||||
<!-- 确认 -->
|
||||
<el-button
|
||||
type="primary"
|
||||
|
@ -255,6 +255,9 @@ export default {
|
|||
this.petctWindow = window.open(routeData.href, '_blank')
|
||||
this.$emit('close')
|
||||
},
|
||||
handleCancel(){
|
||||
this.$emit('close')
|
||||
},
|
||||
handleTaskIdChange(v) {
|
||||
var idx = this.taskList.findIndex(i => i.VisitTaskId === v)
|
||||
this.studyList = idx > -1 ? this.taskList[idx].StudyInfoList : []
|
||||
|
|
Loading…
Reference in New Issue