Browse Source

修改待处理项目表单验证

master
lihenian 6 years ago
parent
commit
27847a1aca
  1. 6
      src/views/modules/events/item-deal-detail-view.vue

6
src/views/modules/events/item-deal-detail-view.vue

@ -1,6 +1,6 @@
<template> <template>
<div class="project-handle"> <div class="project-handle">
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" style="width: 100%; height: 100%;"> <div>
<div class="project-detail"> <div class="project-detail">
<div class="project-detail-tip">议题详情</div> <div class="project-detail-tip">议题详情</div>
<el-form label-position="right" label-width="120px"> <el-form label-position="right" label-width="120px">
@ -68,7 +68,7 @@
</div> </div>
<div class="handle-operation"> <div class="handle-operation">
<div class="handle-operation-tip">处理操作</div> <div class="handle-operation-tip">处理操作</div>
<el-form label-width="120px" label-position="right" style="width: 720px;" :rules="dataRule"> <el-form label-width="120px" label-position="right" style="width: 720px;" :model="dataForm" :rules="dataRule">
<el-form-item label="处理:" prop="handleCategory"> <el-form-item label="处理:" prop="handleCategory">
<el-select v-model="postDataForm.handleCategory" placeholder="请选择"> <el-select v-model="postDataForm.handleCategory" placeholder="请选择">
<el-option <el-option
@ -112,7 +112,7 @@
</el-form> </el-form>
</div> </div>
</el-form> </div>
<el-dialog width="90%" title="评论" :visible.sync="innerVisible" append-to-body> <el-dialog width="90%" title="评论" :visible.sync="innerVisible" append-to-body>
<el-table :data="commentsDTOs" border style="width: 100%;"> <el-table :data="commentsDTOs" border style="width: 100%;">
<el-table-column prop="user.userName" label="发言人" header-align="center" align="center"></el-table-column> <el-table-column prop="user.userName" label="发言人" header-align="center" align="center"></el-table-column>

Loading…
Cancel
Save