...
|
...
|
@@ -12,8 +12,6 @@ module.exports = class FindGoods extends global.yoho.BaseModel { |
|
|
* @param {*} {uid, page, limit}
|
|
|
*/
|
|
|
findGoods(params) {
|
|
|
const host = '//m.yohobuy.com';
|
|
|
|
|
|
return this.get({
|
|
|
data: Object.assign(
|
|
|
{
|
...
|
...
|
@@ -23,6 +21,8 @@ module.exports = class FindGoods extends global.yoho.BaseModel { |
|
|
),
|
|
|
}).then(res => {
|
|
|
if (res.code === 200 && res.data.detailList) {
|
|
|
const host = '//m.yohobuy.com';
|
|
|
|
|
|
res.data.detailList = res.data.detailList.map(item => {
|
|
|
const {
|
|
|
authorUid,
|
...
|
...
|
|