解决 了吗,同样的问题
调用交易组件”生成订单'接口,返回系统繁忙,请问什么原因呢?接口地址: https://api.weixin.qq.com/shop/order/add 接口参数:{ "address_info":{ "detailed_address":"江苏省苏州市吴江市***************", "receiver_name":"王*芳", "tel_number":"137****9117" }, "create_time":"2022-06-08 23:29:42", "openid":"****", "order_detail":{ "delivery_detail":{ "delivery_type":1 }, "pay_info":{ "pay_method_type":0, "prepay_id":"wx082329425779***5f7706ebc0000", "prepay_time":"2022-06-08 23:29:42" }, "price_info":{ "discounted_price":"0", "freight":"0", "order_price":"20300" }, "product_infos":[ { "head_img":"****", "out_product_id":130**95069, "out_sku_id":130339506901***001, "path":"/pages/products/products?suId=1303395069010***01", "product_cnt":1, "real_price":"20300", "sale_price":"40900", "title":"浓缩修护精华露三件套" } ], "shop_id":130339 }, "out_order_id":12202547309820***01, "path":"/pages/order/orderDetail/orderDetail?orderId=1220254730982****01", "scene":"1177" } 返回值:{"obj":"{\"errcode\":990010,\"errmsg\":\"系统繁忙,请稍后再试 rid: 62a0c066-5098637a-58abf6e0\"}","success":true}
2023-05-30我们也是哦,有解决办法吗
安卓端小程序体验版正常,发布后的正式版出现错误,错误为:Maybe Cross-origin[图片] ios未出现该问题
2022-07-11过去两年的也没解决 - -
scroll-view定位问题scroll-view的 scroll-into-view无法定位到slot下的节点 <scroll-view scroll-y style="height:100vh;" scroll-into-view="{{ intoView }}"> <slot ></slot> </scroll-view>
2020-12-04去掉卡槽slot的解决方案,不就是有问题的存在吗
使用slot,外部传入列表不在scroll-view内部,无法使用scroll-into-view?我自定义了一个组件 scroll-list,作用就是外部传入一个list到指定的slot处,然后外部控制跳转到指定的列表项。 遇到一个问题就是 我的list是在外部循环的 而且每一项都加了id属性,在自定义组件内部想用过 scroll-into-view 跳转到指定的项,发现无法跳转。 页面可以渲染,但是在wxml中发现 外部传入的 list 列表 不在 <scroll-view>标签内部,请问这是为什么呢?如何解决呢? 代码片段链接如下:https://developers.weixin.qq.com/s/BtYheYmg7SfM[图片]
2020-12-04我也遇到同样的问题了,不知道怎么解决,可以嵌入在scroll-view中(在不以shadow-root形式xi),但是scroll-into-view无法实现定位锚点。有没有解决方案的同学
scroll-view内嵌slot,渲染出来的元素不在scroll-view内,这是设计如此还是?如题: 在自定义组件的时候,自定义组件内是scroll-view,但是考虑到外层可能需要传入自定义节点,故放置了slot,但是渲染出来之后。写入插槽的节点并没有渲染在scroll-view内部,而且和scroll-view同级 组件代码: <scroll-view > <block wx:for="{{navData}}" wx:for-index="idx" wx:for-item="navItem" wx:key="idx"> <view class="nav-item">{{navItem.text}}</view> </block> <slot></slot> </scroll-view> 外层调用代码: <topNav navData="{{navData}}"> <view>这里是插入到组件slot中的内容</view> </topNav> 渲染出来的节点如图: [图片]
2020-12-04