微信小程序 -- 基于 movable-view 实现拖拽排序 项目基于colorui样式组件 ColorUI组件库 (color-ui.com) 1.实现效果 2. 设计思路 movable-view 绑定块移动事件的 块ID ,块移动的坐标 移动结束后触发moveEnd事件,根据Y坐标对对象数组 ...
分类:
微信 时间:
2021-06-17 16:25:50
阅读次数:
0
1.静态效果图如下: 2.代码如下: (1)在menu.wxml中: <!--pages/menu/menu.wxml--> <!-- 轮播图 使用组件 --> <banner imgHeight="{{imgHeight}}" backgroundArr="{{backgroundArr}}" / ...
分类:
微信 时间:
2020-09-04 17:07:50
阅读次数:
59
自定义的属性如下: <declare-styleable name="TriangleView"> <!--模式--> <attr name="tlv_mode"> <!--倒三角--> <enum name="inverted" value="0" /> <!--正三角--> <enum name ...
分类:
其他好文 时间:
2020-06-24 14:14:32
阅读次数:
201
前言 当用户登录后,才有操作当前用户的权限,只可以操作自己的账户,不能操作别人的账户,怎样实现?这就需要用到权限认证。 authentication是身份认证,用于判断当前用户的登录方式是哪种认证方式。 permission是权限认证,判断哪些用户有操作权限 authentication身份认证 身 ...
分类:
其他好文 时间:
2020-06-16 20:09:59
阅读次数:
78
1、通过keep-alive和router-view实现路由缓存,具体代码如下:在app.vue: <router-view v-if="!$route.meta.keepAlive"/> <keep-alive> <router-view v-if="$route.meta.keepAlive"/ ...
分类:
其他好文 时间:
2020-04-23 18:50:16
阅读次数:
152
https://520mwx.com/view/51242 实现工具:haproxy+keepalived haproxy.cfg的配置: global log 127.0.0.1 local2 chroot /var/lib/haproxy pidfile /var/run/haproxy.pid ...
今天敲代码不在状态,昨晚又没睡着,,,,看小说看到了3点半,今天早上,不对,是中午12点多才起床,断断续续地干了点其他事情,并没有很投入地敲代码。 开发进展和计划 昨天晚上大致敲了一点二手物品发布页,今天做的基本完善了,但还并不完善,预计明天三四五六七节课再加上晚上可以基本完成发布页面,然后后天开始 ...
分类:
移动开发 时间:
2020-03-01 21:59:27
阅读次数:
101
1.wxml <scroll-view class="scroll-view_H" scroll-x style="width: 100%" scroll-into-view="{{toView}}" scroll-left="{{scrollTop}}" bindscrolltoupper="up ...
分类:
微信 时间:
2020-02-24 17:07:06
阅读次数:
150
1.对应android ListView 设计模式:都是适配器模式。android更明显,直接叫adapter. TableView使用协议。协议在android中就是接口。 anroid 中给listview 一个适配器。tableview实现 UITableViewDelegate,UITabl ...
分类:
移动开发 时间:
2020-02-19 15:13:01
阅读次数:
86
第一步: 环境配置 1. DRF官网: https://www.django-rest-framework.org/ 仔细查看自己当前的python版本以及django版本是否支持DRF, 然后就看看哪些支持的模块还没有下载, 由于之前安装过xadmin了, 所以这里正常情况下还有coreapi, ...