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

fix: 修复竞价单详情,发布到平台时选择的商城没有展示的问题

parent d02b15b0
...@@ -236,9 +236,15 @@ const SearchDetail = () => { ...@@ -236,9 +236,15 @@ const SearchDetail = () => {
} }
const fetchDataSource = async () => { const fetchDataSource = async () => {
let shopList = GlobalConfig.web.shopInfo.filter(v => v.type == 6).map( // let shopList = GlobalConfig.web.shopInfo.filter(v => v.type == 6).map(
v => v // v => v
) // )
/**
* 待新增商城采购竞价单要的是商城类型为企业商城
* 新增采购竞价单要的是采购门户
* 所以去掉过滤了 反正详情shopId是后端返回的 新增的时候应该做处理了
* */
let shopList = GlobalConfig.web.shopInfo;
const params = { const params = {
id, id,
number, number,
......
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