Commit ae2eaf48 authored by 成旭东's avatar 成旭东

51哇房1.2版本

parent 25779495
Pipeline #29371 passed with stage
in 5 minutes 5 seconds
......@@ -4,6 +4,10 @@ export default {
key: 'name',
component: 'input'
}, {
name: '项目别名',
key: 'alias',
component: 'input'
}, {
name: '行政区划分名称',
key: 'region_name',
component: 'input'
......
......@@ -155,14 +155,14 @@ const DrawerForm = (props: any) => {
<FormItem
name="status"
label="开盘状态"
rules={[
{
required: true,
message: '选择开盘状态',
},
]}
// rules={[
// {
// required: true,
// message: '选择开盘状态',
// },
// ]}
>
<Select onChange={drawerChangeOpenStatus}>
<Select onChange={drawerChangeOpenStatus} disabled>
{drawerOpenTypeStatus.map((text: any, index: any) => (
<Option key={index} value={text}>{text}</Option>
))}
......@@ -542,14 +542,14 @@ const HouseOpenInfoComponent = (props: any) => {
<FormItem
name="status"
label="开盘状态"
rules={[
{
required: true,
message: '选择开盘状态',
},
]}
// rules={[
// {
// required: true,
// message: '选择开盘状态',
// },
// ]}
>
<Select onChange={changeOpenStatus}>
<Select onChange={changeOpenStatus} disabled>
{openTypeStatus.map((text: any, index: any) => (
<Option key={index} value={text}>{text}</Option>
))}
......
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