| | |
| | | height="580px"> |
| | | <el-table-column type="selection" width="40" align="center" /> |
| | | <el-table-column label="序号" width="70" align="center" prop="newID" /> |
| | | <el-table-column label="用户名" width="70" align="center" prop="userName" /> |
| | | <el-table-column label="标题" width="120" align="center" prop="title" /> |
| | | <el-table-column label="建议内容" align="left" prop="advice" /> |
| | | <el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width" width="100px"> |
| | |
| | | <el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body :close-on-click-modal="false"> |
| | | <el-form ref="form" :model="form" label-width="80px" :inline="true"> |
| | | <el-form-item label="标题" prop="title"> |
| | | <el-input v-model="form.title" placeholder="请输入标题" style="width: 200px" /> |
| | | <el-input v-model="form.title" placeholder="请输入标题" style="width: 780px" /> |
| | | </el-form-item> |
| | | <el-form-item label="内容" prop="advice"> |
| | | <el-input v-model="form.advice" type="textarea" placeholder="请输入主要内容" style="width: 780px" /> |
| | | <el-input v-model="form.advice" type="textarea" :rows="20" placeholder="请输入主要内容" style="width: 780px" /> |
| | | </el-form-item> |
| | | </el-form> |
| | | <div slot="footer" class="dialog-footer"> |