Trumpet Flower Disposable Cup Coffee Cup Thickened Hot Drink Paper Cup Double-Layer Milk Tea Cup Soybean Milk Anti-scalding Packing Cup

$48.90
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
1
Select product
Selected 0 item(s)
80 convex mouth paper cover (suitable for 240/250ml cup) 500
80 paper lid (suitable for 240/250ml cup) 500
80 black lid (fit 240/250ml cup) 500
80 white lid (fit 240/250ml cup) 500
80 multi-function cover (suitable for 240ml cup) 500
90 convex mouth paper cover (suitable for 300-480ml cup) 500
90 paper lid (fit 300-480ml cup) 500
90 white lid (fit 300-480ml cup) 500
90 black lid (fit 300-480ml cup) 500
90 black cup lid (fit 300-480ml cup) 500
90 white integrated lid (suitable for 300-480ml cups) 500 pieces
90 black integrated lid (suitable for 300-480ml cups) 500 pieces
280ml dragon scale paper cup without lid 500
330ml dragon scale paper cup without lid 500
400ml dragon scale paper cup without lid 500
515ml dragon scale paper cup without lid 500
660ml dragon scale paper cup without lid 500
240ml cowhide hollow cup without lid 500
420ml cowhide hollow cup without lid 500
480ml cowhide hollow cup without lid 500
660ml cowhide hollow cup without lid 500
240ml white hollow cup without lid 500
420ml white hollow cup without lid 500
480ml white hollow cup without lid 500
480ml red hollow cup without lid 500
240ml silver hollow cup without lid 500
240ml black S vertical grain cup without lid 500
420ml black S vertical grain cup without lid 500
480ml black S vertical grain cup without lid 500
240ml blue S vertical grain cup without lid 500
420ml blue S vertical grain cup without lid 500
480ml blue S vertical cup without lid 500
240ml red S vertical stripe cup without lid 500
420ml red S vertical grain cup without lid 500
480ml red S vertical stripe cup without lid 500
240ml small buger cup without lid 500
420ml small bougue cup without lid 500
480ml small buger cup without lid 500
480ml ocean watercolor hollow cup without lid 500
480ml red chamber good sentence Cup without lid 500
250ml black vertical paper cup without lid 500
400ml black vertical paper cup without lid 500
480ml black vertical grain paper cup without lid 500
240ml dark black double-layer hollow cup without lid 500
420ml dark black double-layer hollow cup without lid 500
480ml dark double-layer hollow cup without lid 500
240ml-coffee pattern paper cups without lid 500 pieces
420ml-coffee pattern paper cups without lid 500 pieces
480ml-coffee pattern paper cups without lid 500 pieces
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)