Commit 792ccee5 by peiqiQQQ

修改

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