Commit 5de8245d9daff26f4103d3e93213606b409b860e

Authored by 莫红玲
2 parents 26dfef26 c0876338

Merge remote-tracking branch 'origin/bug_fix'

src/pages/coupon/CouponConfig/components/UsesceneItems/PreDecoration/Components/WorkItemLimit.tsx
... ... @@ -27,7 +27,7 @@ interface Props {
27 27 function PartItem(props: Props, ref?: Ref<any>) {
28 28 const { onChange, value, style, disabled, title, useScene } = props;
29 29 /**机修作业项,类型1,2,5 */
30   - const params = useScene === 1 ? { workTypes: "1,2,5" } : { workType: useScene };
  30 + const params = useScene === 1 ? { workTypes: "1,2,5,9" } : { workType: useScene };
31 31 const { loading, setLoading, list, setParams, paginationConfig, innerParams } = usePagination(API.fetchListApi, params);
32 32 const { data: brandList } = useInitial(getBrandFilterApi, [], {});
33 33 const [visible, setVisible] = useState(false);
... ...