|
|
@ -6,7 +6,7 @@ |
|
|
<el-table-column prop="result" label="结果" min-width="200"> |
|
|
<el-table-column prop="result" label="结果" min-width="200"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div style="display: flex;"> |
|
|
<div style="display: flex;"> |
|
|
<el-autocomplete style="width: 100%;" type="textarea" v-model="scope.row.result" placeholder="请输入结果值" |
|
|
|
|
|
|
|
|
<el-autocomplete style="width: 100%;font: 14px 'Microsoft YaHei';" type="textarea" v-model="scope.row.result" placeholder="请输入结果值" |
|
|
:disabled="rowResultDisabled(scope.row)" :autosize="{ minRows: 1, maxRows: 10 }" :trigger-on-focus="false" |
|
|
:disabled="rowResultDisabled(scope.row)" :autosize="{ minRows: 1, maxRows: 10 }" :trigger-on-focus="false" |
|
|
:fetch-suggestions="querySearch" :data-lineModeFlag="scope.row.lineModeFlag" |
|
|
:fetch-suggestions="querySearch" :data-lineModeFlag="scope.row.lineModeFlag" |
|
|
@input="madeTooltips(scope.$index); computeFun(scope.$index)" v-bind:class="scope.row.class"> |
|
|
@input="madeTooltips(scope.$index); computeFun(scope.$index)" v-bind:class="scope.row.class"> |
|
|
@ -34,14 +34,14 @@ |
|
|
<div style="overflow-y:auto; height:300px;width:100%;display: flex;flex-wrap: wrap;align-content: flex-start;"> |
|
|
<div style="overflow-y:auto; height:300px;width:100%;display: flex;flex-wrap: wrap;align-content: flex-start;"> |
|
|
<div v-for="item in moreResult.data" :key="item.id" style="margin: 5px;cursor:pointer;" |
|
|
<div v-for="item in moreResult.data" :key="item.id" style="margin: 5px;cursor:pointer;" |
|
|
@click="clickResult(item)" @dblclick="dblclickResult(item)"> |
|
|
@click="clickResult(item)" @dblclick="dblclickResult(item)"> |
|
|
<el-tag size="samll" style="color: #303133;">{{ item.result }}</el-tag> |
|
|
|
|
|
|
|
|
<el-tag size="samll" style="padding: 0 3px;height: 24px;line-height: 24px;font-size: 14px; color: #303133;background-color: white;">{{ item.result }}</el-tag> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div>特殊符号:</div> |
|
|
<div>特殊符号:</div> |
|
|
<div style="overflow-y:auto; width:100%;display: flex;flex-wrap: wrap;align-content: flex-start;"> |
|
|
<div style="overflow-y:auto; width:100%;display: flex;flex-wrap: wrap;align-content: flex-start;"> |
|
|
<div v-for="item in symbols" :key="item.id" style="margin: 1px; 2px;cursor:pointer;" |
|
|
<div v-for="item in symbols" :key="item.id" style="margin: 1px; 2px;cursor:pointer;" |
|
|
@click="insertSymbols(item.displayName)"> |
|
|
@click="insertSymbols(item.displayName)"> |
|
|
<el-tag style="padding: 0 3px;height: 24px;line-height: 24px;font-size: 15px;color: #303133;"> |
|
|
|
|
|
|
|
|
<el-tag style="padding: 0 3px;height: 24px;line-height: 24px;font-size: 15px;color: #303133;background-color: white;"> |
|
|
{{ item.displayName }} |
|
|
{{ item.displayName }} |
|
|
</el-tag> |
|
|
</el-tag> |
|
|
</div> |
|
|
</div> |
|
|
@ -596,60 +596,70 @@ export default { |
|
|
::v-deep .tipsNormal .el-textarea__inner { |
|
|
::v-deep .tipsNormal .el-textarea__inner { |
|
|
background-color: v-bind("tipsNormal.backgroundColor") !important; |
|
|
background-color: v-bind("tipsNormal.backgroundColor") !important; |
|
|
color: v-bind("tipsNormal.color") !important; |
|
|
color: v-bind("tipsNormal.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*错误*/ |
|
|
/*错误*/ |
|
|
::v-deep .tipsError .el-textarea__inner { |
|
|
::v-deep .tipsError .el-textarea__inner { |
|
|
background-color: v-bind("tipsError.backgroundColor") !important; |
|
|
background-color: v-bind("tipsError.backgroundColor") !important; |
|
|
color: v-bind("tipsError.color") !important; |
|
|
color: v-bind("tipsError.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*阴性 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
/*阴性 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
::v-deep .tipsNegative .el-textarea__inner { |
|
|
::v-deep .tipsNegative .el-textarea__inner { |
|
|
background-color: v-bind("tipsNegative.backgroundColor") !important; |
|
|
background-color: v-bind("tipsNegative.backgroundColor") !important; |
|
|
color: v-bind("tipsNegative.color") !important; |
|
|
color: v-bind("tipsNegative.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*弱阳性 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
/*弱阳性 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
::v-deep .tipsLowPositive .el-textarea__inner { |
|
|
::v-deep .tipsLowPositive .el-textarea__inner { |
|
|
background-color: v-bind("tipsLowPositive.backgroundColor") !important; |
|
|
background-color: v-bind("tipsLowPositive.backgroundColor") !important; |
|
|
color: v-bind("tipsLowPositive.color") !important; |
|
|
color: v-bind("tipsLowPositive.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*阳性 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
/*阳性 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
::v-deep .tipsPositive .el-textarea__inner { |
|
|
::v-deep .tipsPositive .el-textarea__inner { |
|
|
background-color: v-bind("tipsPositive.backgroundColor") !important; |
|
|
background-color: v-bind("tipsPositive.backgroundColor") !important; |
|
|
color: v-bind("tipsPositive.color") !important; |
|
|
color: v-bind("tipsPositive.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*偏低 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
/*偏低 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
::v-deep .tipsLow .el-textarea__inner { |
|
|
::v-deep .tipsLow .el-textarea__inner { |
|
|
background-color: v-bind("tipsLow.backgroundColor") !important; |
|
|
background-color: v-bind("tipsLow.backgroundColor") !important; |
|
|
color: v-bind("tipsLow.color") !important; |
|
|
color: v-bind("tipsLow.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*偏高 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
/*偏高 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
::v-deep .tipsHigh .el-textarea__inner { |
|
|
::v-deep .tipsHigh .el-textarea__inner { |
|
|
background-color: v-bind("tipsHigh.backgroundColor") !important; |
|
|
background-color: v-bind("tipsHigh.backgroundColor") !important; |
|
|
color: v-bind("tipsHigh.color") !important; |
|
|
color: v-bind("tipsHigh.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*超低 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
/*超低 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
::v-deep .tipsSuperLow .el-textarea__inner { |
|
|
::v-deep .tipsSuperLow .el-textarea__inner { |
|
|
background-color: v-bind("tipsSuperLow.backgroundColor") !important; |
|
|
background-color: v-bind("tipsSuperLow.backgroundColor") !important; |
|
|
color: v-bind("tipsSuperLow.color") !important; |
|
|
color: v-bind("tipsSuperLow.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*超高 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
/*超高 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
::v-deep .tipsSuperHigh .el-textarea__inner { |
|
|
::v-deep .tipsSuperHigh .el-textarea__inner { |
|
|
background-color: v-bind("tipsSuperHigh.backgroundColor") !important; |
|
|
background-color: v-bind("tipsSuperHigh.backgroundColor") !important; |
|
|
color: v-bind("tipsSuperHigh.color") !important; |
|
|
color: v-bind("tipsSuperHigh.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/*文字性危及值 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
/*文字性危及值 v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'") */ |
|
|
::v-deep .tipsSuper .el-textarea__inner { |
|
|
::v-deep .tipsSuper .el-textarea__inner { |
|
|
background-color: v-bind("tipsSuper.backgroundColor") !important; |
|
|
background-color: v-bind("tipsSuper.backgroundColor") !important; |
|
|
color: v-bind("tipsSuper.color") !important; |
|
|
color: v-bind("tipsSuper.color") !important; |
|
|
|
|
|
font-family: "Microsoft YaHei"; |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
|
|
|
|
|
|
|