| | |
| | | :close-on-click-modal="false" |
| | | > |
| | | <div class="detail-container"> |
| | | <div class="detail-cell"> |
| | | <div class="detail-cell-reject"> |
| | | <span class="cell-label">拒绝原因:</span> |
| | | <el-input v-model="reasonForRejection" style="width: 380px" type="textarea" :rows="4" placeholder="请输入" /> |
| | | <el-input v-model="reasonForRejection" style="width: 380px" class="gd-input-text" type="textarea" :rows="4" placeholder="请输入" /> |
| | | </div> |
| | | </div> |
| | | <template #footer> |
| | | <el-button class="save-btn" color="#4C34FF" @click="handleConfirm">确认</el-button> |
| | | <el-button class="" color="#4C34FF" @click="handleConfirm">确认</el-button> |
| | | </template> |
| | | </el-dialog> |
| | | </template> |
| | |
| | | </script> |
| | | |
| | | <style scoped lang="scss"> |
| | | .detail-container { |
| | | padding: 20px; |
| | | display: flex; |
| | | align-items: flex-start; |
| | | gap: 30px; |
| | | .detail-cell { |
| | | display: flex; |
| | | justify-content: center; |
| | | .cell-label { |
| | | min-width: 80px; |
| | | flex-shrink: 0; |
| | | } |
| | | :deep(.el-textarea__inner) { |
| | | height: 100px !important; |
| | | } |
| | | .detail-cell-reject { |
| | | display: flex; |
| | | justify-content: flex-start; |
| | | } |
| | | } |
| | | </style> |