
vue
谈蕾蕾
这个作者很懒,什么都没留下…
展开
-
去掉button按钮边框
button::after {border: none;}原创 2020-02-13 16:44:51 · 2922 阅读 · 0 评论 -
微信小程序:富文本显示
遇到的场景是项目中的问答机器人,在小程序中,我是将输入的问题文本(e.detail.value)和调用后端问答接口后返回的机器人的回答(res.data:text)放在了一个content数组中,每次点击发送则push进content数组,前端用wx:for便利循环,并有isRobot属性判断是输入的问题还是得到的回答方便wxss样式修改。新需求:遇到的新需求是:机器人的回答在后端是富文...原创 2020-02-12 17:45:48 · 548 阅读 · 0 评论 -
微信小程序:rpx 和 wx.getSystemInfoSync() 屏幕自适应
px和rpx换算rpx是小程序中的尺寸单位,它有以下特征:小程序的屏幕宽固定为750rpx(即750个物理像素),在所有设备上都是如此。1rpx=(screenWidth / 750)px,其中screenWidth为手机屏幕的实际的宽度(单位px)。举例子:可获得在当前设备下的屏幕中,rpx所换算的px值1rpx=res.screenWidth/750var bgheight = ...原创 2020-02-12 14:48:52 · 1163 阅读 · 0 评论 -
微信小程序:scroll-view改动内容自动滑动到页面底部
内容自动滑动到底部原创 2020-02-12 14:39:14 · 1217 阅读 · 0 评论 -
[Vue warn]: Invalid prop: type check failed for prop "index".
解决办法:原创 2020-01-16 16:15:53 · 729 阅读 · 0 评论 -
vue element-ui遍历集合数组中的集合
<el-table-column label="答案" align="center" min-width="100%"> <template slot-scope="scope"> <div v-for="(item, index) in tableData[scope.$index].answerList" :key="index"> ...原创 2019-12-01 20:04:46 · 7889 阅读 · 0 评论