Commit 64559388 authored by 涂伟's avatar 涂伟

fix: '手持视图新增参数测量收点'

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