|
@@ -354,6 +354,7 @@ func (w *WsDataExport) SubmitOrder() error {
|
|
|
func (wd *WsDataExport) SearchExport() error {
|
|
|
openid := util.ObjToString(wd.GetSession("s_m_openid"))
|
|
|
userId := util.ObjToString(wd.GetSession("userId"))
|
|
|
+ mgoUserId := util.ObjToString(wd.GetSession("mgoUserId"))
|
|
|
if userId == "" {
|
|
|
return errors.New("未登录")
|
|
|
}
|
|
@@ -400,6 +401,7 @@ func (wd *WsDataExport) SearchExport() error {
|
|
|
saveData["selectType"] = strings.Join(jy.GetVipState(wd.Session(), *config.Middleground, userId).GetQueryItems(wd.GetString("selectType"), util.Int64All(config.Sysconfig["bidSearchOldUserLimit"])), ",")
|
|
|
saveData["s_openid"] = openid
|
|
|
saveData["s_userid"] = userId
|
|
|
+ saveData["mgoUserId"] = mgoUserId
|
|
|
saveData["comeinfrom"] = "supersearchPage"
|
|
|
region := util.If(reqData.Area == "全国", "", reqData.Area).(string)
|
|
|
if region != "" && reqData.City != "" {
|