|
@@ -195,11 +195,12 @@
|
|
|
|
|
|
|
|
|
<!-- 派发事件弹窗 -->
|
|
|
- <el-dialog :visible.sync="dialogVisible" title="派发任务" width="800px">
|
|
|
+ <el-dialog :visible.sync="dialogVisible" title="派发任务" width="800px" class="form-style">
|
|
|
+ <div style="padding:20px 30px;">
|
|
|
<el-form :model="form">
|
|
|
<el-row :gutter="24">
|
|
|
<el-col :span="24">
|
|
|
- <el-form-item label="选择部门">
|
|
|
+ <el-form-item label="选择部门" class="xzbm">
|
|
|
<DepartmentSelect
|
|
|
ref="departmentSelect"
|
|
|
:deptOptions="deptOptions"
|
|
@@ -212,7 +213,7 @@
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col>
|
|
|
- <el-form-item label="选择人员">
|
|
|
+ <el-form-item label="选择人员" class="xzbm">
|
|
|
<EnforcementUserSelect
|
|
|
ref="enforcementUserSelect"
|
|
|
:userList="userList"
|
|
@@ -225,7 +226,7 @@
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col>
|
|
|
- <el-form-item v-if="useredList != null" label="主办人员">
|
|
|
+ <el-form-item v-if="useredList != null" label="主办人员" class="xzbm">
|
|
|
<el-select v-model="mainPerson" placeholder="请选择" @change="seeMainPerson">
|
|
|
<el-option
|
|
|
v-for="user in useredList"
|
|
@@ -238,6 +239,7 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
+ </div>
|
|
|
<div slot="footer">
|
|
|
<el-button @click="dialogVisible = false">取消</el-button>
|
|
|
<el-button type="primary" @click="handleDispatch">确定</el-button>
|
|
@@ -812,4 +814,7 @@ export default {
|
|
|
.tbfj .el-form-item__label{
|
|
|
width: 68px !important;
|
|
|
}
|
|
|
+.xzbm .el-form-item__content,.xzbm .el-form-item__content .el-cascader{
|
|
|
+ width: 100% !important;
|
|
|
+}
|
|
|
</style>
|