Browse Source

修改待处理项目表单验证

master
lihenian 6 years ago
parent
commit
9fecb7c257
  1. 6
      src/views/modules/events/issue-process-detail-view.vue
  2. 6
      src/views/modules/events/issue-review-detail-view.vue

6
src/views/modules/events/issue-process-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">
@ -55,7 +55,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;" > <el-form label-width="120px" label-position="right" style="width: 720px;" :model="dataForm" :rules="dataRule">
<el-form-item label="处理:" prop="state"> <el-form-item label="处理:" prop="state">
<el-select v-model="dataForm.state" placeholder="请选择"> <el-select v-model="dataForm.state" placeholder="请选择">
<el-option <el-option
@ -75,7 +75,7 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
</el-form> </div>
</div> </div>
</template> </template>

6
src/views/modules/events/issue-review-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">
@ -34,7 +34,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;"> <el-form label-width="120px" label-position="right" style="width: 720px;" :model="dataForm" :rules="dataRule">
<el-form-item label="审核:" prop="eventState"> <el-form-item label="审核:" prop="eventState">
<el-radio v-model="dataForm.eventState" label="4">审核通过</el-radio> <el-radio v-model="dataForm.eventState" label="4">审核通过</el-radio>
<el-radio v-model="dataForm.eventState" label="2">驳回</el-radio> <el-radio v-model="dataForm.eventState" label="2">驳回</el-radio>
@ -59,7 +59,7 @@
</el-form> </el-form>
</div> </div>
</el-form> </div>
</div> </div>
</template> </template>

Loading…
Cancel
Save