阅片页面radio样式更改及病灶信息高亮更改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
e295bff859
commit
e99c4527b9
|
@ -596,6 +596,10 @@ export default {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
::v-deep .el-radio__input.is-disabled.is-checked .el-radio__inner {
|
||||||
|
background-color: #428bca;
|
||||||
|
border-color: #428bca;
|
||||||
|
}
|
||||||
|
|
||||||
.full-dialog-container{
|
.full-dialog-container{
|
||||||
::v-deep.is-fullscreen .el-dialog__body{
|
::v-deep.is-fullscreen .el-dialog__body{
|
||||||
|
|
|
@ -318,4 +318,8 @@ export default {
|
||||||
::v-deep .el-select.is-disabled .el-input__inner{
|
::v-deep .el-select.is-disabled .el-input__inner{
|
||||||
background-color: #646464a1;
|
background-color: #646464a1;
|
||||||
}
|
}
|
||||||
|
// ::v-deep .el-radio__input.is-disabled.is-checked .el-radio__inner {
|
||||||
|
// background-color: #428bca;
|
||||||
|
// border-color: #428bca;
|
||||||
|
// }
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -317,4 +317,8 @@ export default {
|
||||||
::v-deep .el-select.is-disabled .el-input__inner{
|
::v-deep .el-select.is-disabled .el-input__inner{
|
||||||
background-color: #646464a1;
|
background-color: #646464a1;
|
||||||
}
|
}
|
||||||
|
// ::v-deep .el-radio__input.is-disabled.is-checked .el-radio__inner {
|
||||||
|
// background-color: #428bca;
|
||||||
|
// border-color: #428bca;
|
||||||
|
// }
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
<template slot="title">
|
<template slot="title">
|
||||||
<div
|
<div
|
||||||
style="width:340px;position: relative;"
|
style="width:340px;position: relative;"
|
||||||
:style="{color:(activeName===table.Id+answer.RowIndex?'#ffeb3b':'#fff')}"
|
:style="{color:innerFormData[`${table.Id}_${answer.RowIndex}`].IntrahepaticLesion ?'#428bca':'#fff'}"
|
||||||
>
|
>
|
||||||
{{ getLesionName(table.OrderMark,answer.RowIndex) }}
|
{{ getLesionName(table.OrderMark,answer.RowIndex) }}
|
||||||
<!-- 未保存 -->
|
<!-- 未保存 -->
|
||||||
|
@ -101,7 +101,7 @@
|
||||||
<el-tooltip v-if="readingTaskState<2 && parseInt(innerFormData[`${table.Id}_${answer.RowIndex}`].SaveTypeEnum) ===1" class="item" effect="dark" :content="$t('trials:reading:button:incompleteInfor')" placement="bottom">
|
<el-tooltip v-if="readingTaskState<2 && parseInt(innerFormData[`${table.Id}_${answer.RowIndex}`].SaveTypeEnum) ===1" class="item" effect="dark" :content="$t('trials:reading:button:incompleteInfor')" placement="bottom">
|
||||||
<i class="el-icon-warning" style="color:#ff9800" />
|
<i class="el-icon-warning" style="color:#ff9800" />
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<div style="position: absolute;left: 50px;top: 2px;">
|
<div :style="{position: 'absolute', left: '50px', top: '2px', color: innerFormData[`${table.Id}_${answer.RowIndex}`].IntrahepaticLesion ? '#428bca' : '#fff'}">
|
||||||
<div style="font-size: 11px;width:220px;height: 30px;">
|
<div style="font-size: 11px;width:220px;height: 30px;">
|
||||||
<div
|
<div
|
||||||
v-if="innerFormData[`${table.Id}_${answer.RowIndex}`].LesionPart"
|
v-if="innerFormData[`${table.Id}_${answer.RowIndex}`].LesionPart"
|
||||||
|
@ -426,7 +426,6 @@ export default {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
console.log(this.innerFormData)
|
|
||||||
loading.close()
|
loading.close()
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e)
|
console.log(e)
|
||||||
|
|
Loading…
Reference in New Issue