|
|
@ -69,8 +69,7 @@ |
|
|
|
</el-row> |
|
|
|
|
|
|
|
<!-- 选择图片弹出框结束 --> |
|
|
|
<el-row :gutter="24" style="display: flex; |
|
|
|
flex-wrap: wrap;width:100%"> |
|
|
|
<el-row :gutter="24" style="display: flex;flex-wrap: wrap;width:100%"> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item label="详细内容" prop="CONTENT"> |
|
|
|
<el-input type="textarea" clearable id="textContent" placeholder="详细内容" v-model="dataForm.CONTENT" @keyup.native="keyDown($event)"></el-input> |
|
|
@ -129,9 +128,9 @@ |
|
|
|
</el-card> |
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer"> |
|
|
|
<el-button @click="dataFormSubmitHandle()" v-loading="loading" class="submitButton">确认 |
|
|
|
<el-button @click="dataFormSubmitHandle()" v-loading="loading" style="background-color: #10aac2;color:#fff;" class="submitButton">确认 |
|
|
|
</el-button> |
|
|
|
<el-button class="closeButton" @click="handleClose">取消</el-button> |
|
|
|
<el-button class="closeButton" style="background-color:#b5b5b6;color:#fff;" @click="handleClose">取消</el-button> |
|
|
|
</div> |
|
|
|
</el-dialog> |
|
|
|
</div> |
|
|
@ -143,7 +142,7 @@ import { checkIotBoardContent } from '@/api/board/vocabulary' |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
radio1: 2, |
|
|
|
radio1: 1, |
|
|
|
alignmentNum: 2, |
|
|
|
content: '', |
|
|
|
boardWidth: '', |
|
|
@ -880,4 +879,66 @@ export default { |
|
|
|
::v-deep .el-card__body { |
|
|
|
padding: 10px 0; |
|
|
|
} |
|
|
|
::v-deep .el-dialog__header { |
|
|
|
background-color: #145977; |
|
|
|
} |
|
|
|
::v-deep .el-dialog__body { |
|
|
|
padding: 5px 20px; |
|
|
|
background-color: #145977; |
|
|
|
} |
|
|
|
::v-deep .el-dialog__footer { |
|
|
|
background-color: #145977; |
|
|
|
} |
|
|
|
::v-deep .el-card { |
|
|
|
margin-top: 1vh; |
|
|
|
background-color: #145977; |
|
|
|
border: 2px solid #1d7890; |
|
|
|
} |
|
|
|
::v-deep .el-form-item__label { |
|
|
|
color: #3de8ff; |
|
|
|
} |
|
|
|
::v-deep .el-input--mini .el-input__inner { |
|
|
|
color: #fff; |
|
|
|
background-color: #096d8c; |
|
|
|
} |
|
|
|
::v-deep .el-input-number.is-controls-right .el-input-number__decrease { |
|
|
|
color: #fff; |
|
|
|
background-color: #096d8c; |
|
|
|
} |
|
|
|
::v-deep .el-dialog__title { |
|
|
|
color: #fff; |
|
|
|
} |
|
|
|
::v-deep .el-textarea__inner { |
|
|
|
color: #fff; |
|
|
|
background-color: #096d8c; |
|
|
|
border-color: #096d8c; |
|
|
|
} |
|
|
|
::v-deep .el-input-number.is-controls-right .el-input-number__decrease { |
|
|
|
border-color: transparent; |
|
|
|
} |
|
|
|
::v-deep .el-input-number.is-controls-right .el-input-number__increase { |
|
|
|
border-color: transparent; |
|
|
|
color: #fff; |
|
|
|
background-color: #096d8c; |
|
|
|
} |
|
|
|
::v-deep .el-button--medium { |
|
|
|
padding: 5px 25px; |
|
|
|
font-size: 14px; |
|
|
|
border-radius: 20px; |
|
|
|
border: transparent; |
|
|
|
} |
|
|
|
::v-deep .el-radio-button__inner { |
|
|
|
color: #ffffff; |
|
|
|
background-color: pink; |
|
|
|
border-color: #1d58a9; |
|
|
|
-webkit-box-shadow: -1px 0 0 0 #1d58a9; |
|
|
|
box-shadow: -1px 0 0 0 #1d58a9; |
|
|
|
background: linear-gradient(180deg, #005c79 0%, #009bcc 100%); |
|
|
|
border-radius: 3px 3px 3px 3px; |
|
|
|
opacity: 1; |
|
|
|
border: none !important; |
|
|
|
} |
|
|
|
::v-deep .infoBoardButton .el-radio-button--medium .el-radio-button__inner { |
|
|
|
margin: 0 3px; |
|
|
|
} |
|
|
|
</style> |
|
|
|