|
@@ -216,9 +216,15 @@
|
|
|
width="1016px"
|
|
|
append-to-body
|
|
|
:close-on-click-modal="false"
|
|
|
- >
|
|
|
+ >
|
|
|
<div class="ww">
|
|
|
- <el-form ref="form" :model="form" :rules="rules" :inline="true" style="margin-left: 30px;">
|
|
|
+ <el-form
|
|
|
+ ref="form"
|
|
|
+ :model="form"
|
|
|
+ :rules="rules"
|
|
|
+ :inline="true"
|
|
|
+ style="margin-left: 30px"
|
|
|
+ >
|
|
|
<el-form-item label="年份" prop="yeardate">
|
|
|
<el-input v-model="form.yeardate" />
|
|
|
</el-form-item>
|
|
@@ -232,24 +238,30 @@
|
|
|
></quill-editor>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
- </div>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
- <el-button @click="cancel" size="btn">取 消</el-button>
|
|
|
- </div>
|
|
|
-
|
|
|
+ </div>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="cancel" size="btn">取 消</el-button>
|
|
|
+ </div>
|
|
|
</el-dialog>
|
|
|
|
|
|
<!-- 查看体检信息 -->
|
|
|
-
|
|
|
- <el-dialog
|
|
|
- title="添加体检信息"
|
|
|
- :visible.sync="openes"
|
|
|
- width="1016px"
|
|
|
- append-to-body
|
|
|
- :close-on-click-modal="false"
|
|
|
- > <div class="ee">
|
|
|
- <el-form ref="form" :model="form" :rules="rules" :inline="true" style="margin-left: 30px;">
|
|
|
+
|
|
|
+ <el-dialog
|
|
|
+ title="添加体检信息"
|
|
|
+ :visible.sync="openes"
|
|
|
+ width="1016px"
|
|
|
+ append-to-body
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ >
|
|
|
+ <div class="ee">
|
|
|
+ <el-form
|
|
|
+ ref="form"
|
|
|
+ :model="form"
|
|
|
+ :rules="rules"
|
|
|
+ :inline="true"
|
|
|
+ style="margin-left: 30px"
|
|
|
+ >
|
|
|
<el-form-item label="年份" prop="yeardate">
|
|
|
<el-input v-model="form.yeardate" />
|
|
|
</el-form-item>
|
|
@@ -263,10 +275,9 @@
|
|
|
></quill-editor>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
- </div>
|
|
|
-
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -441,6 +452,8 @@ export default {
|
|
|
const id = row.id || this.ids;
|
|
|
getExamine(id).then((response) => {
|
|
|
this.form = response.data;
|
|
|
+ this.form.yeardate = null;
|
|
|
+ this.form.checkInformation = null;
|
|
|
// this.getRenYuan(this.form.unitId);
|
|
|
this.opene = true;
|
|
|
this.title = "新增人员体检信息";
|
|
@@ -543,28 +556,28 @@ export default {
|
|
|
font: 18px;
|
|
|
}
|
|
|
::v-deep .el-input__inner {
|
|
|
- width: 200px !important;
|
|
|
+ /* width: 200px !important; */
|
|
|
height: 36px;
|
|
|
background: transparent;
|
|
|
color: #fff;
|
|
|
border: 1px solid white !important;
|
|
|
+ margin-top: -10px;
|
|
|
}
|
|
|
/* 添加体检信息 */
|
|
|
-.ww .el-form {
|
|
|
+.ww .el-form {
|
|
|
margin-bottom: 70px !important;
|
|
|
}
|
|
|
::v-deep .el-dialog__footer {
|
|
|
- margin-right: 27px !important;}
|
|
|
+ margin-right: 27px !important;
|
|
|
+}
|
|
|
/*调整表单间距 */
|
|
|
::v-deep .el-form-item__content {
|
|
|
width: 200px;
|
|
|
}
|
|
|
-.ee .el-form {
|
|
|
+.ee .el-form {
|
|
|
margin-bottom: 70px !important;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
/* 单位框背景颜色 */
|
|
|
::v-deep .vue-treeselect__control {
|
|
|
background: #004d86 !important;
|