|
|
@ -89,14 +89,14 @@ |
|
|
|
<user-info-look v-show="viewState == 2" ref="divUserInfo" @doback="resetState"/> |
|
|
|
<!-- 选择待办人 的弹出框--> |
|
|
|
<el-dialog title="选择待办人" :visible.sync="nodeDialogVisible" width="80%"> |
|
|
|
<el-form label-position="right" class="formadd" > |
|
|
|
<el-row v-show="currentLink"> |
|
|
|
<el-form> |
|
|
|
<el-row v-show="currentLink" class="borderStyle"> |
|
|
|
<el-col :span="4" class="tleftb">当前环节</el-col> |
|
|
|
<el-col :span="20" class="trightb"> |
|
|
|
<el-form-item prop="purchasingUnitName"><span>{{ current.taskName }}->{{ nextNode.name }}</span></el-form-item> |
|
|
|
<span>{{ current.taskName }}->{{ nextNode.name }}</span> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-row class="borderStyle"> |
|
|
|
<el-col :span="4" class="tleftb">意见</el-col> |
|
|
|
<el-col :span="20" class="trightb"> |
|
|
|
<el-input size="small" v-model="dialogList.comment" placeholder="审批意见" clearable ></el-input> |
|
|
@ -416,4 +416,37 @@ export default { |
|
|
|
font-size: 17px; |
|
|
|
float: right; |
|
|
|
} |
|
|
|
|
|
|
|
/deep/ .el-col-4 { |
|
|
|
text-align: right; |
|
|
|
float: left; |
|
|
|
font-size: 14px; |
|
|
|
color: #606266; |
|
|
|
line-height: 40px !important; |
|
|
|
font-weight: 600; |
|
|
|
} |
|
|
|
/deep/ .el-col-20 { |
|
|
|
text-align: left; |
|
|
|
float: left; |
|
|
|
font-size: 14px; |
|
|
|
color: #606266; |
|
|
|
line-height: 40px !important; |
|
|
|
font-weight: 600; |
|
|
|
} |
|
|
|
.lineone { |
|
|
|
border-bottom: 2px solid #e0e3eb; |
|
|
|
} |
|
|
|
.linetwo { |
|
|
|
margin-top: 10px; |
|
|
|
} |
|
|
|
.borderStyle { |
|
|
|
border: 1px solid #e0e3eb; |
|
|
|
} |
|
|
|
.trightb { |
|
|
|
border-left: 1px solid #e0e3eb; |
|
|
|
padding-left: 5px; |
|
|
|
} |
|
|
|
.tleftb { |
|
|
|
padding-right: 5px; |
|
|
|
} |
|
|
|
</style> |
|
|
|