是因为主体原因吗,第一个是个人工商户,所以需要备案才能上线吗?
我这边又一个小程序需要备案才能发布,但是其他的小程序又还没出现备案的入口,是什么原因呢?[图片][图片]
2023-09-06这个是开发的,3.0.1版本能正常获取[图片]
获取手机号报错?getPhoneNumber:fail privacy permission is not authorized,errno:104,认证是有的,加了隐私协议后就不行了,有没有大佬告诉一下
2023-09-04同一套代码 其他的小程序就审核通过了 这个审核了十次都不行
getLocation计算距离自己最近的线下门店,为啥接口审核一直不通过?[图片] 业务中,客户可以去线下门店自提商品,或者去线下门店消费,用户选择去距离自己最近的门店。这样的业务场景接口也审核不过嘛
2022-06-30[图片]
没有修改子组件的值为什么会报修改直接修改子组件的错误,求大佬解惑?[图片] 获取页面栈,直接修改父页面的值,没有修改子组件的值 [图片] 但是就会报直接修改子组件的错误 [图片] 求大佬解惑
2022-05-27<template> <view class="goodsDetail-box" :class="isMore ? 'max-height' : ''"> <view class="title-line"> <text class="title">商品明细</text> <text @tap="isMoreChange" v-if="isMore" class="icon iconleft-arrow-copy"></text> <text v-else @tap="isMoreChange" class="icon iconbottom-arrow"></text> </view> <view class="goodsList" v-for="(item,index) in goodsList" :key="index"> <view class="goods-top"> <view class="goods-image"> </view> <view class="goods-type"> <view class="font-color">{{item.danhao}}</view> <view class=""> <text>{{item.type}}</text><text style="padding: 0 20rpx;">{{item.color}}</text> </view> <view class="flex"> <text class=""> 吊牌价:¥{{item.amout}} </text> <text class=""> 发货类型:{{item.goodsWillType}} </text> </view> </view> </view> <view class="name-code"> <view class="name"> <view class="bg-w">尺码</view> <view :class="indext % 2 ? 'bg-w' : ''" v-for="(itemt,indext) in item.data" :key="indext"> {{itemt.size}} </view> </view> <view class="code-type"> <scroll-view scroll-x="true" class="tabs_container"> <view :key="indexd" class="tabs_item" v-for="(itemd,indexd) in item.SUMMARY"> <view class="bg-w"> {{itemd.typeName}} </view> <view class="menus" :key="indexz" :class="indexz % 2 ? 'bg-w' : ''" v-for="(itemz,indexz) in item.data"> <text :key="indexg" v-for="(itemg,indexg) in itemz.list"><text v-if="indexg == indexd">{{itemg.nums}}</text></text> </view> </view> </scroll-view> </view> </view> </view> </view> </template> <script> export default { data() { return { isMore: false } }, props: { goodsList: { type: Array, default: [] }, }, methods: { isMoreChange() { this.isMore = !this.isMore } }, } </script> <style> .flex { display: flex; justify-content: space-between; align-items: center; } .font-color { color: #444; } .icon { font-size: 26rpx; padding-left: 30rpx; } .goodsDetail-box { margin: 20rpx; border-radius: 10rpx; background-color: #fff; max-height: 80rpx; transition: max-height 800ms; overflow: hidden; } .goodsDetail-box .title-line{ display: flex; line-height: 80rpx; align-items: center; justify-content: space-between; padding: 0 20rpx; } .max-height { max-height: 4000rpx; } .goodsDetail-box .title { font-weight: bold; } .goodsList .goods-top{ display: flex; padding: 0 20rpx; } .goodsList .goods-top .goods-image { width: 144rpx; height: 144rpx; border-radius: 4rpx; } .goodsList .goods-top .goods-type { padding-left: 20rpx; color: #999; flex: 1; } .goodsList .goods-top .goods-type view { line-height: 48rpx; } .name-code { display: flex; font-size: 26prx; margin: 20rpx; border-bottom: 1rpx solid #F3F3F3; } .name-code .name view { width: 120rpx; height: 80rpx; text-align: center; line-height: 80rpx; font-size: 26rpx; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; } .name-code .code-type { /* flex: 1; */ width: calc(100% - 120rpx); } .tabs_container { width: 100%; white-space: nowrap; height: 100%; } .tabs_item { min-width: 150rpx; height: 80rpx; line-height: 80rpx; display: inline-block; text-align: center; font-size: 26rpx; } .tabs_item view { padding: 0 20rpx; } .text-r { color: #FF004F; } .pageNoS { position: fixed; width: 100%; } .menus { padding: 0 20rpx; } .bg-w { background-color: #F8F8F8!important; } </style>
scroll-view横向滚动最后一个盒子的背景颜色为什么铺不满,麻烦大佬解惑一下?[图片]这块区域是横向滑动区域 [图片]盒子的高度是有的 [图片]但是给背景颜色就是没有铺满,给了一个border显示是这样的,求大佬解惑
2022-04-24http://x3demo.x2erp.com:9801/gelisi/Attachment/Original/202203/427d6afa-50bb-48d7-94e7-db2f0e76c9c0.jpg
为什么图片路径都返回来了,但是一次图片就能显示出来,然后刷新一次图片就渲染层网络出错?图片报错的规律就是一次刷新图片能正常显示出来,但在刷一次就报图片链接渲染层报错。交替着,但是图片链接都是没有问题的?求大佬解惑,麻烦告诉我该怎么处理。
2022-04-02[图片]
小程序本地请求图片返回空白,但是真机请求会返回是为什么呢?小程序本地请求图片数据但是返回为空白得[图片] 但是真机请求 他又是有数据的,麻烦大佬帮我解决一下疑惑
2022-03-21请问这个接口在哪里调用呢请问
为什么调用“配置小程序用户隐私保护指引”接口不生效?先调用“配置小程序用户隐私保护指引”接口,再调用“查询小程序用户隐私保护指引”接口,发现未全部生效。只有owner_setting部分修改成功,setting_list未修改成功
2021-12-26麻烦路过的大佬帮我解决一下疑惑!
getLoaction 的 highAccuracyExpireTime 是3000请求一次还是?getLoaction 的 highAccuracyExpireTime这个属性设定后,比如我切换位置了,getLoaction会重新调用刷新当前位置嘛?
2021-12-08全屏铺满,图片会变形,麻烦大佬提供一下意见
小程序怎么样图片铺满全屏,且不拉伸图片?将一张图片铺满全屏,但是图片会有拉伸,变形了,有什么办法不让图片变形吗
2021-12-07