| | |
| | | <el-row :gutter="35"> |
| | | <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20"> |
| | | <el-form-item label="检查内容" prop="checkContent"> |
| | | <el-input class="input-length" type="textarea" :rows="3" v-model.trim="recordForm.checkContent" placeholder="检查内容"> </el-input> |
| | | <el-input class="input-length" :disabled="true" type="textarea" :rows="3" v-model.trim="recordForm.checkContent" placeholder="检查内容"> </el-input> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | | </div> |
| | | </el-dialog> |
| | | <el-dialog :title="title" v-model="isShowSubmitDialog" width="600px"> |
| | | <el-dialog :title="title" v-model="isShowSubmitDialog" width="600px" :close-on-click-modal="false"> |
| | | <el-form :model="submitForm" ref="rectifyFormRef" size="default" label-width="120px"> |
| | | <el-row :gutter="35"> |
| | | <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20"> |
| | |
| | | <template #footer> |
| | | <span class="dialog-footer"> |
| | | <el-button @click="isShowSubmitDialog = !isShowSubmitDialog" size="default">取 消</el-button> |
| | | <el-button type="primary" @click="submitRecord" v-throttle size="default">确 实</el-button> |
| | | <el-button type="primary" @click="submitRecord" v-throttle size="default">确 定</el-button> |
| | | </span> |
| | | </template> |
| | | </el-dialog> |