Commit fccff0b6 authored by 前端-黄佳鑫's avatar 前端-黄佳鑫

fix: 商家营销活动查询去掉外部能力工作流接口

parent b5292951
...@@ -133,13 +133,6 @@ const Search = () => { ...@@ -133,13 +133,6 @@ const Search = () => {
}).catch(err => { }).catch(err => {
console.warn(err) console.warn(err)
}) })
/** 外部状态 */
getMarketingMerchantActivityGetOuterStatusList().then(res => {
const _enum = res.data.map((item) => { return { label: item.name, value: item.status } });
linkage.enum('outerStatus', _enum);
}).catch(err => {
console.warn(err)
})
/** 内部状态 */ /** 内部状态 */
getMarketingMerchantActivityGetInnerStatusList().then(res => { getMarketingMerchantActivityGetInnerStatusList().then(res => {
const _enum = res.data.map((item) => { return { label: item.name, value: item.status } }) const _enum = res.data.map((item) => { return { label: item.name, value: item.status } })
...@@ -242,16 +235,6 @@ const Search = () => { ...@@ -242,16 +235,6 @@ const Search = () => {
}, },
enum: [], enum: [],
}, },
outerStatus: {
type: 'string',
'x-component-props': {
placeholder: `${intl.formatMessage({ id: 'selfManagement.externalState' })}`,
style: {
width: 160,
},
},
enum: [],
},
innerStatus: { innerStatus: {
type: 'string', type: 'string',
'x-component-props': { 'x-component-props': {
......
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