26395
This commit is contained in:
		| @@ -74,7 +74,7 @@ | ||||
|         @onConfirm="onConfirm"> | ||||
|         <el-form ref="form" class="ai-form" :model="form" label-width="110px" label-position="right"> | ||||
|           <el-form-item label="发表意见" prop="content" style="width: 100%;" :rules="[{ required: true, message: '请发表你的观点和意见', trigger: 'blur' }]"> | ||||
|             <el-input size="small" type="textarea" :rows="5" :maxlength="140" placeholder="请发表你的观点和意见" v-model="form.content"></el-input> | ||||
|             <el-input size="small" type="textarea" :rows="5" show-word-limit :maxlength="140" placeholder="请发表你的观点和意见" v-model="form.content"></el-input> | ||||
|           </el-form-item> | ||||
|         </el-form> | ||||
|       </ai-dialog> | ||||
| @@ -113,7 +113,14 @@ | ||||
|           {prop: 'content', label: '发言内容', align: 'center'}, | ||||
|           {prop: 'suport', label: '获赞次数', align: 'center'}, | ||||
|           {prop: 'createTime', label: '发言时间', align: 'center'}, | ||||
|           {prop: 'createUserName', label: '发言人', align: 'center'}, | ||||
|           { | ||||
|             prop: 'createUserName', | ||||
|             label: '发言人', | ||||
|             align: 'center', | ||||
|             render(h, { row }) { | ||||
|               return h('span', {}, row.createUserName) | ||||
|             } | ||||
|           }, | ||||
|           {prop: 'createUserId', label: '发言身份', align: 'center', formart: v => v === this.info.createUserId ? '话事人' : '村民'} | ||||
|         ], | ||||
|         voteColConfigs: [ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user