Commit 9767ed82 authored by 罗林杰's avatar 罗林杰

修改反馈类型

parent fa3aae0a
......@@ -2,14 +2,19 @@
<div class="app-container">
<el-form ref="queryForm" style="padding: 0 0 0 10px" :model="queryParams" :inline="true">
<el-form-item label="反馈类型" prop="feedbackType">
<el-input
<el-select
v-model="queryParams.feedbackType"
placeholder="请输入反馈类型"
clearable
:maxlength="64"
placeholder="请选择反馈类型"
size="small"
style="width: 150px"
/>
>
<el-option
v-for="dict in actions"
:key="dict.name"
:label="dict.name"
:value="dict.name"
/>
</el-select>
</el-form-item>
<el-form-item label="标题" prop="title">
<el-input
......@@ -183,6 +188,24 @@ export default {
dictValue: '0'
}
],
// 反馈类型
actions: [
{
name: '内容错误'
},
{
name: '安全问题'
},
{
name: '性能问题'
},
{
name: '功能缺陷'
},
{
name: '其他建议'
}
],
// 查询参数
queryParams: {
page: 1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment