Commit 78e402f8 authored by 涂伟's avatar 涂伟

fix: '手持视图新增参数审核'

parent f0a03b89
...@@ -18,7 +18,7 @@ const ProcessConfig = props => { ...@@ -18,7 +18,7 @@ const ProcessConfig = props => {
} = props; } = props;
const [showParmarModal, setShowParmarModal] = useState(false); const [showParmarModal, setShowParmarModal] = useState(false);
const [treeData, setTreeData] = useState(['FeedbackAccount', 'GisGatherProjectView']); const [treeData, setTreeData] = useState(['FeedbackAccount', 'GisGatherProjectView']);
const [paramValue, setParamValue] = useState(['一键入库', 'edit']); const [paramValue, setParamValue] = useState(['一键入库', 'edit', '审核']);
const [selectValue, setSelectValue] = useState(''); const [selectValue, setSelectValue] = useState('');
const [form] = Form.useForm(); const [form] = Form.useForm();
useEffect(() => { useEffect(() => {
......
...@@ -153,7 +153,7 @@ const AddView = props => { ...@@ -153,7 +153,7 @@ const AddView = props => {
}} }}
> >
<Select placeholder="选择视图参数" showSearch mode="multiple"> <Select placeholder="选择视图参数" showSearch mode="multiple">
{['一键入库', 'edit'].map((item, index) => ( {['一键入库', 'edit', '审核'].map((item, index) => (
<Option key={index} value={item}> <Option key={index} value={item}>
{item} {item}
</Option> </Option>
...@@ -200,7 +200,7 @@ const AddView = props => { ...@@ -200,7 +200,7 @@ const AddView = props => {
}} }}
> >
<Select placeholder="选择手持参数" showSearch> <Select placeholder="选择手持参数" showSearch>
{['一键入库', 'edit'].map((item, index) => ( {['一键入库', 'edit', '审核'].map((item, index) => (
<Option key={index} value={item}> <Option key={index} value={item}>
{item} {item}
</Option> </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