Commit 792ccee5 by peiqiQQQ

修改

1 parent ed3a6a9f
Showing with 11 additions and 1 deletions
......@@ -22,6 +22,7 @@
<script>
import Form from '@/components/Form.vue'
import { buildType } from '@/utils/dictionary'
export default {
components: { Form, },
props: {
......@@ -74,9 +75,18 @@ export default {
disabled: true,
},
{
label: '建设类型', // label文字
prop: 'buildType', // 字段名
element: 'el-select', // 指定elementui组件
options: buildType,
placeholder: '',
disabled: true,
},
{
label: '审核状态', // label文字
prop: 'approveState', // 字段名
element: 'el-select', // 指定elementui组件
placeholder: '',
options: [
{ label: '新建', value: '1' },
{ label: '审批中', value: '2' },
......@@ -90,7 +100,7 @@ export default {
prop: 'remark', // 字段名
type: 'textarea',
element: 'el-input', // 指定elementui组件
placeholder: '请输入内容', // elementui组件属性
placeholder: '', // elementui组件属性
span: 24,
disabled: true,
},
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!