|
|
|
@ -55,8 +55,9 @@ |
|
|
|
:autosize="{ minRows: 4, maxRows: 4 }" v-model="moreResult.result" /> |
|
|
|
</div> |
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
<el-button @click="btnClear">清 除</el-button> |
|
|
|
<el-button type="primary" @click="btnOkResult">确 定</el-button> |
|
|
|
<el-button @click="dialogWinMoreResult = false">关闭</el-button> |
|
|
|
<el-button @click="dialogWinMoreResult = false">关 闭</el-button> |
|
|
|
</span> |
|
|
|
</el-dialog> |
|
|
|
</div> |
|
|
|
@ -395,6 +396,11 @@ export default { |
|
|
|
this.moreResult.result = ret |
|
|
|
}, |
|
|
|
|
|
|
|
// 清除结果值 |
|
|
|
btnClear(){ |
|
|
|
this.moreResult.result = '' |
|
|
|
}, |
|
|
|
|
|
|
|
btnOkResult() { |
|
|
|
this.doctorCheck.checkItemList[this.moreResult.index].result = this.moreResult.result |
|
|
|
this.madeTooltips(this.moreResult.index); |
|
|
|
@ -519,6 +525,11 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
// 点击时全选结果 |
|
|
|
input.addEventListener('click', (event) => { |
|
|
|
input.select() |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
|