Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VirtualList 滑动抖动 #8936

Closed
MarshallYang opened this issue Mar 17, 2021 · 16 comments · Fixed by #9180
Closed

VirtualList 滑动抖动 #8936

MarshallYang opened this issue Mar 17, 2021 · 16 comments · Fixed by #9180
Labels
F-react Framework - React P-1 High, patch T-alipay Target - 编译到支付宝小程序 V-3 Version - 3.x
Milestone

Comments

@MarshallYang
Copy link

MarshallYang commented Mar 17, 2021

相关平台

支付宝小程序

小程序基础库: 1.24.3
使用框架: React

复现步骤

// index.tsx 官网实例
const Index = () => {

  function buildData (offset = 0) {
    return Array(100).fill(0).map((_, i) => i   offset);
  }

  const Row = React.memo(({ id, index, style, data }) => {
    return (
      <View id={id} className={index % 2 ? 'ListItemOdd' : 'ListItemEven'} style={style}>
        Row {index} : {data[index]}
      </View>
    );
  })

  const [data, _] = useState(buildData(0))


  const [ vHeight, setVHeight ] = useState(0)
  useReady(() => {
    Taro.createSelectorQuery().select('#app').boundingClientRect().exec((res) => {
      setVHeight(res[0].height)
    })
  })

  return (
    <View id='app' style={{width: '100vw', height: '100vh'}}>
      <VirtualList
        height={vHeight}
        width='100%'
        itemCount={data.length}
        itemData={data}
        itemSize={100}
      >
        { Row }
      </VirtualList>
    </View>
  )
}

期望结果

列表可以顺畅滑动

实际结果

滑动过程中有抖动,用户体验非常不好

环境信息

� Taro v3.1.4


  Taro CLI 3.1.4 environment info:
    System:
      OS: Windows 10
    Binaries:
      Node: 14.15.1 - D:\xxx\nodejs\node.EXE
      Yarn: 1.22.10 - D:\xxx\nodejs\node_modules\global\node_modules\yarn\bin\yarn.CMD
      npm: 6.14.8 - D:\xxx\nodejs\npm.CMD


补充信息

这个现象在模拟器中不明显,在真机模拟中体验非常差。
在 3.0.28 之前的版本中没有遇到 VirtualList 滑动抖动的问题,当升级版本到 3.0.28 后发现滑动抖动。用 3.1.4版本 新创建的工程中测试也是这样。

@taro-bot2 taro-bot2 bot added F-react Framework - React T-alipay Target - 编译到支付宝小程序 V-3 Version - 3.x labels Mar 17, 2021
@MarshallYang MarshallYang changed the title VirtualList 滑动卡顿 VirtualList 滑动抖动 Mar 23, 2021
@MarshallYang
Copy link
Author

MarshallYang commented Mar 23, 2021

#8560 应该是修复这个issue后出现的。

// createListComponent.js  line:543 else 语句块
if (scrollUpdateWasRequested) {
        if (isHorizontal) {
          outerElementProps.scrollLeft = scrollOffset
        } else {
          outerElementProps.scrollTop = scrollOffset
        }
      } else {
        if (isHorizontal) {
          outerElementProps.scrollLeft = lockedScrollOffset
        } else {
          outerElementProps.scrollTop = lockedScrollOffset
        }
      }

else语句块注释掉只是解决了抖动的问题。可能上面的issue还存在。

@ghost
Copy link

ghost commented Mar 29, 2021

我这边也出现了 ? 还没有fix 吗 我这边是微信小程序 发现在windows 电脑微信上 滑动不了 哈哈

@Naico
Copy link

Naico commented Apr 2, 2021

我们同样也遇见了这样的问题

@Naico
Copy link

Naico commented Apr 2, 2021

@Chen-jj 这个问题看一下?

@robinslee
Copy link
Contributor

robinslee commented Apr 2, 2021

#8560 应该是修复这个issue后出现的。

// createListComponent.js  line:543 else 语句块
if (scrollUpdateWasRequested) {
    if (isHorizontal) {
      outerElementProps.scrollLeft = scrollOffset
    } else {
      outerElementProps.scrollTop = scrollOffset
    }
} else {
    if (isHorizontal) {
      outerElementProps.scrollLeft = lockedScrollOffset
    } else {
      outerElementProps.scrollTop = lockedScrollOffset
    }
}

else语句块注释掉只是解决了抖动的问题。可能上面的issue还存在。

是的,注释掉else语句块就没有抖动了,但是会影响initialScrollOffset属性。我的环境是Taro v3.2.0、微信小程序,@ZakaryCode @Chen-jj 关注一下

@ihwf
Copy link

ihwf commented Apr 9, 2021

微信小程序上也同样的问题

@nanxiaobei
Copy link

微信小程序,VirtualList 抖的根本没法用。🤭

@Summer-Boy
Copy link

我使用的是Vue版本的virtual-list,@tarojs/taro的版本是3.2.1,貌似react新增的lockedScrollOffset,还没更新到vue版本中,我试着更新到vue中,scrollTo、scrollToItem可以正确使用了,但是滑动会上下一直抖动,试着去除了新增的lockedScrollOffset,使用scrollIntoView属性代替,暂时解决了抖动问题。但是只能使用scrollToItem。

//scrollIntoViewIdName作为外部props传入
//scrollIntoViewIndex作为scrollToItem方法参数传入
//scrollIntoViewIndex为Row.vue绑定的id,<view class="main-item" :id="'main-item-' + index" :style="css"></view>

if (this.scrollUpdateWasRequested) {
  if (isHorizontal) {
     outerElementProps.attrs.scrollIntoView = this.scrollIntoViewIdName + '-' + this.scrollIntoViewIndex;
  } else {
     outerElementProps.attrs.scrollIntoView = this.scrollIntoViewIdName + '-' + this.scrollIntoViewIndex;
  }
}

@QiXingjun
Copy link

QiXingjun commented Apr 15, 2021

微信小程序,VirtualList 抖动问题仍然存在 @Chen-jj
Taro 版本 3.2.0

@ZakaryCode
Copy link
Contributor

3.26还是抖动

给个 Demo 看看咯

@luluqweasd
Copy link

也不是抖动,是滚到第30条,会倒回到第20条这样

@luluqweasd
Copy link

就官网的例子,假如我想从第一条开始滚动,会看到Row 30几,最后停留到20几

@congyaqwq
Copy link

vue版本微信小程序闪的不行
解决:子组件里面一定要加:style="css',就算没传也要加,不然就会闪
参考:https://www.e-learn.cn/topic/3723683

@qing-zhi
Copy link

VirtualList 在加载喊图片的列表时 编译在百度小程序 出现闪屏,taro版本3.4

示例demo:
`import React, {Component} from 'react';
import { View ,Image} from '@tarojs/components';
import VirtualList from '@tarojs/components/virtual-list'

const Row = React.memo(({ id, index, style, data }) => {
return (
<View key={id} className={index % 2 ? 'ListItemOdd' : 'ListItemEven'} style={style}>

<Image lazyLoad style={{width:'120px', height: '120px'}}className='main-img' alt='' src={${data[index].mainImage}-300x300} />
{data[index].nameCn}
{data[index].name}
{data[index].member?.name}


);
})

export default class Test extends Component {
state = {
data: [
{
"id": 540,
"no": "nhscmg602331",
"name": "",
"nameCn": "上海波特曼丽思卡尔顿酒店",
"address": "SHANGHAI CENTER 1376 WEST N Shanghai 200040 CN",
"addressCn": "上海市静安区南京西路1376号上海商城",
"mainImage": "https://staticfile.badazhou.com/20211112/e638221210f7668cafeb78377f0379eb.jpeg",
"memberId": 7,
"validPromotions": [
{
"id": 3890,
"hotelId": 540,
"typeName": "订立享",
"weight": 4,
"checkinStartDate": "2022-04-01",
"checkoutEndDate": "2022-10-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "额外积分奖励",
"desc": "适用价格:所有价格\n优惠内容:每一个付费间夜,可额外获得5000 Club8积分 ,可与其他Club8积分活动同享\n\n注:预订成功后,联系在线客服修改",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-04-01 14:25:26",
"updateTime": "2022-04-01 14:25:33",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 540,
"hotelId": 540,
"hotelCode": "89928",
"hotelChain": "XR",
"hasBenefits": 1
},
"member": {
"id": 7,
"name": "万豪旅享家",
"registerInfo": "APP:万豪旅享家",
"hotelChains": "RZ,XR,EB,LC,WH,MC,SI,VC,DE,MD,WI,AK,BR,TX,GE,CY,FP,XV,PR,FN,AR,AL,OX,EE,RC,TO,EL,CC,ZC,ER,IM",
"phone": "4008903588",
"image": "https://staticfile.badazhou.com/20200924/fbf685fb9b746f26bbbabb5e4a139053.png",
"weight": 15,
"createTime": "2020-09-17 11:47:16",
"updateTime": "2022-04-25 11:53:47"
},
"promotions": [
{
"id": 3890,
"hotelId": 540,
"typeName": "订立享",
"weight": 4,
"checkinStartDate": "2022-04-01",
"checkoutEndDate": "2022-10-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "额外积分奖励",
"desc": "适用价格:所有价格\n优惠内容:每一个付费间夜,可额外获得5000 Club8积分 ,可与其他Club8积分活动同享\n\n注:预订成功后,联系在线客服修改",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-04-01 14:25:26",
"updateTime": "2022-04-01 14:25:33",
"isExpire": 0
},
{
"id": 3852,
"hotelId": 540,
"typeName": "订立享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "升级行政客房(2晚起)",
"desc": "适用价格:专享价\n适用房型:天际客房\n优惠内容:连住2晚及以上,预订天际客房免费升级为行政天际客房,含双人行政礼遇。\n注:不与其他优惠同享",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-09 17:51:40",
"updateTime": "2022-03-09 17:53:11",
"isExpire": 1
},
{
"id": 3684,
"hotelId": 540,
"typeName": "确认后享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2+保证升级",
"desc": "适用价格:Virtuoso Promo - Stay 3 Pay 2\n适用房型:城景客房,城景行政客房,单卧室套房,行政单卧套房\n不可使用日期:4月12日-4月15日\n优惠内容:住3付2优惠,并享受保证升级,城景客房 升级为天际客房;城景行政客房 升级为 行政天际客房。\n\n注:预订成功后,联系在线客服申请价格及升级房型。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-18 16:47:48",
"updateTime": "2022-04-12 16:06:56",
"isExpire": 1
},
{
"id": 3266,
"hotelId": 540,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-28",
"bookingStartDate": null,
"bookingEndDate": "2022-01-18",
"name": "住3付2+保证升级",
"desc": "适用价格:Virtuoso Promo - Stay 3 Pay 2\n适用房型:豪华城景房,行政豪华房,尊尚套房,行政尊尚套房\n注:豪华城景房保证升级到豪华天际房,行政豪华房保证升级到行政豪华天际房\n\n注:预订成功后,联系在线客服申请价格及升级房型。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-06-17 12:06:43",
"updateTime": "2022-03-09 17:51:44",
"isExpire": 1
}
]
},
{
"id": 564,
"no": "zlkzrw455069",
"name": "",
"nameCn": "上海璞丽酒店",
"address": "1 CHANGDE RD SHANGHAI 200040 CN",
"addressCn": "上海市静安区常德路1号",
"mainImage": "https://staticfile.badazhou.com/20200709/f4cb0e7000c903c8f48f18bbda159b94.jpeg",
"memberId": 10,
"validPromotions": [
{
"id": 3819,
"hotelId": 564,
"typeName": "订立享",
"weight": 7,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "米其林套餐",
"desc": "适用价格:A Journey Of Gourmet Explorations\n适用房型:经典房\n不可使用日期:周五,周六\n优惠内容:预订时特级套房有房享受保证升级,双人早餐,双人婓霓絲米其林晚餐套餐,每日三件熨烫服务1份,延迟退房至14点。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-01 16:59:43",
"updateTime": "2022-03-01 16:59:51",
"isExpire": 0
},
{
"id": 3479,
"hotelId": 564,
"typeName": "确认后享",
"weight": 6,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "直升套房",
"desc": "适用价格:专享价\n优惠内容:预定经典客房升级至特级套房\n不可使用日期:4月30日-5月3日\n注:预订时对应升级房型有房时可享受升级,预订完成后联系在线客服申请。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-10-21 17:51:20",
"updateTime": "2022-03-24 16:13:32",
"isExpire": 0
},
{
"id": 3816,
"hotelId": 564,
"typeName": "订立享",
"weight": 5,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "惊喜之旅",
"desc": "适用价格:Romantic Retreat\n适用房型:豪华房\n优惠内容:每日双人早餐,预订时经典豪华房有房享受保证升级,入住期间双人60分钟Spa,每日三件衣服熨烫,延迟退房至下午14点。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-28 11:43:31",
"updateTime": "2022-03-01 16:59:51",
"isExpire": 0
},
{
"id": 3478,
"hotelId": 564,
"typeName": "确认后享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升两级",
"desc": "适用价格:专享价\n优惠内容:预定豪华房升级至经典豪华客房(双床房不适用)\n不可使用日期:4月30日-5月3日\n\n注:预订时对应升级房型有房时可享受升级,预订完成后联系在线客服申请。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-10-21 15:45:28",
"updateTime": "2022-03-24 16:13:44",
"isExpire": 0
},
{
"id": 3069,
"hotelId": 564,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住4付3",
"desc": "适用价格:Vita Commissionable Promotion & Virtuoso Pay 3 Stay 4 Promotion\n优惠内容:预订时保证升级(不适用于任何双床房)",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-04-25 15:27:21",
"updateTime": "2022-01-19 17:58:44",
"isExpire": 0
},
{
"id": 3821,
"hotelId": 564,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:Virtuoso Stay Longer For 2 Nights -10,Virtuoso Minimum 3 Nights 15 Disc Off,Virtuoso Suite Indulgence\n优惠内容:连住3晚85折优惠,套房连住2晚7折优惠,普通房连住2晚9折\n注:以上均已显示为折后价格。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-01 19:10:25",
"updateTime": "2022-03-01 19:10:25",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 564,
"hotelId": 564,
"hotelCode": "97328",
"hotelChain": "LW",
"hasBenefits": 1
},
"member": {
"id": 10,
"name": "立鼎世尊享贵宾会",
"registerInfo": "微信公众号:立鼎世酒店集团\n预订时候务必输入会员号码",
"hotelChains": "LW",
"phone": "4001324582",
"image": "https://staticfile.badazhou.com/20200924/7c7ad693f4df24e82818f6a33a3c28bd.png",
"weight": 9,
"createTime": "2020-09-17 11:54:00",
"updateTime": "2022-01-26 15:22:29"
},
"promotions": [
{
"id": 3398,
"hotelId": 564,
"typeName": "订立享",
"weight": 8,
"checkinStartDate": "2021-11-01",
"checkoutEndDate": "2022-03-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "额外积分奖励",
"desc": "适用价格:所有价格\n优惠内容:每一个付费间夜,可额外获得5000 Club8积分 ,可与其他Club8积分活动同享\n\n注:预订成功后,联系在线客服修改",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-31 14:02:07",
"updateTime": "2022-03-01 16:59:51",
"isExpire": 1
},
{
"id": 3819,
"hotelId": 564,
"typeName": "订立享",
"weight": 7,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "米其林套餐",
"desc": "适用价格:A Journey Of Gourmet Explorations\n适用房型:经典房\n不可使用日期:周五,周六\n优惠内容:预订时特级套房有房享受保证升级,双人早餐,双人婓霓絲米其林晚餐套餐,每日三件熨烫服务1份,延迟退房至14点。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-01 16:59:43",
"updateTime": "2022-03-01 16:59:51",
"isExpire": 0
},
{
"id": 3479,
"hotelId": 564,
"typeName": "确认后享",
"weight": 6,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "直升套房",
"desc": "适用价格:专享价\n优惠内容:预定经典客房升级至特级套房\n不可使用日期:4月30日-5月3日\n注:预订时对应升级房型有房时可享受升级,预订完成后联系在线客服申请。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-10-21 17:51:20",
"updateTime": "2022-03-24 16:13:32",
"isExpire": 0
},
{
"id": 3816,
"hotelId": 564,
"typeName": "订立享",
"weight": 5,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "惊喜之旅",
"desc": "适用价格:Romantic Retreat\n适用房型:豪华房\n优惠内容:每日双人早餐,预订时经典豪华房有房享受保证升级,入住期间双人60分钟Spa,每日三件衣服熨烫,延迟退房至下午14点。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-28 11:43:31",
"updateTime": "2022-03-01 16:59:51",
"isExpire": 0
},
{
"id": 3478,
"hotelId": 564,
"typeName": "确认后享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升两级",
"desc": "适用价格:专享价\n优惠内容:预定豪华房升级至经典豪华客房(双床房不适用)\n不可使用日期:4月30日-5月3日\n\n注:预订时对应升级房型有房时可享受升级,预订完成后联系在线客服申请。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-10-21 15:45:28",
"updateTime": "2022-03-24 16:13:44",
"isExpire": 0
},
{
"id": 3666,
"hotelId": 564,
"typeName": "订立享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-28",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "特惠套餐",
"desc": "适用价格:Virtuoso 2022 Spring Package & Vita 2022 Spring Package\n适用房型:豪华房,经典套房\n优惠内容:\n豪华房:双人早餐,客房送餐精美下午茶1份,每日三件熨烫服务1份。\n经典套房:双人早餐,双人60分钟按摩体验,套房欢迎礼遇,入住欢迎饮料,2000元酒店消费额度,每日三件熨烫服务1份,每次入住免费使用会议室2小时 (至多10位客人)\n\n注:特殊促销,不再享受专享礼遇内容。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-10 14:58:14",
"updateTime": "2022-03-01 19:04:31",
"isExpire": 1
},
{
"id": 3069,
"hotelId": 564,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住4付3",
"desc": "适用价格:Vita Commissionable Promotion & Virtuoso Pay 3 Stay 4 Promotion\n优惠内容:预订时保证升级(不适用于任何双床房)",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-04-25 15:27:21",
"updateTime": "2022-01-19 17:58:44",
"isExpire": 0
},
{
"id": 3417,
"hotelId": 564,
"typeName": "订立享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2021-12-30",
"bookingStartDate": null,
"bookingEndDate": "2021-12-19",
"name": "住3付2(指定房型)",
"desc": "适用价格:Vita Comm Rate & Virtuoso Pay 2 Stay 3 Promotion\n适用房型:经典豪华客房,特级套房,豪华套房,经典套房\n不可使用日期:12月24日-12月25日。\n套房额外礼遇:套房合计可享150美金消费抵扣额度,单次接机或送机。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-09-13 18:38:25",
"updateTime": "2022-01-10 14:58:33",
"isExpire": 1
},
{
"id": 3821,
"hotelId": 564,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:Virtuoso Stay Longer For 2 Nights -10,Virtuoso Minimum 3 Nights 15 Disc Off,Virtuoso Suite Indulgence\n优惠内容:连住3晚85折优惠,套房连住2晚7折优惠,普通房连住2晚9折\n注:以上均已显示为折后价格。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-01 19:10:25",
"updateTime": "2022-03-01 19:10:25",
"isExpire": 0
}
]
},
{
"id": 2185,
"no": "fcgjzi127069",
"name": "",
"nameCn": "上海外滩华尔道夫酒店",
"address": "NO.2 ZHONG SHAN DONG YI RD SHANGHAI 200002 CN",
"addressCn": "上海市黄浦区四川中路88号",
"mainImage": "https://staticfile.badazhou.com/20200709/b488bc6b3e675e20534d579fb3c91582.jpeg",
"memberId": 6,
"validPromotions": [
{
"id": 2819,
"hotelId": 2185,
"typeName": "确认后享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "直升套房",
"desc": "适用价格:专享价\n适用房型:豪雅城景客房Deluxe City View Room\n\n优惠内容:预订“豪雅城景客房” 升级到 “豪雅套房” ,预订“豪雅城景客房” 额外加钱466.4元/晚 可升级到 “外滩总会套房 ”\n\n\n注:预订成功后,联系在线客服确认升级情况,具体升级情况以酒店确认为准,不享受双倍希尔顿积分,且不与其他优惠同享",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-01-07 12:09:22",
"updateTime": "2022-04-28 15:34:26",
"isExpire": 0
},
{
"id": 3388,
"hotelId": 2185,
"typeName": "确认后享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住2付1(套房)",
"desc": "适用价格:专享价\n适用房型:至尊临江套房 ,总会豪雅临江套房\n\n注:预订成功后,联系在线客服确认并修改价格,不享受双倍希尔顿积分,不与其他优惠同享",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-24 17:38:31",
"updateTime": "2022-04-28 15:34:20",
"isExpire": 0
},
{
"id": 2491,
"hotelId": 2185,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Impresario Program-impresario Promo\n适用房型:豪雅客房/豪雅城景客房/豪雅套房/至尊套房/外滩总会套房\n注:不享受双倍希尔顿积分,不与其他优惠同享,全江景客房不适用。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 1600778864,
"updateAt": 1600779019,
"createTime": "2020-09-22 20:47:44",
"updateTime": "2022-03-24 18:47:17",
"isExpire": 0
},
{
"id": 2818,
"hotelId": 2185,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚)",
"desc": "适用价格:仅限“专享”价格可享\n适用房型:全江景豪华房\n不可使用日期:4月3日-4月5日,4月30日-5月4日\n\n优惠内容:享受85折优惠,仅2晚连住可享(若住3晚,第三晚不享受折扣),预订成功后,联系在线客服确认优惠价格,不享受希尔顿双倍积分,不与其他优惠同享",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-01-07 12:07:17",
"updateTime": "2022-03-15 15:36:08",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 2185,
"hotelId": 2185,
"hotelCode": "10146",
"hotelChain": "WA",
"hasBenefits": 1
},
"member": {
"id": 6,
"name": "希尔顿荣誉客会",
"registerInfo": "微信小程序:希尔顿官方预订",
"hotelChains": "DT,HL,WA,CN,PY,QQ,GI,HG,ES,HH,OL",
"phone": "4008200500",
"image": "https://staticfile.badazhou.com/20200924/a628f53e243db3e654fe99fc22ae777b.png",
"weight": 13,
"createTime": "2020-09-17 11:43:57",
"updateTime": "2022-04-20 11:23:39"
},
"promotions": [
{
"id": 2819,
"hotelId": 2185,
"typeName": "确认后享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "直升套房",
"desc": "适用价格:专享价\n适用房型:豪雅城景客房Deluxe City View Room\n\n优惠内容:预订“豪雅城景客房” 升级到 “豪雅套房” ,预订“豪雅城景客房” 额外加钱466.4元/晚 可升级到 “外滩总会套房 ”\n\n\n注:预订成功后,联系在线客服确认升级情况,具体升级情况以酒店确认为准,不享受双倍希尔顿积分,且不与其他优惠同享",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-01-07 12:09:22",
"updateTime": "2022-04-28 15:34:26",
"isExpire": 0
},
{
"id": 3388,
"hotelId": 2185,
"typeName": "确认后享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住2付1(套房)",
"desc": "适用价格:专享价\n适用房型:至尊临江套房 ,总会豪雅临江套房\n\n注:预订成功后,联系在线客服确认并修改价格,不享受双倍希尔顿积分,不与其他优惠同享",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-24 17:38:31",
"updateTime": "2022-04-28 15:34:20",
"isExpire": 0
},
{
"id": 2491,
"hotelId": 2185,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Impresario Program-impresario Promo\n适用房型:豪雅客房/豪雅城景客房/豪雅套房/至尊套房/外滩总会套房\n注:不享受双倍希尔顿积分,不与其他优惠同享,全江景客房不适用。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 1600778864,
"updateAt": 1600779019,
"createTime": "2020-09-22 20:47:44",
"updateTime": "2022-03-24 18:47:17",
"isExpire": 0
},
{
"id": 2818,
"hotelId": 2185,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚)",
"desc": "适用价格:仅限“专享”价格可享\n适用房型:全江景豪华房\n不可使用日期:4月3日-4月5日,4月30日-5月4日\n\n优惠内容:享受85折优惠,仅2晚连住可享(若住3晚,第三晚不享受折扣),预订成功后,联系在线客服确认优惠价格,不享受希尔顿双倍积分,不与其他优惠同享",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-01-07 12:07:17",
"updateTime": "2022-03-15 15:36:08",
"isExpire": 0
},
{
"id": 3865,
"hotelId": 2185,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": "2022-04-01",
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": "2022-03-23",
"name": "住3付2",
"desc": "适用价格:专享价\n适用房型:豪雅客房/豪雅城景客房/豪雅套房/至尊套房/外滩总会套房\n不可使用日期:4月3日-4月5日,4月30日-5月4日",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-15 15:35:13",
"updateTime": "2022-03-24 18:46:58",
"isExpire": 1
}
]
},
{
"id": 93,
"no": "gccirr923745",
"name": "",
"nameCn": "上海浦东文华东方酒店",
"address": "111 Pudong Road South Shanghai 31 200120 CN",
"addressCn": "上海市浦东新区浦东南路111号",
"mainImage": "https://staticfile.badazhou.com/20201010/c62ae57fcfa6a74838d6b60c82e6715b.jpg",
"memberId": 12,
"validPromotions": [
{
"id": 3317,
"hotelId": 93,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-09-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "价格类型:Fan Club-one More Night 3rd Nt\n适用房型:行政楼层江景客房及以上房型\n注:具体以查询为准,如查询不到此价格表示此日期关闭该优惠",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-07-12 10:38:47",
"updateTime": "2022-04-25 16:10:26",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 93,
"hotelId": 93,
"hotelCode": "50928",
"hotelChain": "MO",
"hasBenefits": 1
},
"member": {
"id": 12,
"name": "Fans of MO",
"registerInfo": "链接:https://www.mandarinoriental.com.cn/",
"hotelChains": "MO",
"phone": "4001324582",
"image": "https://staticfile.badazhou.com/20200924/00bb79b1bff3a6a4cc17862928ee3e30.png",
"weight": 10,
"createTime": "2020-09-17 11:57:44",
"updateTime": "2020-12-10 12:49:24"
},
"promotions": [
{
"id": 3381,
"hotelId": 93,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": "2021-09-01",
"checkoutEndDate": "2021-10-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "套房六折",
"desc": "适用价格:专享价\n适用房型:明珠套房\n不可使用日期:9月30日-10月4日\n\n注:不与其他优惠同享。\n注:预订成功后,可获得6倍Club8积分,联系在线客服申请价格。",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-20 15:00:01",
"updateTime": "2021-09-28 09:30:20",
"isExpire": 1
},
{
"id": 3698,
"hotelId": 93,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-04",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:专享价\n优惠内容:豪华江景房(大床) 升级至 文华江景房;行政江景房(大床) 升级至 行政文华江景房。\n\n注:预订时对应升级房型有房间,可享受保证升级房型。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-28 11:59:25",
"updateTime": "2022-01-28 11:59:25",
"isExpire": 1
},
{
"id": 3317,
"hotelId": 93,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-09-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "价格类型:Fan Club-one More Night 3rd Nt\n适用房型:行政楼层江景客房及以上房型\n注:具体以查询为准,如查询不到此价格表示此日期关闭该优惠",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-07-12 10:38:47",
"updateTime": "2022-04-25 16:10:26",
"isExpire": 0
}
]
},
{
"id": 7188,
"no": "noonls478270",
"name": "",
"nameCn": "上海宝格丽酒店",
"address": "NO.33 NORTH HENAN ROAD Shanghai 200085 CN",
"addressCn": "上海市静安区山西北路108弄",
"mainImage": "https://staticfile.badazhou.com/20200710/5f9008909997b3f341df99fec09ee736.jpg",
"memberId": 7,
"validPromotions": [],
"hasVideo": 1,
"gdsHotel": {
"id": 7188,
"hotelId": 7188,
"hotelCode": "E6622",
"hotelChain": "BG",
"hasBenefits": 1
},
"member": {
"id": 7,
"name": "万豪旅享家",
"registerInfo": "APP:万豪旅享家",
"hotelChains": "RZ,XR,EB,LC,WH,MC,SI,VC,DE,MD,WI,AK,BR,TX,GE,CY,FP,XV,PR,FN,AR,AL,OX,EE,RC,TO,EL,CC,ZC,ER,IM",
"phone": "4008903588",
"image": "https://staticfile.badazhou.com/20200924/fbf685fb9b746f26bbbabb5e4a139053.png",
"weight": 15,
"createTime": "2020-09-17 11:47:16",
"updateTime": "2022-04-25 11:53:47"
},
"promotions": [
{
"id": 2825,
"hotelId": 7188,
"typeName": "确认后享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-10",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "价格类型:专享价\n升级说明: \n高级城市景观房,可升级至:精选城市景观房(可升级为大床/双床 )\n精选城市大床房,可升级至:豪华外滩客房\n豪华外滩景观房,可升级至:精选外滩景观房 \n高级城市套房,可升级至:高级外滩套房 \n\n注:预订时对应升级房型有房时,可享受保证升级,预订成功后联系在线客服确认升级情况,可与连住优惠同享。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-01-12 09:57:33",
"updateTime": "2022-03-22 19:19:45",
"isExpire": 1
},
{
"id": 3395,
"hotelId": 7188,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-10",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:专享价\n适用房型:精选城市景观客房,豪华外滩客房,精选外滩客房,所有套房。\n优惠内容:连住2晚及以上,在专享礼遇的100美金基础上,客房额外赠送50美金消费额度; 所有套房额外赠送100美金消费额度。\n注:可与保证升级同享;消费额度仅适用于餐饮或SPA消费抵扣(不适用于购买SPA产品)",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-26 17:03:53",
"updateTime": "2022-03-22 19:19:52",
"isExpire": 1
},
{
"id": 3878,
"hotelId": 7188,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-03-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "意悦春日",
"desc": "适用价格:Spring Awakening-spa Credit\n适用房型:高级城市景观房\n优惠内容:升级至精选城市景观客房,延迟退房至下午16点,1000元Spa消费抵扣额度。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-22 18:11:31",
"updateTime": "2022-03-22 18:11:31",
"isExpire": 1
}
]
},
{
"id": 541,
"no": "jpevpa698813",
"name": "",
"nameCn": "上海浦东丽思卡尔顿酒店",
"address": "SHANGHAI IFC8CENTURY AVE LU Shanghai 200120 CN",
"addressCn": "上海市浦东新区陆家嘴世纪大道8号上海国金中心",
"mainImage": "https://staticfile.badazhou.com/20200709/50a029183744d892a3c4edfb8146606c.jpeg",
"memberId": 7,
"validPromotions": [],
"hasVideo": 1,
"gdsHotel": {
"id": 541,
"hotelId": 541,
"hotelCode": "06042",
"hotelChain": "RZ",
"hasBenefits": 1
},
"member": {
"id": 7,
"name": "万豪旅享家",
"registerInfo": "APP:万豪旅享家",
"hotelChains": "RZ,XR,EB,LC,WH,MC,SI,VC,DE,MD,WI,AK,BR,TX,GE,CY,FP,XV,PR,FN,AR,AL,OX,EE,RC,TO,EL,CC,ZC,ER,IM",
"phone": "4008903588",
"image": "https://staticfile.badazhou.com/20200924/fbf685fb9b746f26bbbabb5e4a139053.png",
"weight": 15,
"createTime": "2020-09-17 11:47:16",
"updateTime": "2022-04-25 11:53:47"
},
"promotions": [
{
"id": 3628,
"hotelId": 541,
"typeName": "确认后享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-29",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "直升套房",
"desc": "适用价格:Stars Free Upgrade Offer\n适用房型:外滩景观房(大床)\n优惠内容:预订时有房,保证升级至上海外滩江景套房(不享受行政礼遇)",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-13 11:29:48",
"updateTime": "2022-03-24 12:00:52",
"isExpire": 1
},
{
"id": 3629,
"hotelId": 541,
"typeName": "确认后享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2021-12-22",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(豪华房)",
"desc": "适用价格:Stars Comp Night Offer 或 专享价\n适用房型:豪华房\n\n注:预订成功后,联系在线客服申请价格。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-13 16:01:38",
"updateTime": "2021-12-13 16:19:53",
"isExpire": 1
},
{
"id": 3284,
"hotelId": 541,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-29",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级行政礼遇",
"desc": "适用价格:Stars Free Upgrade Offer\n适用房型:行政摩天景观房\n优惠内容:摩天景观房房价,入住行政摩天景观房(免费升级双人行政礼遇),不再享受升级房型。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-06-25 16:29:47",
"updateTime": "2022-03-24 12:01:54",
"isExpire": 1
},
{
"id": 3484,
"hotelId": 541,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-28",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(套房)",
"desc": "适用价格:Stars Comp Night Offer 或 专享价\n适用房型:行政全景套房,东方明珠江景套房,明珠外滩江景套房\n不可使用日期:2月12日-2月14日 \n\n注:预订成功后,联系在线客服申请价格",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-10-27 09:04:59",
"updateTime": "2022-02-09 15:55:10",
"isExpire": 1
}
]
},
{
"id": 11645,
"no": "zrvkig571840",
"name": "",
"nameCn": "J酒店上海中心",
"address": "Shanghai Tower Shanghai 31 200120 CN",
"addressCn": "上海市浦东新区东泰路126号上海中心大厦",
"mainImage": "https://staticfile.badazhou.com/20210727/4187576296626fa8348b717f6d97ebaf.jpeg",
"memberId": 10,
"validPromotions": [
{
"id": 3631,
"hotelId": 11645,
"typeName": "订立享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:Vita Winter Promotion\n适用房型:祥云客房,凌空客房\n优惠内容:连住2晚及以上,合计可享受150美金餐饮消费抵扣额度。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-13 18:09:54",
"updateTime": "2022-03-01 15:14:29",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 11645,
"hotelId": 11645,
"hotelCode": "F8755",
"hotelChain": "LW",
"hasBenefits": 1
},
"member": {
"id": 10,
"name": "立鼎世尊享贵宾会",
"registerInfo": "微信公众号:立鼎世酒店集团\n预订时候务必输入会员号码",
"hotelChains": "LW",
"phone": "4001324582",
"image": "https://staticfile.badazhou.com/20200924/7c7ad693f4df24e82818f6a33a3c28bd.png",
"weight": 9,
"createTime": "2020-09-17 11:54:00",
"updateTime": "2022-01-26 15:22:29"
},
"promotions": [
{
"id": 3343,
"hotelId": 11645,
"typeName": "订立享",
"weight": 6,
"checkinStartDate": null,
"checkoutEndDate": "2022-03-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "入住礼遇",
"desc": "祥云客房,凌空客房及云上套房享受大堂酒廊,欢乐时光礼遇,免费的迷你吧软饮;\nJ套房享受大堂酒廊,欢乐时光礼遇,全部免费的迷你吧。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-07-24 21:19:11",
"updateTime": "2022-02-28 17:24:14",
"isExpire": 1
},
{
"id": 3615,
"hotelId": 11645,
"typeName": "订立享",
"weight": 5,
"checkinStartDate": "2021-12-05",
"checkoutEndDate": "2022-02-13",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "套房特价",
"desc": "适用价格:专享价\n适用房型:云上套房\n优惠内容:惊喜特价8800元/晚,享专享礼遇。\n\n适用价格:专享价\n适用房型:云上套房,J套房\n优惠内容:连住2晚7折优惠,享专享礼遇。\n可用日期参考:1/30-2/6",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-03 10:43:01",
"updateTime": "2022-02-28 17:24:14",
"isExpire": 1
},
{
"id": 3631,
"hotelId": 11645,
"typeName": "订立享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:Vita Winter Promotion\n适用房型:祥云客房,凌空客房\n优惠内容:连住2晚及以上,合计可享受150美金餐饮消费抵扣额度。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-13 18:09:54",
"updateTime": "2022-03-01 15:14:29",
"isExpire": 0
},
{
"id": 3655,
"hotelId": 11645,
"typeName": "订立享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-28",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "至臻时刻",
"desc": "适用价格:Celebration At J\n适用房型:J套房\n优惠内容:双人早餐,双人私密浪漫晚餐(主厨设计6道式意大利套餐及餐酒),香槟一瓶。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-28 11:03:52",
"updateTime": "2022-03-01 15:14:22",
"isExpire": 1
},
{
"id": 3694,
"hotelId": 11645,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-28",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "冬日暖心(2晚起)",
"desc": "适用价格:Warm Winter 2 Night Package\n适用房型:祥云客房,凌空客房,云上套房\n不可使用日期:2月14日\n优惠内容:连住2晚及以上,可享免费双人早餐,一次双人四道式日式寿喜锅套餐。\n注:需至少提前2天预订可享。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-25 09:29:00",
"updateTime": "2022-02-28 17:24:14",
"isExpire": 1
},
{
"id": 3695,
"hotelId": 11645,
"typeName": "订立享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-28",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "云上奇珍",
"desc": "适用价格:Chinese Art Journey\n适用房型:祥云客房,凌空客房,云上套房\n不可使用日期:2月14日\n优惠内容:免费双人早餐,独享专人定制导览,参观观复博物馆及宝库匠心馆(2小时)\n注:需至少提前3天预订。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-25 09:35:36",
"updateTime": "2022-02-28 17:24:14",
"isExpire": 1
}
]
},
{
"id": 10319,
"no": "xjjtrj148358",
"name": "",
"nameCn": "上海浦东丽晶酒店",
"address": "210 CENTURY AVENUE SHANGHAI 200120 CN",
"addressCn": "上海市浦东新区世纪大道210号",
"mainImage": "https://staticfile.badazhou.com/20210517/43e0dbba35c40a8863b4a3e34755f33f.jpeg",
"memberId": 4,
"validPromotions": [
{
"id": 2504,
"hotelId": 10319,
"typeName": "订立享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:仅“Ihg”专享价可享\n注:具体以查询为准,部分日期可能不可用,如有问题请联系在线客服确认。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 1601002014,
"updateAt": 1602319289,
"createTime": "2020-09-25 10:46:54",
"updateTime": "2022-03-07 14:03:15",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 10319,
"hotelId": 10319,
"hotelCode": "G0854",
"hotelChain": "RE",
"hasBenefits": 1
},
"member": {
"id": 4,
"name": "洲际优悦会",
"registerInfo": "微信小程序:洲际酒店集团IHG优悦会",
"hotelChains": "IC,RE,CP,KC,IN,HI,UL,VX",
"phone": "4008302360",
"image": "https://staticfile.badazhou.com/20200924/7fc21208450eecf2dd6c7cb86945cf4f.png",
"weight": 11,
"createTime": "2020-09-17 11:38:06",
"updateTime": "2020-09-25 20:57:10"
},
"promotions": [
{
"id": 2504,
"hotelId": 10319,
"typeName": "订立享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:仅“Ihg”专享价可享\n注:具体以查询为准,部分日期可能不可用,如有问题请联系在线客服确认。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 1601002014,
"updateAt": 1602319289,
"createTime": "2020-09-25 10:46:54",
"updateTime": "2022-03-07 14:03:15",
"isExpire": 0
}
]
},
{
"id": 6097,
"no": "sbucyt974910",
"name": "",
"nameCn": "上海万达瑞华酒店",
"address": "538 Zhong Shan Dong Er Road Shanghai 31 200010 CN",
"addressCn": "上海黄浦区中山东二路538号",
"mainImage": "https://staticfile.badazhou.com/20200709/2a0d7ff669d7ea21d5266d032f639d0a.jpeg",
"memberId": 1,
"validPromotions": [
{
"id": 3652,
"hotelId": 6097,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:专享价\n优惠内容:住3付2,预订时下一等级有房保证升级房型(豪华房连免费升级至豪华豫园房,豪华豫园房免费升级至豪华浦江房),入住期间可享用首轮迷你吧小食及软饮。\n注:特殊促销不含100美金消费抵扣额度。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-27 15:58:21",
"updateTime": "2022-04-29 17:27:27",
"isExpire": 0
}
],
"hasVideo": 0,
"gdsHotel": {
"id": 6097,
"hotelId": 6097,
"hotelCode": "C3806",
"hotelChain": "PH",
"hasBenefits": 1
},
"member": {
"id": 1,
"name": "璞富腾",
"registerInfo": "微信公众号:PreferredHotels",
"hotelChains": "PH,LE",
"phone": "4006013552",
"image": "https://staticfile.badazhou.com/20200924/0ea352c9d914a5773cd433ad6e5d6b5b.png",
"weight": 7,
"createTime": "2020-09-17 11:29:55",
"updateTime": "2021-08-11 09:35:12"
},
"promotions": [
{
"id": 3139,
"hotelId": 6097,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2021-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:Where Next\n优惠内容:免费双人早餐,一次精致季节限定主题双人下午茶,视房态升级房型,视房态提前入住或延迟退房。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-05-19 09:33:06",
"updateTime": "2021-05-19 09:33:06",
"isExpire": 1
},
{
"id": 3652,
"hotelId": 6097,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:专享价\n优惠内容:住3付2,预订时下一等级有房保证升级房型(豪华房连免费升级至豪华豫园房,豪华豫园房免费升级至豪华浦江房),入住期间可享用首轮迷你吧小食及软饮。\n注:特殊促销不含100美金消费抵扣额度。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-27 15:58:21",
"updateTime": "2022-04-29 17:27:27",
"isExpire": 0
}
]
},
{
"id": 3186,
"no": "gzvbbk476771",
"name": "",
"nameCn": "上海和平饭店",
"address": "20 Nanjing Road East Shanghai 200002 CN",
"addressCn": "上海市黄浦区南京东路20号",
"mainImage": "https://staticfile.badazhou.com/20200710/06e002e477298f461c4a8f3e7f8e3a5e.jpg",
"memberId": 3,
"validPromotions": [
{
"id": 3397,
"hotelId": 3186,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Step Rate 3rd Night Free\n\n注:部分日期可能会关闭此优惠,具体以查询为准,不与其他优惠同享。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-30 17:46:10",
"updateTime": "2021-12-23 11:35:46",
"isExpire": 0
},
{
"id": 1487,
"hotelId": 3186,
"typeName": "订立享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住4付3",
"desc": "适用价格:Step Rate 4th Night Free\n\n注:部分日期可能会关闭此优惠,具体以查询为准,不与其他优惠同享。",
"needHotelConfirm": 0,
"isDelete": 1,
"createAt": 1584951889,
"updateAt": 1612428304,
"createTime": "2020-03-23 16:24:49",
"updateTime": "2021-12-23 11:35:46",
"isExpire": 0
},
{
"id": 3884,
"hotelId": 3186,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": "2022-04-01",
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "8.5折优惠",
"desc": "适用价格:Step Rate \n适用房型:所有房型\n优惠内容:享受8.5折优惠,并享受免费升级双人早餐,50美金酒店消费抵扣额度,视房态升级房型,入住欢迎礼遇,参观酒店历史博物馆(每日10点至19点)\n额外:预订费尔蒙房免费升级至豪华房\n\n注:预订成功后,联系在线客服申请价格,不与其他优惠同享。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-28 15:26:42",
"updateTime": "2022-03-28 15:26:42",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 3186,
"hotelId": 3186,
"hotelCode": "49240",
"hotelChain": "FA",
"hasBenefits": 1
},
"member": {
"id": 3,
"name": "雅高心悦界",
"registerInfo": "APP:Accor All  - 酒店预订",
"hotelChains": "RT,SB,FA,BY,PU,SL,MK,YR,RX",
"phone": "4001335533",
"image": "https://staticfile.badazhou.com/20200924/701f261b9030ea641c04f3675e0114af.png",
"weight": 8,
"createTime": "2020-09-17 11:35:57",
"updateTime": "2021-07-28 16:31:41"
},
"promotions": [
{
"id": 3432,
"hotelId": 3186,
"typeName": "确认后享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-03-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "7.5折优惠",
"desc": "适用价格:Step Rate \n适用房型:所有房型\n优惠内容:享受7.5折优惠,并享受免费升级双人早餐,50美金酒店消费抵扣额度,视房态升级房型,入住欢迎礼遇,参观酒店历史博物馆(每日10点至19点)\n额外:预订费尔蒙房免费升级至豪华房\n\n注:预订成功后,联系在线客服申请价格,不与其他优惠同享。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-09-23 20:46:56",
"updateTime": "2022-03-28 15:26:00",
"isExpire": 1
},
{
"id": 3647,
"hotelId": 3186,
"typeName": "确认后享",
"weight": 3,
"checkinStartDate": "2021-12-31",
"checkoutEndDate": "2021-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "跨年专享",
"desc": "适用价格: Best Available Rate\n适用房型:所有房型\n优惠内容:享受9折优惠,并享受免费升级双人早餐,50美金酒店消费抵扣额度,视房态升级房型,入住欢迎礼遇,参观酒店历史博物馆(每日10点至19点)\n额外:预订费尔蒙房免费升级至豪华房\n\n注:预订成功后,联系在线客服申请价格,不与其他优惠同享,预订成功后需要24小时内支付至酒店。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-23 11:35:08",
"updateTime": "2021-12-23 11:36:17",
"isExpire": 1
},
{
"id": 3397,
"hotelId": 3186,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Step Rate 3rd Night Free\n\n注:部分日期可能会关闭此优惠,具体以查询为准,不与其他优惠同享。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-30 17:46:10",
"updateTime": "2021-12-23 11:35:46",
"isExpire": 0
},
{
"id": 1487,
"hotelId": 3186,
"typeName": "订立享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住4付3",
"desc": "适用价格:Step Rate 4th Night Free\n\n注:部分日期可能会关闭此优惠,具体以查询为准,不与其他优惠同享。",
"needHotelConfirm": 0,
"isDelete": 1,
"createAt": 1584951889,
"updateAt": 1612428304,
"createTime": "2020-03-23 16:24:49",
"updateTime": "2021-12-23 11:35:46",
"isExpire": 0
},
{
"id": 3884,
"hotelId": 3186,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": "2022-04-01",
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "8.5折优惠",
"desc": "适用价格:Step Rate \n适用房型:所有房型\n优惠内容:享受8.5折优惠,并享受免费升级双人早餐,50美金酒店消费抵扣额度,视房态升级房型,入住欢迎礼遇,参观酒店历史博物馆(每日10点至19点)\n额外:预订费尔蒙房免费升级至豪华房\n\n注:预订成功后,联系在线客服申请价格,不与其他优惠同享。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-28 15:26:42",
"updateTime": "2022-03-28 15:26:42",
"isExpire": 0
}
]
},
{
"id": 6195,
"no": "qswkum060632",
"name": "",
"nameCn": "上海苏宁宝丽嘉酒店",
"address": "No 188 Beisuzhou Road Shanghai 200080 CN",
"addressCn": "上海虹口区北苏州路188号",
"mainImage": "https://staticfile.badazhou.com/20200812/fdd256fb490fdbb76f83b0096b246c62.jpg",
"memberId": 10,
"validPromotions": [
{
"id": 2893,
"hotelId": 6195,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Vita Commissionable Promotion;One More Night Promotion\n适用房型:豪华露台房,豪华江景房,露台江景房,豪华套房,豪华江景套房,行政套房,行政江景套房,连续入住期间最多可享受100美金,并且100美金仅限单次使用。\n\n注:套房额外赠送一次单次接机或送机,不与其它优惠同享,需要至提前1天预订,部分日期可能不可用,具体以查询为准。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-01-22 10:43:00",
"updateTime": "2022-03-23 19:08:18",
"isExpire": 0
},
{
"id": 2559,
"hotelId": 6195,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:Virtuoso专享价\n升级说明:豪华客房→豪华露台客房→豪华江景客房→豪华江景露台客房→精选露台江景客房、豪华套房→豪华江景套房、行政套房→行政江景套房\n注:节假日不可用,不与其他优惠同享,在预定时候对应升级有房可享,升级成功与否需与酒店申请反馈为准。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2020-09-28 17:39:14",
"updateTime": "2022-02-10 15:08:17",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 6195,
"hotelId": 6195,
"hotelCode": "D1909",
"hotelChain": "LW",
"hasBenefits": 1
},
"member": {
"id": 10,
"name": "立鼎世尊享贵宾会",
"registerInfo": "微信公众号:立鼎世酒店集团\n预订时候务必输入会员号码",
"hotelChains": "LW",
"phone": "4001324582",
"image": "https://staticfile.badazhou.com/20200924/7c7ad693f4df24e82818f6a33a3c28bd.png",
"weight": 9,
"createTime": "2020-09-17 11:54:00",
"updateTime": "2022-01-26 15:22:29"
},
"promotions": [
{
"id": 3439,
"hotelId": 6195,
"typeName": "订立享",
"weight": 3,
"checkinStartDate": null,
"checkoutEndDate": "2022-03-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "套房8折",
"desc": "适用价格:Vita Commissionable Promo,Virtuoso Promo For Suites\n适用房型:豪华套房,豪华江景套房,行政套房,行政江景套房\n注:特殊促销不再享受升级房型礼遇。",
"needHotelConfirm": 0,
"isDelete": 1,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-09-27 13:39:40",
"updateTime": "2022-01-29 14:12:49",
"isExpire": 1
},
{
"id": 2893,
"hotelId": 6195,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Vita Commissionable Promotion;One More Night Promotion\n适用房型:豪华露台房,豪华江景房,露台江景房,豪华套房,豪华江景套房,行政套房,行政江景套房,连续入住期间最多可享受100美金,并且100美金仅限单次使用。\n\n注:套房额外赠送一次单次接机或送机,不与其它优惠同享,需要至提前1天预订,部分日期可能不可用,具体以查询为准。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-01-22 10:43:00",
"updateTime": "2022-03-23 19:08:18",
"isExpire": 0
},
{
"id": 2559,
"hotelId": 6195,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:Virtuoso专享价\n升级说明:豪华客房→豪华露台客房→豪华江景客房→豪华江景露台客房→精选露台江景客房、豪华套房→豪华江景套房、行政套房→行政江景套房\n注:节假日不可用,不与其他优惠同享,在预定时候对应升级有房可享,升级成功与否需与酒店申请反馈为准。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2020-09-28 17:39:14",
"updateTime": "2022-02-10 15:08:17",
"isExpire": 0
}
]
},
{
"id": 542,
"no": "zmcwco787305",
"name": "",
"nameCn": "上海静安瑞吉酒店",
"address": "1008 Beijing West Road Shanghai 200041 CN",
"addressCn": "上海市静安区北京西路1008号",
"mainImage": "https://staticfile.badazhou.com/20220119/6e5ceaadb1b0e988006c741a6b2b5c5b.jpeg",
"memberId": 7,
"validPromotions": [],
"hasVideo": 1,
"gdsHotel": {
"id": 542,
"hotelId": 542,
"hotelCode": "D4122",
"hotelChain": "XR",
"hasBenefits": 1
},
"member": {
"id": 7,
"name": "万豪旅享家",
"registerInfo": "APP:万豪旅享家",
"hotelChains": "RZ,XR,EB,LC,WH,MC,SI,VC,DE,MD,WI,AK,BR,TX,GE,CY,FP,XV,PR,FN,AR,AL,OX,EE,RC,TO,EL,CC,ZC,ER,IM",
"phone": "4008903588",
"image": "https://staticfile.badazhou.com/20200924/fbf685fb9b746f26bbbabb5e4a139053.png",
"weight": 15,
"createTime": "2020-09-17 11:47:16",
"updateTime": "2022-04-25 11:53:47"
},
"promotions": [
{
"id": 1848,
"hotelId": 542,
"typeName": "确认后享",
"weight": 6,
"checkinStartDate": "2022-01-01",
"checkoutEndDate": "2022-04-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Stars Promotional Offer 或 专享价\n适用房型:行政房 至 卡洛琳艾斯特套房\n\n注:预订完成后,请联系在线客服申请价格,连续入住期间仅享受一次此优惠。",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 1589535893,
"updateAt": 1605851885,
"createTime": "2020-05-15 17:44:53",
"updateTime": "2022-03-10 13:12:11",
"isExpire": 1
},
{
"id": 3702,
"hotelId": 542,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:专享价\n适用房型:豪华房\n优惠内容:预订豪华客房(大床),在预订时高级豪华房有房间享受保证升级。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-07 15:44:07",
"updateTime": "2022-03-10 13:37:54",
"isExpire": 1
}
]
},
{
"id": 4834,
"no": "mbabiy692078",
"name": "",
"nameCn": "上海康莱德酒店",
"address": "789 Nanjing Road East Shanghai 200001 CN",
"addressCn": "上海市黄浦区南京东路 789 号",
"mainImage": "https://staticfile.badazhou.com/20211231/1443cad2b493f397706b8503db480d2d.jpeg",
"memberId": 6,
"validPromotions": [
{
"id": 3691,
"hotelId": 4834,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-07-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "开业促销",
"desc": "适用价格:Opening Offer\n优惠内容:入住期间额外获赠5000希尔顿酒店会员积分",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-21 10:38:58",
"updateTime": "2022-01-21 10:38:58",
"isExpire": 0
}
],
"hasVideo": 0,
"gdsHotel": {
"id": 4834,
"hotelId": 4834,
"hotelCode": "13873",
"hotelChain": "CN",
"hasBenefits": 1
},
"member": {
"id": 6,
"name": "希尔顿荣誉客会",
"registerInfo": "微信小程序:希尔顿官方预订",
"hotelChains": "DT,HL,WA,CN,PY,QQ,GI,HG,ES,HH,OL",
"phone": "4008200500",
"image": "https://staticfile.badazhou.com/20200924/a628f53e243db3e654fe99fc22ae777b.png",
"weight": 13,
"createTime": "2020-09-17 11:43:57",
"updateTime": "2022-04-20 11:23:39"
},
"promotions": [
{
"id": 3691,
"hotelId": 4834,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-07-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "开业促销",
"desc": "适用价格:Opening Offer\n优惠内容:入住期间额外获赠5000希尔顿酒店会员积分",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-21 10:38:58",
"updateTime": "2022-01-21 10:38:58",
"isExpire": 0
}
]
},
{
"id": 2080,
"no": "bmcehw493524",
"name": "",
"nameCn": "上海柏悦酒店",
"address": "100 Century Avenue Shanghai 200120 CN",
"addressCn": "上海市浦东新区世纪大道100号上海环球金融中心79-93楼(近东泰路)",
"mainImage": "https://staticfile.badazhou.com/20200817/d8f96f1c55d7a26275dcd9ee53f70a9d.jpg",
"memberId": 5,
"validPromotions": [
{
"id": 3663,
"hotelId": 2080,
"typeName": "确认后享",
"weight": 3,
"checkinStartDate": "2022-05-15",
"checkoutEndDate": "2022-08-31",
"bookingStartDate": "2022-05-12",
"bookingEndDate": null,
"name": "保证升两级",
"desc": "适用价格:专享价\n优惠内容:预订柏悦大床房,预订时浦江景观大床房有房时享受保证升级。\n注:医护本人持证预订外滩景观豪华房,柏悦套房有房享受保证升级(每日限量1间)。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-06 10:32:05",
"updateTime": "2022-05-11 14:15:54",
"isExpire": 0
},
{
"id": 3824,
"hotelId": 2080,
"typeName": "确认后享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "直升套房",
"desc": "适用价格:专享价\n适用房型:外滩景观豪华大床房\n优惠内容:预订外滩景观豪华大床房可升级至套房,具体升级后的房型请联系在线客服确认,如柏悦套房,外滩景观套房。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-03 13:43:07",
"updateTime": "2022-05-11 14:15:54",
"isExpire": 0
},
{
"id": 3659,
"hotelId": 2080,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:专享价\n不可使用日期:周五,周六入住,法定节假日不可用。\n优惠内容:预订时候,下一个等级有房,享受保证升级(最高至外滩景观房)\n\n注:预订成功后,联系在线客服升级房型。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-05 11:49:37",
"updateTime": "2022-05-11 14:15:54",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 2080,
"hotelId": 2080,
"hotelCode": "84166",
"hotelChain": "HY",
"hasBenefits": 1
},
"member": {
"id": 5,
"name": "凯悦天地",
"registerInfo": "微信小程序:凯悦Hyatt",
"hotelChains": "HY,LF,JV,DN,TM",
"phone": "4008391234",
"image": "https://staticfile.badazhou.com/20200924/a0bd287e69663a70c6efaa0e2ed15e4f.png",
"weight": 14,
"createTime": "2020-09-17 11:41:46",
"updateTime": "2020-09-28 16:01:39"
},
"promotions": [
{
"id": 3663,
"hotelId": 2080,
"typeName": "确认后享",
"weight": 3,
"checkinStartDate": "2022-05-15",
"checkoutEndDate": "2022-08-31",
"bookingStartDate": "2022-05-12",
"bookingEndDate": null,
"name": "保证升两级",
"desc": "适用价格:专享价\n优惠内容:预订柏悦大床房,预订时浦江景观大床房有房时享受保证升级。\n注:医护本人持证预订外滩景观豪华房,柏悦套房有房享受保证升级(每日限量1间)。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-06 10:32:05",
"updateTime": "2022-05-11 14:15:54",
"isExpire": 0
},
{
"id": 3824,
"hotelId": 2080,
"typeName": "确认后享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "直升套房",
"desc": "适用价格:专享价\n适用房型:外滩景观豪华大床房\n优惠内容:预订外滩景观豪华大床房可升级至套房,具体升级后的房型请联系在线客服确认,如柏悦套房,外滩景观套房。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-03 13:43:07",
"updateTime": "2022-05-11 14:15:54",
"isExpire": 0
},
{
"id": 3659,
"hotelId": 2080,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:专享价\n不可使用日期:周五,周六入住,法定节假日不可用。\n优惠内容:预订时候,下一个等级有房,享受保证升级(最高至外滩景观房)\n\n注:预订成功后,联系在线客服升级房型。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-05 11:49:37",
"updateTime": "2022-05-11 14:15:54",
"isExpire": 0
}
]
},
{
"id": 7148,
"no": "bbukmq034210",
"name": "",
"nameCn": "上海外滩茂悦大酒店",
"address": "199 Huangpu Rd Shanghai 200080 CN",
"addressCn": "上海虹口区黄浦路199号",
"mainImage": "https://staticfile.badazhou.com/20200720/8b1f4214d8fdac7eb98286ec953fd807.jpg",
"memberId": 5,
"validPromotions": [
{
"id": 3942,
"hotelId": 7148,
"typeName": "确认后享",
"weight": 2,
"checkinStartDate": "2022-05-15",
"checkoutEndDate": "2022-08-31",
"bookingStartDate": "2022-05-12",
"bookingEndDate": null,
"name": "保证升两级",
"desc": "适用价格:专享价\n优惠内容:预定茂悦江景房,预订时嘉宾轩江景房有房享受保证升级。\n注:医护本人持证预定茂悦江景房,预订时外滩套房有房享受保证升级。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-04-25 10:50:27",
"updateTime": "2022-05-11 14:15:35",
"isExpire": 0
},
{
"id": 3825,
"hotelId": 7148,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:专享价\n适用房型:茂悦江景客房(大床)\n优惠内容:预订时嘉宾轩客房有房时,可享受保证升级",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-03 16:07:12",
"updateTime": "2022-05-11 14:15:35",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 7148,
"hotelId": 7148,
"hotelCode": "55513",
"hotelChain": "HY",
"hasBenefits": 1
},
"member": {
"id": 5,
"name": "凯悦天地",
"registerInfo": "微信小程序:凯悦Hyatt",
"hotelChains": "HY,LF,JV,DN,TM",
"phone": "4008391234",
"image": "https://staticfile.badazhou.com/20200924/a0bd287e69663a70c6efaa0e2ed15e4f.png",
"weight": 14,
"createTime": "2020-09-17 11:41:46",
"updateTime": "2020-09-28 16:01:39"
},
"promotions": [
{
"id": 3942,
"hotelId": 7148,
"typeName": "确认后享",
"weight": 2,
"checkinStartDate": "2022-05-15",
"checkoutEndDate": "2022-08-31",
"bookingStartDate": "2022-05-12",
"bookingEndDate": null,
"name": "保证升两级",
"desc": "适用价格:专享价\n优惠内容:预定茂悦江景房,预订时嘉宾轩江景房有房享受保证升级。\n注:医护本人持证预定茂悦江景房,预订时外滩套房有房享受保证升级。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-04-25 10:50:27",
"updateTime": "2022-05-11 14:15:35",
"isExpire": 0
},
{
"id": 3825,
"hotelId": 7148,
"typeName": "确认后享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:专享价\n适用房型:茂悦江景客房(大床)\n优惠内容:预订时嘉宾轩客房有房时,可享受保证升级",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-03 16:07:12",
"updateTime": "2022-05-11 14:15:35",
"isExpire": 0
}
]
},
{
"id": 5160,
"no": "gzfpyp203846",
"name": "",
"nameCn": "上海外滩W酒店",
"address": "No 66 Lvshun Road Shanghai 200080 CN",
"addressCn": "上海市虹口区旅顺路66号",
"mainImage": "https://staticfile.badazhou.com/20200709/bfee310472093f99b58935887c5fe8c4.jpeg",
"memberId": 7,
"validPromotions": [
{
"id": 3818,
"hotelId": 5160,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(套房)",
"desc": "适用价格:Luminous Seasonal Promotion, Buy 3 Nights Get 3rd Free\n适用房型:外滩景观奇幻套房",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-01 10:56:18",
"updateTime": "2022-03-01 10:56:18",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 5160,
"hotelId": 5160,
"hotelCode": "C8284",
"hotelChain": "WH",
"hasBenefits": 1
},
"member": {
"id": 7,
"name": "万豪旅享家",
"registerInfo": "APP:万豪旅享家",
"hotelChains": "RZ,XR,EB,LC,WH,MC,SI,VC,DE,MD,WI,AK,BR,TX,GE,CY,FP,XV,PR,FN,AR,AL,OX,EE,RC,TO,EL,CC,ZC,ER,IM",
"phone": "4008903588",
"image": "https://staticfile.badazhou.com/20200924/fbf685fb9b746f26bbbabb5e4a139053.png",
"weight": 15,
"createTime": "2020-09-17 11:47:16",
"updateTime": "2022-04-25 11:53:47"
},
"promotions": [
{
"id": 3296,
"hotelId": 5160,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-03-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "85折优惠(2晚起)",
"desc": "适用价格:Luminous Promotional Offer",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-07-02 11:23:15",
"updateTime": "2022-03-01 10:55:29",
"isExpire": 1
},
{
"id": 3818,
"hotelId": 5160,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(套房)",
"desc": "适用价格:Luminous Seasonal Promotion, Buy 3 Nights Get 3rd Free\n适用房型:外滩景观奇幻套房",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-03-01 10:56:18",
"updateTime": "2022-03-01 10:56:18",
"isExpire": 0
}
]
},
{
"id": 90,
"no": "yudrqs441620",
"name": "",
"nameCn": "上海半岛酒店",
"address": "No 32 The Bund 32 Zhongshan Dong Yi Road Shanghai 200002 China",
"addressCn": "上海市黄浦区中山东一路32号",
"mainImage": "https://staticfile.badazhou.com/20200709/f3aa0e9de6049a58ecea54ae56e0fffe.jpeg",
"memberId": 0,
"validPromotions": [
{
"id": 3382,
"hotelId": 90,
"typeName": "确认后享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:仅限 Penclub 专享价可享\n优惠内容:预订时保证升级房型(主题套房不参与),下一个房型有房时,享受此优惠。\n\n注:客房升级客房,套房升级套房。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-23 17:10:44",
"updateTime": "2021-12-27 22:11:45",
"isExpire": 0
},
{
"id": 2612,
"hotelId": 90,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(套房)",
"desc": "价格类型:Consortia More Time With Our Compliments\n注:仅Penclub价格可与保证升级同享",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2020-11-13 11:06:23",
"updateTime": "2021-12-17 14:22:03",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 90,
"hotelId": 90,
"hotelCode": "81538",
"hotelChain": "PN",
"hasBenefits": 1
},
"member": null,
"promotions": [
{
"id": 3382,
"hotelId": 90,
"typeName": "确认后享",
"weight": 4,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "保证升级",
"desc": "适用价格:仅限 Penclub 专享价可享\n优惠内容:预订时保证升级房型(主题套房不参与),下一个房型有房时,享受此优惠。\n\n注:客房升级客房,套房升级套房。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-08-23 17:10:44",
"updateTime": "2021-12-27 22:11:45",
"isExpire": 0
},
{
"id": 2612,
"hotelId": 90,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(套房)",
"desc": "价格类型:Consortia More Time With Our Compliments\n注:仅Penclub价格可与保证升级同享",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2020-11-13 11:06:23",
"updateTime": "2021-12-17 14:22:03",
"isExpire": 0
},
{
"id": 939,
"hotelId": 90,
"typeName": "订立享",
"weight": 1,
"checkinStartDate": null,
"checkoutEndDate": "2022-03-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住4付3",
"desc": "价格类型: Virtuoso Fourth Nights On Us Room Offer & Penclub Fourth Nights On Us Room Offer \n注:仅Penclub价格可与保证升级同享",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 1568601931,
"updateAt": 1586767990,
"createTime": "2019-09-16 10:45:31",
"updateTime": "2021-12-24 11:31:03",
"isExpire": 1
},
{
"id": 3440,
"hotelId": 90,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2021-12-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "额外消费抵扣(2晚起)",
"desc": "适用价格:Virtuoso Stay Two Nights\n优惠内容:连住2晚及以上,在专享价格基础上,入住期间普通房额外赠送50美金餐饮消费抵扣额度,入住期间套房额外赠送100美金餐饮消费抵扣额度。\n\n注:不与其他优惠同享",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-09-28 11:49:28",
"updateTime": "2021-10-13 08:54:35",
"isExpire": 1
}
]
},
{
"id": 7219,
"no": "aahqqc782212",
"name": "",
"nameCn": "上海艾迪逊酒店",
"address": "199 NANJING ROAD EAST Shanghai 200002 CN",
"addressCn": "上海市黄浦区南京东路199号",
"mainImage": "https://staticfile.badazhou.com/20200710/b4017109fb9d236c9a631161094a001a.jpg",
"memberId": 7,
"validPromotions": [
{
"id": 3058,
"hotelId": 7219,
"typeName": "确认后享",
"weight": 13,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Stars Promotional Offer(查询不到此价格时预订专享价即可)\n适用房型:风尚城景客房,外滩景观客房\n\n注:预订成功后,联系在线客服申请价格",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-04-14 16:15:18",
"updateTime": "2022-05-05 14:36:22",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 7219,
"hotelId": 7219,
"hotelCode": "E6925",
"hotelChain": "EB",
"hasBenefits": 1
},
"member": {
"id": 7,
"name": "万豪旅享家",
"registerInfo": "APP:万豪旅享家",
"hotelChains": "RZ,XR,EB,LC,WH,MC,SI,VC,DE,MD,WI,AK,BR,TX,GE,CY,FP,XV,PR,FN,AR,AL,OX,EE,RC,TO,EL,CC,ZC,ER,IM",
"phone": "4008903588",
"image": "https://staticfile.badazhou.com/20200924/fbf685fb9b746f26bbbabb5e4a139053.png",
"weight": 15,
"createTime": "2020-09-17 11:47:16",
"updateTime": "2022-04-25 11:53:47"
},
"promotions": [
{
"id": 3058,
"hotelId": 7219,
"typeName": "确认后享",
"weight": 13,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Stars Promotional Offer(查询不到此价格时预订专享价即可)\n适用房型:风尚城景客房,外滩景观客房\n\n注:预订成功后,联系在线客服申请价格",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-04-14 16:15:18",
"updateTime": "2022-05-05 14:36:22",
"isExpire": 0
},
{
"id": 3685,
"hotelId": 7219,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-11",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "直升套房",
"desc": "适用价格:Seasonal Promotion\n适用房型:外滩景观套房\n优惠内容:使用风尚外滩景观房价格,入住外滩景观套房。\n\n注:部分日期可能会关闭该促销,具体以查询为准,需预定指定价格可享。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-01-19 13:32:48",
"updateTime": "2022-01-23 18:18:22",
"isExpire": 1
},
{
"id": 3709,
"hotelId": 7219,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-29",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连升四级",
"desc": "适用价格:Seasonal Promotion\n适用房型:明珠外滩房\n优惠内容:豪华房价格,入住明珠外滩房;显示价格已为升级房型后的优惠价格。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-10 11:17:40",
"updateTime": "2022-03-23 15:39:55",
"isExpire": 1
},
{
"id": 3732,
"hotelId": 7219,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-02-14",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "情人节套餐",
"desc": "适用价格:Romantic Night With Editio\n适用房型:外滩景观套房\n优惠内容:\n* 西餐厅双人早餐 \n* 艾迪逊情侣浴袍\n* 一瓶巴黎之花香槟 \n* 心动房间礼遇",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-11 15:35:28",
"updateTime": "2022-02-11 15:35:28",
"isExpire": 1
}
]
},
{
"id": 7191,
"no": "luoibw094543",
"name": "",
"nameCn": "上海阿纳迪酒店",
"address": "NO7 LIN HONG ROAD SHANGHAI 200335 CN",
"addressCn": "上海市长宁区临虹路7号",
"mainImage": "https://staticfile.badazhou.com/20210902/006094f0b5f28f5aa6aa5a190f060b75.jpeg",
"memberId": 10,
"validPromotions": [
{
"id": 3029,
"hotelId": 7191,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Eight Continents\n适用房型:行政套房",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-03-22 13:40:01",
"updateTime": "2022-01-13 11:01:09",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 7191,
"hotelId": 7191,
"hotelCode": "D1153",
"hotelChain": "LW",
"hasBenefits": 1
},
"member": {
"id": 10,
"name": "立鼎世尊享贵宾会",
"registerInfo": "微信公众号:立鼎世酒店集团\n预订时候务必输入会员号码",
"hotelChains": "LW",
"phone": "4001324582",
"image": "https://staticfile.badazhou.com/20200924/7c7ad693f4df24e82818f6a33a3c28bd.png",
"weight": 9,
"createTime": "2020-09-17 11:54:00",
"updateTime": "2022-01-26 15:22:29"
},
"promotions": [
{
"id": 3029,
"hotelId": 7191,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2",
"desc": "适用价格:Eight Continents\n适用房型:行政套房",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-03-22 13:40:01",
"updateTime": "2022-01-13 11:01:09",
"isExpire": 0
},
{
"id": 3030,
"hotelId": 7191,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2021-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "家庭时刻",
"desc": "适用房型:一卧室豪华喜悦客房\n适用价格:Family Dinner Package\n优惠内容:\n每日两大一小早餐(儿童限1.4米以下) \n包含双人一次西餐厅自助晚餐 \n迷你吧软饮免费 \n2张300元SPA抵用券 \n入住首日健康排毒小食 \n身体能量体质检测\n尊享酒店内颂钵/冥想/瑜伽/太极等课程 (具体参考每日工坊课程表)",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-03-24 09:31:46",
"updateTime": "2021-03-24 09:31:46",
"isExpire": 1
},
{
"id": 3031,
"hotelId": 7191,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2021-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "亲子套餐(2晚起订)",
"desc": "适用房型:仅限”一卧室家庭套房“可享\n优惠内容:专享礼遇,入住期间额外赠送双人60分钟SPA一次(芳香,深沉,排毒三选一),行政酒廊下午茶,欢乐时光\n\n注:由于价格设置问题,若需要入住4晚,可分开2次预订,但礼遇仅享受一次",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-03-24 09:34:14",
"updateTime": "2021-12-21 12:24:19",
"isExpire": 1
},
{
"id": 3046,
"hotelId": 7191,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2021-07-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "宾利主题套餐",
"desc": "适用价格:Bentley Package\n适用房型:疗愈泡泡房\n优惠内容:\n1. 价值456元每日2大1小孔雀花园自助早餐(小朋友限1.4米);\n2. 价值1268元/位双人宾利主题下午茶(送房间);\n3. 宾利特别设计款专属IP小熊一只;\n4. 入住当日健康小食一份+每日Minibar软饮无偿享;\n5. 身体能量体质检测+房间100%精油净化;\n6. 助眠安睡的中草药浴包、助眠香薰;\n7. 酒店4次工坊课程(瑜伽、冥想、颂钵、太极等具体以工坊课程表为准);",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-04-06 12:50:17",
"updateTime": "2021-06-01 22:17:52",
"isExpire": 1
}
]
},
{
"id": 7151,
"no": "nnhbep384080",
"name": "",
"nameCn": "上海镛舍酒店",
"address": "366 Shi Men Yi Road Shanghai 31 200041 CN",
"addressCn": "上海静安区石门一路366号",
"mainImage": "https://staticfile.badazhou.com/20200710/a1047482cc585c4c0f03c6739b224cb9.jpg",
"memberId": 0,
"validPromotions": [],
"hasVideo": 1,
"gdsHotel": {
"id": 7151,
"hotelId": 7151,
"hotelCode": "E2772",
"hotelChain": "SV",
"hasBenefits": 1
},
"member": null,
"promotions": [
{
"id": 2651,
"hotelId": 7151,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-29",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住9折(2晚起)",
"desc": "适用价格:Virtuoso 10pct Off\n适用房型:60平米开间及以上",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2020-12-07 20:44:08",
"updateTime": "2022-02-22 20:57:47",
"isExpire": 1
},
{
"id": 3506,
"hotelId": 7151,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-01-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "限量升两级",
"desc": "适用价格:Virtuoso专享价\n适用房型:50平米开间\n不适用日期:12.29-12.31,1.1\n注:预订时70平米开间有房时,预订成功后,联系在线客服申请升级,具体以酒店确认为准,限量升级。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-11-02 09:41:41",
"updateTime": "2022-01-06 16:23:14",
"isExpire": 1
},
{
"id": 3049,
"hotelId": 7151,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-04-29",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(指定房型)",
"desc": "适用价格:Virtuoso -stay 3 Pay 2\n适用房型:90平米开间",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-04-09 09:51:47",
"updateTime": "2022-02-22 20:58:20",
"isExpire": 1
}
]
},
{
"id": 7223,
"no": "qultfa115594",
"name": "",
"nameCn": "上海素凯泰酒店",
"address": "380 Weihai Road Shanghai 31 200041 CN",
"addressCn": "上海市静安区威海路380号",
"mainImage": "https://staticfile.badazhou.com/20200717/0aea1c7b298dd0e5c485860d8590fef9.jpg",
"memberId": 13,
"validPromotions": [],
"hasVideo": 0,
"gdsHotel": {
"id": 7223,
"hotelId": 7223,
"hotelCode": "E1319",
"hotelChain": "LX",
"hasBenefits": 1
},
"member": {
"id": 13,
"name": "SLH 俱乐部",
"registerInfo": "微信公众号:全球奢华精品酒店",
"hotelChains": "LX",
"phone": "4001203276",
"image": "https://staticfile.badazhou.com/20200924/b0e58876f279dd6715a07326ccd42d4f.png",
"weight": 3,
"createTime": "2020-09-17 12:00:32",
"updateTime": "2020-09-25 08:56:28"
},
"promotions": [
{
"id": 2362,
"hotelId": 7223,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2020-09-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:仅限“Weekend Escapade Package”价格可享\n适用房型:仅限套房及以上房型可享\n优惠内容:2晚连住优惠,此价格已经是折后价格",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 1598862741,
"updateAt": 1611209950,
"createTime": "2020-08-31 16:32:21",
"updateTime": "2021-01-21 14:19:10",
"isExpire": 1
},
{
"id": 1665,
"hotelId": 7223,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2020-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:仅限“Slh Spring Offer”价格可想\n适用房型:仅限“行政套房Executive Suite”房型可用",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 1586753565,
"updateAt": 1611209950,
"createTime": "2020-04-13 12:52:45",
"updateTime": "2021-01-21 14:19:10",
"isExpire": 1
}
]
},
{
"id": 2186,
"no": "xaoxhk037589",
"name": "",
"nameCn": "上海浦东香格里拉大酒店",
"address": "33 Fu Cheng Lu Shanghai 31 200120 CN",
"addressCn": "上海市浦东新区富城路33号",
"mainImage": "https://staticfile.badazhou.com/20210712/ba3dea33d8a6b973866cbd4e2d82a0ca.jpeg",
"memberId": 2,
"validPromotions": [
{
"id": 2774,
"hotelId": 2186,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(行政房起)",
"desc": "适用价格:The Luxury Circle Stay 3 Pay 2\n适用房型:豪华阁起可享",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2020-12-10 20:47:46",
"updateTime": "2022-02-07 16:34:08",
"isExpire": 0
}
],
"hasVideo": 0,
"gdsHotel": {
"id": 2186,
"hotelId": 2186,
"hotelCode": "94881",
"hotelChain": "SG",
"hasBenefits": 1
},
"member": {
"id": 2,
"name": "香格里拉金环会",
"registerInfo": "微信小程序:香格里拉集团",
"hotelChains": "SG",
"phone": "4001205900",
"image": "https://staticfile.badazhou.com/20200924/f5ce41d1374066f2a82e7e37474e3608.png",
"weight": 12,
"createTime": "2020-09-17 11:33:30",
"updateTime": "2020-09-25 08:55:36"
},
"promotions": [
{
"id": 2774,
"hotelId": 2186,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-05-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(行政房起)",
"desc": "适用价格:The Luxury Circle Stay 3 Pay 2\n适用房型:豪华阁起可享",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2020-12-10 20:47:46",
"updateTime": "2022-02-07 16:34:08",
"isExpire": 0
},
{
"id": 3281,
"hotelId": 2186,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2021-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "迪斯尼套餐",
"desc": "适用价格:Disney Theme Park Adventure\n优惠内容:2大1小早餐(12岁以下),儿童可在怡咖享用免费的自助午餐和晚餐,穿梭巴士至上海迪士尼乐园,延迟退房至下午16点,视房态升级房型,儿童娱乐中心",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-06-24 12:00:45",
"updateTime": "2021-06-24 12:00:45",
"isExpire": 1
},
{
"id": 3303,
"hotelId": 2186,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-01-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住4付3",
"desc": "适用价格:The Luxury Circle Stay 4 Pay 3 Promotion",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-07-06 16:36:35",
"updateTime": "2021-11-02 15:12:50",
"isExpire": 1
}
]
},
{
"id": 2184,
"no": "fqdopo133030",
"name": "",
"nameCn": "上海静安香格里拉大酒店",
"address": "1218 Middle Yan an Road Shanghai 31 200040 CN",
"addressCn": "上海市静安区延安中路1218号",
"mainImage": "https://staticfile.badazhou.com/20200709/a55503d9a7355006bf158beb189305c9.jpeg",
"memberId": 2,
"validPromotions": [
{
"id": 3786,
"hotelId": 2184,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-29",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住4付3",
"desc": "适用价格:Stay 4 Pay \n不可使用日期:10月1日-10月4日,12月23日-12月25日",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-16 10:41:26",
"updateTime": "2022-04-26 11:27:38",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 2184,
"hotelId": 2184,
"hotelCode": "75757",
"hotelChain": "SG",
"hasBenefits": 1
},
"member": {
"id": 2,
"name": "香格里拉金环会",
"registerInfo": "微信小程序:香格里拉集团",
"hotelChains": "SG",
"phone": "4001205900",
"image": "https://staticfile.badazhou.com/20200924/f5ce41d1374066f2a82e7e37474e3608.png",
"weight": 12,
"createTime": "2020-09-17 11:33:30",
"updateTime": "2020-09-25 08:55:36"
},
"promotions": [
{
"id": 3786,
"hotelId": 2184,
"typeName": "订立享",
"weight": 2,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-29",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住4付3",
"desc": "适用价格:Stay 4 Pay \n不可使用日期:10月1日-10月4日,12月23日-12月25日",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-16 10:41:26",
"updateTime": "2022-04-26 11:27:38",
"isExpire": 0
}
]
},
{
"id": 12751,
"no": "lzytvr928202",
"name": "",
"nameCn": "上海前滩香格里拉大酒店",
"address": "551 West Hai Yang Road Shanghai 31 200124 CN",
"addressCn": "上海市浦东新区海阳西路551号",
"mainImage": "https://staticfile.badazhou.com/20211029/e23bca8e4e8aea6603cdf36e69e4212a.jpeg",
"memberId": 2,
"validPromotions": [],
"hasVideo": 0,
"gdsHotel": {
"id": 12751,
"hotelId": 12751,
"hotelCode": "G7271",
"hotelChain": "SG",
"hasBenefits": 0
},
"member": {
"id": 2,
"name": "香格里拉金环会",
"registerInfo": "微信小程序:香格里拉集团",
"hotelChains": "SG",
"phone": "4001205900",
"image": "https://staticfile.badazhou.com/20200924/f5ce41d1374066f2a82e7e37474e3608.png",
"weight": 12,
"createTime": "2020-09-17 11:33:30",
"updateTime": "2020-09-25 08:55:36"
},
"promotions": []
},
{
"id": 6120,
"no": "ybrnkh073109",
"name": "",
"nameCn": "上海外滩悦榕庄",
"address": "19 GONG PING ROAD SHANGHAI 200082 CN",
"addressCn": "上海虹口区公平路19号",
"mainImage": "https://staticfile.badazhou.com/20211217/a7820c68df220ca61b8a3615338587eb.jpeg",
"memberId": 3,
"validPromotions": [
{
"id": 580,
"hotelId": 6120,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "预订礼遇",
"desc": "预订“ 专享价 & 标准价”享受如下礼遇:\n1,欢迎饮料及欢迎水果;\n2,迷你吧每日免费软饮;\n3,每日免费双人早餐;\n4,入住期间50美金餐饮抵扣(不适用于中餐厅),50美金Spa抵扣;\n5,视房态升级一个等级房型(最高升级至 Grand Riverside Suite);\n6,入住欢迎卡片;\n7,视房态提前入住和延迟退房;\n8,免费Wi-Fi使用。\n(预订完成后请联系在线客服确认)",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 1554952211,
"updateAt": 1609741549,
"createTime": "2019-04-11 11:10:11",
"updateTime": "2021-12-07 10:10:09",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 6120,
"hotelId": 6120,
"hotelCode": "52477",
"hotelChain": "BY",
"hasBenefits": 1
},
"member": {
"id": 3,
"name": "雅高心悦界",
"registerInfo": "APP:Accor All  - 酒店预订",
"hotelChains": "RT,SB,FA,BY,PU,SL,MK,YR,RX",
"phone": "4001335533",
"image": "https://staticfile.badazhou.com/20200924/701f261b9030ea641c04f3675e0114af.png",
"weight": 8,
"createTime": "2020-09-17 11:35:57",
"updateTime": "2021-07-28 16:31:41"
},
"promotions": [
{
"id": 580,
"hotelId": 6120,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-12-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "预订礼遇",
"desc": "预订“ 专享价 & 标准价”享受如下礼遇:\n1,欢迎饮料及欢迎水果;\n2,迷你吧每日免费软饮;\n3,每日免费双人早餐;\n4,入住期间50美金餐饮抵扣(不适用于中餐厅),50美金Spa抵扣;\n5,视房态升级一个等级房型(最高升级至 Grand Riverside Suite);\n6,入住欢迎卡片;\n7,视房态提前入住和延迟退房;\n8,免费Wi-Fi使用。\n(预订完成后请联系在线客服确认)",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 1554952211,
"updateAt": 1609741549,
"createTime": "2019-04-11 11:10:11",
"updateTime": "2021-12-07 10:10:09",
"isExpire": 0
},
{
"id": 2199,
"hotelId": 6120,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2020-06-17",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "9周年专享",
"desc": "适用价格:仅限“专享”价格可享\n预订有效期:仅限8月6日-8月8日期间预订有效\n不可使用日期:8月25日,10月1-10月4日,12月24日至25日,12月31日\n优惠内容:额外享受,江景客房连住三晚保证升级为外滩江景客房\n\n注:预订成功后,联系在线客服申请",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 1594780819,
"updateAt": 1609741549,
"createTime": "2020-07-15 10:40:19",
"updateTime": "2021-01-04 14:25:49",
"isExpire": 1
},
{
"id": 724,
"hotelId": 6120,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2019-12-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "住3付2(指定套房)",
"desc": "房型限制:仅限 Riverside Suite江景套房,Grand Riverside Suite至尊江景套房,Bund Suite外滩江景套房\n\n价格类型:仅限“标准价”,并享受如下例如:\n1,欢迎饮料及欢迎水果; \n2,迷你吧每日免费软饮; \n3,每日免费双人早餐; \n4,入住期间50美金餐饮抵扣,50美金Spa抵扣; \n5,视房态升级一个等级房型(最高升级至 Grand Riverside Suite); \n6,入住欢迎卡片; \n7,视房态提前入住和延迟退房;\n8,免费Wi-Fi使用。\n\n注:预订成功后,联系在线客服申请",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 1561540777,
"updateAt": 1609741549,
"createTime": "2019-06-26 17:19:37",
"updateTime": "2021-01-04 14:25:49",
"isExpire": 1
},
{
"id": 725,
"hotelId": 6120,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2019-12-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "25周年活动(2晚起订)",
"desc": "价格类型:Banyan Tree 25th\n优惠详情:每日免费双人早餐;餐饮,Spa 7.5折;入住期间赠送一次免费的活动:点心艺术,空中漫步之旅,社区活动;入住欢迎卡片及礼物;免费Wi-Fi使用",
"needHotelConfirm": 1,
"isDelete": 1,
"createAt": 1561541259,
"updateAt": 1609741549,
"createTime": "2019-06-26 17:27:39",
"updateTime": "2021-01-04 14:25:49",
"isExpire": 1
}
]
},
{
"id": 7997,
"no": "bznxjp327707",
"name": "",
"nameCn": "上海佘山世茂洲际酒店",
"address": "CHEN HUA ROAD NO. 5888 SON SHANGHAI 201619 CN",
"addressCn": "上海松江区辰花路5888号",
"mainImage": "https://staticfile.badazhou.com/20210825/41be61b97506fa481b745ba9e1d02caf.jpeg",
"memberId": 4,
"validPromotions": [
{
"id": 3772,
"hotelId": 7997,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "3付2",
"desc": "适用价格: Ihg Luxlife 3rd Night Free\n注:具体以查询为准,部分日期可能不可用,如有问题请联系在线客服确认。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-15 11:50:34",
"updateTime": "2022-03-07 15:21:03",
"isExpire": 0
}
],
"hasVideo": 1,
"gdsHotel": {
"id": 7997,
"hotelId": 7997,
"hotelCode": "E9964",
"hotelChain": "IC",
"hasBenefits": 1
},
"member": {
"id": 4,
"name": "洲际优悦会",
"registerInfo": "微信小程序:洲际酒店集团IHG优悦会",
"hotelChains": "IC,RE,CP,KC,IN,HI,UL,VX",
"phone": "4008302360",
"image": "https://staticfile.badazhou.com/20200924/7fc21208450eecf2dd6c7cb86945cf4f.png",
"weight": 11,
"createTime": "2020-09-17 11:38:06",
"updateTime": "2020-09-25 20:57:10"
},
"promotions": [
{
"id": 3620,
"hotelId": 7997,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": "2021-12-24",
"checkoutEndDate": "2022-01-06",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(2晚起)",
"desc": "适用价格:专享价\n优惠内容:连住2晚及以上,额外赠送兰蔻旅行装套装,一位客户兰蔻菁纯体验套装及专柜殿堂级密集面部护理一次。(限量88套)",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2021-12-07 16:24:30",
"updateTime": "2021-12-13 11:27:49",
"isExpire": 1
},
{
"id": 3772,
"hotelId": 7997,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-06-30",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "3付2",
"desc": "适用价格: Ihg Luxlife 3rd Night Free\n注:具体以查询为准,部分日期可能不可用,如有问题请联系在线客服确认。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-02-15 11:50:34",
"updateTime": "2022-03-07 15:21:03",
"isExpire": 0
}
]
},
{
"id": 3243,
"no": "aghavw393692",
"name": "",
"nameCn": "上海建业里嘉佩乐酒店",
"address": "480 WEST JIANGUO ROAD SHANGHAI 200031 CN",
"addressCn": "上海市徐汇区建国西路480号",
"mainImage": "https://staticfile.badazhou.com/20200709/df89c0c5b280a856d77d53fb6a047493.jpeg",
"memberId": 10,
"validPromotions": [],
"hasVideo": 1,
"gdsHotel": {
"id": 3243,
"hotelId": 3243,
"hotelCode": "D1453",
"hotelChain": "LW",
"hasBenefits": 1
},
"member": {
"id": 10,
"name": "立鼎世尊享贵宾会",
"registerInfo": "微信公众号:立鼎世酒店集团\n预订时候务必输入会员号码",
"hotelChains": "LW",
"phone": "4001324582",
"image": "https://staticfile.badazhou.com/20200924/7c7ad693f4df24e82818f6a33a3c28bd.png",
"weight": 9,
"createTime": "2020-09-17 11:54:00",
"updateTime": "2022-01-26 15:22:29"
},
"promotions": [
{
"id": 852,
"hotelId": 3243,
"typeName": "订立享",
"weight": 0,
"checkinStartDate": null,
"checkoutEndDate": "2022-03-31",
"bookingStartDate": null,
"bookingEndDate": null,
"name": "连住优惠(9折优惠)",
"desc": "适用价格:仅限“Min Stay 2 Nights Promotion”可享\n优惠内容:连住2晚及以上,可享受9折优惠(已是折后价格);部分日期酒店会关闭此促销,实际以查询为准。",
"needHotelConfirm": 0,
"isDelete": 0,
"createAt": 1565950204,
"updateAt": 1596647034,
"createTime": "2019-08-16 18:10:04",
"updateTime": "2022-02-24 10:54:14",
"isExpire": 1
}
]
},
{
"id": 2077,
"no": "fxwgzg376415",
"name": "",
"nameCn": "上海新天地安达仕酒店",
"address": "88 Songshan Road Shanghai 200021 CN",
"addressCn": "上海市黄浦区嵩山路88号",
"mainImage": "https://staticfile.badazhou.com/20200709/77ae84996cdb8e3222d44ee0e68e0e7f.jpeg",
"memberId": 5,
"validPromotions": [
{
"id": 3941,
"hotelId": 2077,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": "2022-05-15",
"checkoutEndDate": "2022-08-31",
"bookingStartDate": "2022-05-12",
"bookingEndDate": null,
"name": "保证升两级",
"desc": "适用价格:专享价\n优惠内容:预订安达仕大床房,预订时景隅大床房有房享受保证升级\n注:医护本人持证预订安达仕大床房,预订时安达仕套房(双床不适用)有房可享受保证升级,每日限额2间。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-04-25 10:46:01",
"updateTime": "2022-05-11 14:14:59",
"isExpire": 0
}
],
"hasVideo": 0,
"gdsHotel": {
"id": 2077,
"hotelId": 2077,
"hotelCode": "36732",
"hotelChain": "HY",
"hasBenefits": 1
},
"member": {
"id": 5,
"name": "凯悦天地",
"registerInfo": "微信小程序:凯悦Hyatt",
"hotelChains": "HY,LF,JV,DN,TM",
"phone": "4008391234",
"image": "https://staticfile.badazhou.com/20200924/a0bd287e69663a70c6efaa0e2ed15e4f.png",
"weight": 14,
"createTime": "2020-09-17 11:41:46",
"updateTime": "2020-09-28 16:01:39"
},
"promotions": [
{
"id": 3941,
"hotelId": 2077,
"typeName": "确认后享",
"weight": 0,
"checkinStartDate": "2022-05-15",
"checkoutEndDate": "2022-08-31",
"bookingStartDate": "2022-05-12",
"bookingEndDate": null,
"name": "保证升两级",
"desc": "适用价格:专享价\n优惠内容:预订安达仕大床房,预订时景隅大床房有房享受保证升级\n注:医护本人持证预订安达仕大床房,预订时安达仕套房(双床不适用)有房可享受保证升级,每日限额2间。",
"needHotelConfirm": 1,
"isDelete": 0,
"createAt": 0,
"updateAt": 0,
"createTime": "2022-04-25 10:46:01",
"updateTime": "2022-05-11 14:14:59",
"isExpire": 0
}
]
},
{
"id": 2187,
"no": "vfxxqu709101",
"name": "",
"nameCn": "上海浦东嘉里大酒店",
"address": "1388 Hua Mu Road Shanghai 31 201204 CN",
"addressCn": "上海市浦东新区花木路1388号",
"mainImage": "https://staticfile.badazhou.com/20200708/56131a514afd949d60b8dc262338c579.jpeg",
"memberId": 2,
"validPromotions": [],
"hasVideo": 0,
"gdsHotel": {
"id": 2187,
"hotelId": 2187,
"hotelCode": "73251",
"hotelChain": "SG",
"hasBenefits": 1
},
"member": {
"id": 2,
"name": "香格里拉金环会",
"registerInfo": "微信小程序:香格里拉集团",
"hotelChains": "SG",
"phone": "4001205900",
"image": "https://staticfile.badazhou.com/20200924/f5ce41d1374066f2a82e7e37474e3608.png",
"weight": 12,
"createTime": "2020-09-17 11:33:30",
"updateTime": "2020-09-25 08:55:36"
},
"promotions": []
},
{
"id": 6153,
"no": "wrtpar789339",
"name": "",
"nameCn": "上海卓美亚喜玛拉雅酒店",
"address": "1108 Meihua Road Shanghai 31 201204 CN",
"addressCn": "上海浦东新区梅花路1108号",
"mainImage": "https://staticfile.badazhou.com/20200709/3826e9e0665d5737427429f2018716af.jpeg",
"memberId": 14,
"validPromotions": [],
"hasVideo": 0,
"gdsHotel": {
"id": 6153,
"hotelId": 6153,
"hotelCode": "78424",
"hotelChain": "JT",
"hasBenefits": 1
},
"member": {
"id": 14,
"name": "卓美亚SIRIUS会员",
"registerInfo": "链接:https://www.jumeirah.com/zh/",
"hotelChains": "JT",
"phone": "4008866087",
"image": "https://staticfile.badazhou.com/20200924/db9f7b91e13caf6aebe13c6e89c6014b.png",
"weight": 2,
"createTime": "2020-09-17 12:35:01",
"updateTime": "2020-09-25 08:56:34"
},
"promotions": []
}
],
}

render() {
const { data } = this.state;
const dataLen = data.length;

return (
  <VirtualList
    height={600} /* 列表的高度 */
    width='100%' /* 列表的宽度 */
    itemData={data} /* 渲染列表�的数据 */
    itemCount={dataLen} /*  渲染列表的长度 */
    itemSize={130} /* 列表单项的高度  */
  >
    {Row}
  </VirtualList>
);

}
}
`

@itsdapi
Copy link

itsdapi commented Feb 23, 2024

不是哥们你别把数据也发出来啊

@wangxm345566462
Copy link

同样的问题

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
F-react Framework - React P-1 High, patch T-alipay Target - 编译到支付宝小程序 V-3 Version - 3.x
Projects
None yet
Development

Successfully merging a pull request may close this issue.