- picker 地区选择能只到2级不到区么?希望可以增加.
picker组件 https://developers.weixin.qq.com/miniprogram/dev/component/picker.html mode=region时地区选择只到3级,不支持限制到2级得再每次自己手撸太不😎
2021-05-11 - 小程序有没有上线提示管理员微信?
老板是管理员账号,开发者账号审核通过上线后,因为老板没收到上线通知,每次都觉得我们审核通过后没帮他上线,电话催上线😅.
2020-11-09 - 表单验证和手机授权获取弹窗有办法分开么?
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/getPhoneNumber.html [图片] ```html <mp-toptips msg="{{ error }}" type="error" show="{{ error }}"></mp-toptips> ... <mp-cell prop="password" title="密码" ext-class=""> <input type="password" bindinput="formInputChange" data-field="password" class="weui-input" placeholder="密码" value="{{ formData.password }}" /> </mp-cell> ... <view class="weui-btn-area"> <button class="weui-btn from__submit-btn" open-type="getPhoneNumber" bindgetphonenumber="submitForm" > 注册 </button> </view> ``` ```js rules: [ { name: 'password', rules: { required: true, message: '密码必填' }, } ] ``` 小程序内获注册页面,取手机号和 weui的mp-form表单验证一起用就会同时弹表单验证错误和手机授权获取有办法分开么?
2020-09-28 - 到底让不让参数放在scene字段里?
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/qr-code/wxacode.getUnlimited.html [图片] [图片]
2020-09-21 - 文档截图与实际开发者工具中预览效果不符合
我的意思是,`文档截图` 和 `在开发者工具中预览`效果不符合,截图有`aliten-items:center`;`在开发者工具中预览`的代码没有 **没有水平居中** [图片] [图片] https://developers.weixin.qq.com/miniprogram/dev/component/view.html
2020-08-07