|
@@ -313,7 +313,7 @@
|
|
|
></el-table-column>
|
|
|
<el-table-column label="IP" prop="ip" width="125">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ showShortIpsStr(scope.row.ip, ";") }}
|
|
|
+ {{ showShortIpsStr(scope.row.ip, ",") }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -400,7 +400,7 @@
|
|
|
:visible.sync="dialogFormVisible"
|
|
|
@closed="auditDialogClosed"
|
|
|
>
|
|
|
- <el-form ref="auditForm" :model="auditForm">
|
|
|
+ <el-form ref="auditForm" :model="auditForm" label-width="90px">
|
|
|
<el-form-item
|
|
|
label="违纪类型"
|
|
|
prop="illegallyTypeId"
|
|
@@ -446,7 +446,11 @@
|
|
|
:visible.sync="dialogBatchFormVisible"
|
|
|
@closed="batchAuditDialogClosed"
|
|
|
>
|
|
|
- <el-form ref="batchAuditForm" :model="batchAuditForm">
|
|
|
+ <el-form
|
|
|
+ ref="batchAuditForm"
|
|
|
+ :model="batchAuditForm"
|
|
|
+ label-width="90px"
|
|
|
+ >
|
|
|
<el-form-item
|
|
|
label="违纪类型"
|
|
|
prop="illegallyTypeId"
|
|
@@ -1041,3 +1045,11 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style scoped src="../style/common.css"></style>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.el-form-item {
|
|
|
+ margin-bottom: 15px !important;
|
|
|
+ :deep(.el-form-item__label) {
|
|
|
+ margin-bottom: 2px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|