|
@@ -303,9 +303,16 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
isShow: this.formOptions.urgent.isShow,
|
|
|
- name: 'el-input',
|
|
|
+ name: 'el-select',
|
|
|
md: 6,
|
|
|
+ options: [
|
|
|
+ { value: "一般", label: "一般" },
|
|
|
+ { value: "急", label: "急" },
|
|
|
+ { value: "紧急", label: "紧急" }
|
|
|
+ ],
|
|
|
attributes: {
|
|
|
+ clearable: true,
|
|
|
+ filterable: true,
|
|
|
disabled: !this.formOptions.urgent.isEdit,
|
|
|
placeholder: '请输入'
|
|
|
},
|
|
@@ -317,9 +324,17 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
isShow: this.formOptions.complaint.isShow,
|
|
|
- name: 'el-input',
|
|
|
+ name: 'el-select',
|
|
|
md: 6,
|
|
|
+ options: [
|
|
|
+ { value: "特级", label: "特级" },
|
|
|
+ { value: "一级", label: "一级" },
|
|
|
+ { value: "二级", label: "二级" },
|
|
|
+ { value: "三级", label: "三级" }
|
|
|
+ ],
|
|
|
attributes: {
|
|
|
+ clearable: true,
|
|
|
+ filterable: true,
|
|
|
disabled: !this.formOptions.complaint.isEdit,
|
|
|
placeholder: '请输入'
|
|
|
},
|
|
@@ -331,9 +346,18 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
isShow: this.formOptions.evaluate.isShow,
|
|
|
- name: 'el-input',
|
|
|
+ name: 'el-select',
|
|
|
md: 6,
|
|
|
+ options: [
|
|
|
+ { value: "满意(默认)", label: "满意(默认" },
|
|
|
+ { value: "好评", label: "好评" },
|
|
|
+ { value: "满意", label: "满意" },
|
|
|
+ { value: "中评", label: "中评" },
|
|
|
+ { value: "差评", label: "差评" }
|
|
|
+ ],
|
|
|
attributes: {
|
|
|
+ clearable: true,
|
|
|
+ filterable: true,
|
|
|
disabled: !this.formOptions.evaluate.isEdit,
|
|
|
placeholder: '请输入'
|
|
|
},
|