个人案例
- 美食片刻
食谱类小程序,有积分商城,有分享
美食片刻扫码体验
- 个人微信小程序怎么快速推广?
个人开发了一款食谱类型的小程序,带积分功能的,怎么实现快速推?? 广[图片]
2021-09-24 - 样式错误
手机型号 iPhone 6 运行系统 iOS 9.1 微信版本 7.0.3 基础库版本 2.6.6 [242] 样式错误 [图片] 其他型号手机正常 [图片] <!--pages/userCenter/userCenter.wxml--> <scroll-view> <view class='user_center_view'> <image class="top_img" src='/icon/user_center_bg.jpg'></image> <button wx:if="{{boolean}}" class="login-tap" open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo"/> <view class='head_view'> <image wx:if="{{wx_rank == '1'}}" class='headimg-view-img' src='/icon/headimg_ones.png'></image> <image wx:if="{{wx_rank == '2'}}" class='headimg-view-img' src='/icon/headimg_one.png'></image> <image wx:if="{{wx_rank == '3'}}" class='headimg-view-img' src='/icon/headimg_two.png'></image> <image wx:if="{{wx_rank == '4'}}" class='headimg-view-img' src='/icon/headimg_three.png'></image> <text class='name_text'>{{nickname}}</text> <view class='progress_view'> <image class='line_img' src='/icon/line.jpg'/> <image class='lleve_one_img' src="{{wx_rank == '2' ? '/icon/lleve_ones.png':'/icon/lleve_one.png'}}"/> <image class='lleve_two_img' src="{{wx_rank == '3' ? '/icon/lleve_twos.png':'/icon/lleve_two.png'}}"/> <image class='lleve_three_img' src="{{wx_rank == '4' ? '/icon/lleve_threes.png':'/icon/lleve_three.png'}}"/> <text class="{{wx_rank == '2' ? 'lleve_one_txts':'lleve_one_txt'}}">我是店主</text> <text class="{{wx_rank == '3' ? 'lleve_two_txts':'lleve_two_txt'}}">普通代理</text> <text class="{{wx_rank == '4' ?'lleve_three_txts':'lleve_three_txt'}}">核心代理</text> </view> <text class='text' catchtap='itemTap' data-name="查看特权">累计进货{{all_total_money}}元,距离{{rank_name}}还差{{new_total_money}}元<text class='texts'>查看特权</text></text> </view> </view> <view class='item_view' wx:for="{{titleList}}" wx:for-index="idx"> <view class='order_list_view' catchtap='itemTap' data-name="{{titleList[idx]}}"> <text class='user_order'>{{titleList[idx]}}</text> </view> <view class='user_order_view'> <view class='user_order_item' wx:for="{{dataList[idx].name}}" wx:for-index="idxs" catchtap='itemTap' data-name="{{dataList[idx].name[idxs]}}"> <image class="icon" src='{{dataList[idx].img[idxs]}}'/> <text class='user_orders'>{{dataList[idx].name[idxs]}}</text> </view> </view> </view> </scroll-view> ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- /* pages/userCenter/userCenter.wxss */ .login-tap{ position: absolute; width: 100%; height: 100%; border-radius: 0; background: rgba(255, 255, 255, 0.01); z-index: 9999 } .login-tap::after{ border: 0; } .scroll-view { height: 100%; } .user_center_view{ /* position: relative; */ display: flex; flex-direction: column; background: #ffffff; } .top_img{ height: 450rpx; width: 100%; } .head_view{ position: absolute; display: flex; flex-direction: column; width: 100%; height: 100%; align-content: center; align-items: center; } .headimg-view-img{ width: 230rpx; height: 180rpx; margin-top: 30rpx; } .name_text{ margin-top: 15rpx; font-size: 30rpx; color: #c7b679; background: #000; border-radius: 40rpx; padding: 10rpx 30rpx } .progress_view{ position: relative; display: flex; flex-direction: column; align-content: center; align-items: center; width: 75%; margin-top: 45rpx; } .line_img{ position: absolute; width: 100%; height: 3rpx } .lleve_one_img{ position: absolute; width: 50rpx; height: 50rpx; left: -30rpx; top: -30rpx } .lleve_two_img{ position: absolute; width: 50rpx; height: 50rpx; top: -30rpx } .lleve_three_img{ position: absolute; width: 50rpx; height: 50rpx; right: -30rpx; top: -30rpx } .lleve_one_txt{ position: absolute; left: -50rpx; font-size: 22rpx; color: #666666; margin-top: 20rpx } .lleve_one_txts{ position: absolute; left: -50rpx; font-size: 22rpx; color: #fff; margin-top: 20rpx } .lleve_two_txt{ position: absolute; font-size: 22rpx; color: #666666; margin-top: 20rpx } .lleve_two_txts{ position: absolute; font-size: 22rpx; color: #fff; margin-top: 20rpx } .lleve_three_txt{ position: absolute; right: -50rpx; font-size: 22rpx; color: #666666; margin-top: 20rpx } .lleve_three_txts{ position: absolute; right: -50rpx; font-size: 22rpx; color: #fff; margin-top: 20rpx } .text{ font-size: 22rpx; color: #d6d6d6; margin-top: 70rpx; } .texts{ font-size: 22rpx; color: #c7d679; margin-top: 70rpx; margin-left: 20rpx; } .item_view{ display: flex; flex-direction: column; width: 100% } .order_list_view{ display: flex; flex-direction: column; background: #fff; } .user_order{ font-size: 30rpx; color: #000; margin: 0 25rpx; padding: 20rpx 0; border-bottom: 1px solid #efefef; } .user_orders{ font-size: 26rpx; color: #666; margin: 0 25rpx; padding: 10rpx 0 20rpx 0; } .user_order_view{ display: flex; flex-flow: row wrap; align-content: space-around; width: 100%; background: #fff; margin-bottom: 20rpx; } .user_order_item{ display: flex; flex-direction: column; align-content: center; align-items: center; width: 25%; background: #fff } .icon{ width:50rpx; height:50rpx; margin-top: 20rpx; } page{ background: #efefef }
2019-04-19 - 顶部分享bug(iOS端)
进入小程序(二级及以上页面),点击顶部分享 从分享卡片点击进入,点击分享(此时会有回到首页选项) 退出小程序,回到微信聊天页面(下拉点击操作的小程序,此时展示的是刚才点击进入的界面,点击分享按钮,并没有回到首页的选项了) 以上问题只在iOS复现。 Android: [图片] [图片] iOS: [图片] [图片]
2018-04-23 - 小程序版本更新推送问题
你想反馈一个 Bug 还是 提一个需求? 我想反馈一个bug 如果是 Bug: * Bug 表现是什么?预期表现是什么? 线上小程序已经更新了新的版本,但是在(华为mate8 安卓7.0以上。 微信6.6.2) 微信聊天界面下拉进入小程序,小程序的内容以及功能并没有更新(线上更新时间一周以上了,没有任何反应,iOS端正常,其他android手机正常),从发现入口的小程序选项进入也是一样 [图片] [图片] * 如何复现? * 提供一个最简复现 Demo 如果是需求: * 你希望有什么能力? * 你需要这个能力的场景是 ?
2018-02-05 - 我想提个需求
你想反馈一个 Bug 还是 提一个需求? 我想提个需求 如果是 Bug: * Bug 表现是什么?预期表现是什么? * 如何复现? * 提供一个最简复现 Demo 如果是需求: * 你希望有什么能力? 客服消息功能(增加手机微信回复) * 你需要这个能力的场景是 ? 现在的客服消息是:微信公众平台客服登录(没有手机端版本),客服只能在PC端进行服务,但是客户如果是晚上发消息的话就没法及时回复客户咨询的问题,所以希望官方能够(增加手机微信回复的功能)
2018-01-10 - iOS系统10.3.3界面样式错误
你想反馈一个 Bug 还是 提一个需求? 我想反馈一个Bug 如果是 Bug: * Bug 表现是什么?预期表现是什么? 真机,iOS系统10.3.3出现样式错误, iOS其他系统以及android系统打开姿势如下图: [图片] iOS10.3.3 打开姿势如下图:[图片] * 如何复现? wxml代码如下 <view class='address_view'> <view class='address_info' wx:for="{{4}}" wx:for-item="item" wx:for-index="Idx" catchtap='selectTap' data-index="{{Idx}}"> <view class='item_view'> <view class='user_info'> <text class='consignee_txt'>测试用户名</text> <text class='mobile_txt'>151****4807</text> </view> <view class='address_info'> <text class='address_info_txt'>测试详细地址</text> </view> <view class='user_handle'> <view class='bt-views' catchtap='editAddressTap' data-index="{{Idx}}">编辑</view> <view class='bt-view' catchtap='delectAddressTap' data-address-id="{{item.address_id}}">移除</view> </view> </view> </view> <!--上拉加载更多--> <view class='reachbottom'> <text>正在加载……</text> </view> <!--固定在底部的view--> <view class='sales-process'> <view class='add-address' catchtap='addAddress'>添加收货地址</view> </view> </view> wxss代码如下: .address_view{ display: flex; flex-direction: column; align-items: center; height: 100%; padding-bottom: 80rpx; } .address_info{ display: flex; flex-direction: column; align-items: center; height: 100%; width: 100%; margin-top: 20rpx; background: #ffffff } .item_view{ display: flex; flex-direction: column; align-items: center; width: 100% } .user_info{ display: flex; flex-direction: row; align-items: center; width: 100%; border-bottom: 1rpx solid #f8f8f8; justify-content: space-between; } .consignee_txt{ font-size: 32rpx; color: #515151; margin: 20rpx; } .mobile_txt{ font-size: 34rpx; color: #69b82d; margin: 20rpx; } .address_info{ display: flex; flex-direction: row; align-items: center; width: 100%; } .address_info_txt{ font-size: 30rpx; color: #515151; margin: 0 20rpx 20rpx 20rpx; line-height: 45rpx; } .user_handle{ display: flex; flex-direction: row-reverse; width: 100%; margin: 20rpx; } .bt-views{ font-size: 28rpx; color: #69b82d; height: 40rpx; padding: 10rpx 30rpx; margin-right: 20rpx; border: 1px solid #69b82d; } .bt-view{ font-size: 28rpx; color: #f57000; height: 40rpx; padding: 10rpx 30rpx; margin-right: 40rpx; border: 1px solid #f57000; } /*底部加载更多*/ .reachbottom{ display: flex; flex-direction: column; align-items: center; width: 100% } .reachbottom text{ font-size: 14px; padding: 20rpx 0 20rpx 0; color: #a1a1a1; } /*底部按钮*/ .sales-process{ position: fixed; bottom: 0; height: 100rpx; left:0; right: 0; display: flex; flex-direction: row; z-index:1; } .add-address{ height: 100%; width: 100%; background: #69b82d; line-height: 100rpx; text-align: center; font-size: 30rpx; color: #ffffff } page{ background: #f8f8f8 } * 提供一个最简复现 Demo 如上代码
2018-01-04 - iPhone真机测试网络请求出现bug
[图片] 请问这是什么情况
2017-11-21 - 渲染层网络层错误
没有更新至【171018】版本的时候 不会出现这个错误,今天更新以后就会批量出现这个问题,就算是选择低版本的基础库也会出现[图片]
2017-10-19