|
|
@ -164,17 +164,21 @@ |
|
|
|
<!--End 添加修改部分--> |
|
|
|
<!-- 选择待办人 的弹出框--> |
|
|
|
<el-dialog title="填写审批意见" :visible.sync="nodeDialogVisible" width="80%"> |
|
|
|
<el-form class="formaddcopy02" > |
|
|
|
<el-form class="formadd" > |
|
|
|
<el-row v-show="currentLink" style="border-top: 1px solid #e0e3eb"> |
|
|
|
<el-col :span="24"> |
|
|
|
<div class="span-sty spanTwoWidth"><span>当前环节:</span></div> |
|
|
|
<el-form-item><span class="addinputInfo addinputOne">{{ current.taskName }}->{{ nextNode.name }}</span></el-form-item> |
|
|
|
<el-col :span="4" class="tleftb"> |
|
|
|
<span>当前环节:</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="20"> |
|
|
|
<el-form-item><span>{{ current.taskName }}->{{ nextNode.name }}</span></el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<div class="span-sty spanTwoWidth"><span>意见:</span></div> |
|
|
|
<el-form-item><el-input size="small" v-model="dialogList.comment" placeholder="审批意见" class="addinputw addinputOne" clearable ></el-input></el-form-item> |
|
|
|
<el-row :class="{rowClass:!currentLink}"> |
|
|
|
<el-col :span="4" class="tleftb"> |
|
|
|
<span>意见:</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="20"> |
|
|
|
<el-form-item><el-input size="small" v-model="dialogList.comment" placeholder="审批意见" class="addinputw" type="textarea" :autosize="{ minRows: 1, maxRows: 10}" clearable ></el-input></el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<div style="text-align:center;margin-top: 20px;"> |
|
|
@ -444,5 +448,8 @@ export default { |
|
|
|
text-align: center; |
|
|
|
padding: 30px 0 20px 0; |
|
|
|
} |
|
|
|
.rowClass{ |
|
|
|
border-top: 1px solid #E0E3EB; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|
|
|
|