shenwu %!s(int64=2) %!d(string=hai) anos
pai
achega
994804c992
Modificáronse 1 ficheiros con 152 adicións e 152 borrados
  1. 152 152
      src/pages/launchSystemNew/adq/ad/index.tsx

+ 152 - 152
src/pages/launchSystemNew/adq/ad/index.tsx

@@ -200,6 +200,158 @@ const Ad: React.FC<Props> = (props) => {
         />}
         {/* 复制广告 */}
         {copyData.visible && <Copy selectedRows={selectedRows} {...copyData} onClose={() => setCopyData({ visible: false })} onChange={() => { setCopyData({ visible: false }); listAjax.refresh(); setSelectedRows([]) }} />}
+        <Row gutter={[6, 6]} align='middle' style={{marginBottom:15}}>
+            <Col>
+                <Input
+                    placeholder='广告账号'
+                    allowClear
+                    style={{ width: 120 }}
+                    onChange={(e) => {
+                        let value = e.target.value
+                        let arr: any = []
+                        if (value) {
+                            value = value.replace(/[,,\s]/g, ',')
+                            arr = value.split(',').filter((a: any) => a)
+                        }
+                        set_queryFrom({ ...queryFrom, accountIdList: arr })
+                    }}
+                />
+            </Col>
+            <Col>
+                <Input
+                    placeholder='广告名称'
+                    allowClear
+                    style={{ width: 120 }}
+                    onChange={(e) => {
+                        let value = e.target.value
+                        set_queryFrom({ ...queryFrom, adgroupName: value })
+                    }}
+                />
+            </Col>
+            <Col>
+                <Input
+                    placeholder='广告ID'
+                    allowClear
+                    style={{ width: 120 }}
+                    onChange={(e) => {
+                        let value = e.target.value
+                        let arr: any = []
+                        if (value) {
+                            value = value.replace(/[,,\s]/g, ',')
+                            arr = value.split(',').filter((a: any) => a)
+                        }
+                        set_queryFrom({ ...queryFrom, adgroupIdList: arr })
+                    }}
+                />
+            </Col>
+            <Col>
+                <Input
+                    placeholder='计划ID'
+                    allowClear
+                    style={{ width: 120 }}
+                    onChange={(e) => {
+                        let value = e.target.value
+                        let arr: any = []
+                        if (value) {
+                            value = value.replace(/[,,\s]/g, ',')
+                            arr = value.split(',').filter((a: any) => a)
+                        }
+                        set_queryFrom({ ...queryFrom, campaignIdList: arr })
+                    }}
+                />
+            </Col>
+            <Col>
+                <Select
+                    placeholder='推广目标选择'
+                    style={{ width: 120 }}
+                    showSearch
+                    filterOption={(input: any, option: any) =>
+                        (option!.children as unknown as string).toLowerCase().includes(input.toLowerCase())
+                    }
+                    allowClear
+                    onChange={(value: any) => {
+                        set_queryFrom({ ...queryFrom, promotedObjectType: value })
+                    }}
+                >
+                    {Object.keys(PromotedObjectType).map(key => {
+                        return <Select.Option value={key} key={key}>{PromotedObjectType[key]}</Select.Option>
+                    })}
+                </Select>
+            </Col>
+            <Col>
+                <Select
+                    placeholder='是否已删除'
+                    style={{ width: 120 }}
+                    showSearch
+                    filterOption={(input: any, option: any) =>
+                        (option!.children as unknown as string).toLowerCase().includes(input.toLowerCase())
+                    }
+                    allowClear
+                    onChange={(value: any) => {
+                        set_queryFrom({ ...queryFrom, isDeleted: value })
+                    }}
+                >
+                    <Select.Option value={true}>已删除</Select.Option>
+                    <Select.Option value={false}>未删除</Select.Option>
+                </Select>
+            </Col>
+            <Col>
+                <Select
+                    placeholder='广告状态'
+                    mode="multiple"
+                    style={{ width: 120 }}
+                    showSearch
+                    filterOption={(input: any, option: any) =>
+                        (option!.children as unknown as string).toLowerCase().includes(input.toLowerCase())
+                    }
+                    allowClear
+                    onChange={(value: any) => {
+                        set_queryFrom({ ...queryFrom, statusList: value })
+                    }}
+                >
+                    {
+                        Object.keys(AdStatusEnum).map(key => {
+                            return <Select.Option value={key} key={key}>{AdStatusEnum[key]}</Select.Option>
+                        })
+                    }
+                </Select>
+            </Col>
+            <Col>
+                <Input
+                    placeholder='腾讯备注'
+                    allowClear
+                    style={{ width: 120 }}
+                    onChange={(e) => {
+                        let value = e.target.value
+                        let arr: any = []
+                        if (value) {
+                            value = value.replace(/[,,\s]/g, ',')
+                            arr = value.split(',').filter((a: any) => a)
+                        }
+                        set_queryFrom({ ...queryFrom, memoList: arr })
+                    }}
+                />
+            </Col>
+            <Col>
+                <Input
+                    placeholder='本地备注'
+                    allowClear
+                    style={{ width: 120 }}
+                    onChange={(e) => {
+                        let value = e.target.value
+                        let arr: any = []
+                        if (value) {
+                            value = value.replace(/[,,\s]/g, ',')
+                            arr = value.split(',').filter((a: any) => a)
+                        }
+                        set_queryFrom({ ...queryFrom, remarkList: arr })
+                    }}
+                />
+            </Col>
+            <Col>
+                <Button type='primary' onClick={() => getList({ ...queryFrom, pageNum: 1 })}> 搜索</Button>
+            </Col>
+        </Row>
         <TableData
             isCard={false}
             columns={() => tableConfig(onChange, details, handleSave, tableIdClick)}
@@ -217,158 +369,6 @@ const Ad: React.FC<Props> = (props) => {
             config={txAdConfig}
             configName="腾讯广告"
             leftChild={<Space direction='vertical'>
-                <Row gutter={[6, 6]} align='middle'>
-                    <Col>
-                        <Input
-                            placeholder='广告账号'
-                            allowClear
-                            style={{ width: 120 }}
-                            onChange={(e) => {
-                                let value = e.target.value
-                                let arr: any = []
-                                if (value) {
-                                    value = value.replace(/[,,\s]/g, ',')
-                                    arr = value.split(',').filter((a: any) => a)
-                                }
-                                set_queryFrom({ ...queryFrom, accountIdList: arr })
-                            }}
-                        />
-                    </Col>
-                    <Col>
-                        <Input
-                            placeholder='广告名称'
-                            allowClear
-                            style={{ width: 120 }}
-                            onChange={(e) => {
-                                let value = e.target.value
-                                set_queryFrom({ ...queryFrom, adgroupName: value })
-                            }}
-                        />
-                    </Col>
-                    <Col>
-                        <Input
-                            placeholder='广告ID'
-                            allowClear
-                            style={{ width: 120 }}
-                            onChange={(e) => {
-                                let value = e.target.value
-                                let arr: any = []
-                                if (value) {
-                                    value = value.replace(/[,,\s]/g, ',')
-                                    arr = value.split(',').filter((a: any) => a)
-                                }
-                                set_queryFrom({ ...queryFrom, adgroupIdList: arr })
-                            }}
-                        />
-                    </Col>
-                    <Col>
-                        <Input
-                            placeholder='计划ID'
-                            allowClear
-                            style={{ width: 120 }}
-                            onChange={(e) => {
-                                let value = e.target.value
-                                let arr: any = []
-                                if (value) {
-                                    value = value.replace(/[,,\s]/g, ',')
-                                    arr = value.split(',').filter((a: any) => a)
-                                }
-                                set_queryFrom({ ...queryFrom, campaignIdList: arr })
-                            }}
-                        />
-                    </Col>
-                    <Col>
-                        <Select
-                            placeholder='推广目标选择'
-                            style={{ width: 120 }}
-                            showSearch
-                            filterOption={(input: any, option: any) =>
-                                (option!.children as unknown as string).toLowerCase().includes(input.toLowerCase())
-                            }
-                            allowClear
-                            onChange={(value: any) => {
-                                set_queryFrom({ ...queryFrom, promotedObjectType: value })
-                            }}
-                        >
-                            {Object.keys(PromotedObjectType).map(key => {
-                                return <Select.Option value={key} key={key}>{PromotedObjectType[key]}</Select.Option>
-                            })}
-                        </Select>
-                    </Col>
-                    <Col>
-                        <Select
-                            placeholder='是否已删除'
-                            style={{ width: 120 }}
-                            showSearch
-                            filterOption={(input: any, option: any) =>
-                                (option!.children as unknown as string).toLowerCase().includes(input.toLowerCase())
-                            }
-                            allowClear
-                            onChange={(value: any) => {
-                                set_queryFrom({ ...queryFrom, isDeleted: value })
-                            }}
-                        >
-                            <Select.Option value={true}>已删除</Select.Option>
-                            <Select.Option value={false}>未删除</Select.Option>
-                        </Select>
-                    </Col>
-                    <Col>
-                        <Select
-                            placeholder='广告状态'
-                            mode="multiple"
-                            style={{ width: 120 }}
-                            showSearch
-                            filterOption={(input: any, option: any) =>
-                                (option!.children as unknown as string).toLowerCase().includes(input.toLowerCase())
-                            }
-                            allowClear
-                            onChange={(value: any) => {
-                                set_queryFrom({ ...queryFrom, statusList: value })
-                            }}
-                        >
-                            {
-                                Object.keys(AdStatusEnum).map(key => {
-                                    return <Select.Option value={key} key={key}>{AdStatusEnum[key]}</Select.Option>
-                                })
-                            }
-                        </Select>
-                    </Col>
-                    <Col>
-                        <Input
-                            placeholder='腾讯备注'
-                            allowClear
-                            style={{ width: 120 }}
-                            onChange={(e) => {
-                                let value = e.target.value
-                                let arr: any = []
-                                if (value) {
-                                    value = value.replace(/[,,\s]/g, ',')
-                                    arr = value.split(',').filter((a: any) => a)
-                                }
-                                set_queryFrom({ ...queryFrom, memoList: arr })
-                            }}
-                        />
-                    </Col>
-                    <Col>
-                        <Input
-                            placeholder='本地备注'
-                            allowClear
-                            style={{ width: 120 }}
-                            onChange={(e) => {
-                                let value = e.target.value
-                                let arr: any = []
-                                if (value) {
-                                    value = value.replace(/[,,\s]/g, ',')
-                                    arr = value.split(',').filter((a: any) => a)
-                                }
-                                set_queryFrom({ ...queryFrom, remarkList: arr })
-                            }}
-                        />
-                    </Col>
-                    <Col>
-                        <Button type='primary' onClick={() => getList({...queryFrom,pageNum:1})}> 搜索</Button>
-                    </Col>
-                </Row>
                 <Row gutter={[10, 10]} align='middle'>
                     <Col>
                         <Switch checkedChildren="普通模式" unCheckedChildren="深度优化" checked={model} onChange={(checked) => { setModel(checked); setSelectedRows([]) }} style={model ? {} : { background: '#67c23a' }} />