上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
  2022年5月10日
摘要: passwd -S kali 查看用户密码的状态 kali P 04/13/2022 0 99999 7 -1 * P 表示设置了密码 04/13/2022 设置时间 0 表示随时更改密码 99999 7 密码快到期会警告 -1 非活动时间 ┌──(root㉿kali)-[~] └─# sudo p 阅读全文
posted @ 2022-05-10 21:54 depressiom 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 界面效果图 分享 index.wxml <!--index.wxml--> <view class="container"> <view class="userinfo"> <block wx:if="{{canIUseOpenData}}"> <view class="userinfo-avata 阅读全文
posted @ 2022-05-10 11:58 depressiom 阅读(365) 评论(0) 推荐(0) 编辑
  2022年5月7日
摘要: 观察代码 //银联支付类调用初始化 use Vendor\UnionPay\UnionPayUserV1; // 导入外部框架的类 public function UoionPayInit() { $client = new \UnionPayV1(); // 这里\的作用是什么? $this->c 阅读全文
posted @ 2022-05-07 17:17 depressiom 阅读(0) 评论(0) 推荐(0) 编辑
  2022年5月6日
摘要: #查看之前的代码如下: //循环组装返回数据 foreach ($rows as &$row){ // 不知此处 & 的作用 } & 符号的作用 &是指逻辑上表示两者属于缺一不可的关系,还表示意思是一个人和另外一个人之意,与and同义。 &在PHP项目中是经常使用的一个操作符, 例如按位与丶逻辑操作 阅读全文
posted @ 2022-05-06 10:00 depressiom 阅读(2288) 评论(0) 推荐(0) 编辑
  2022年4月28日
摘要: 效果图 上代码 <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" con 阅读全文
posted @ 2022-04-28 17:50 depressiom 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 引入 Vant Weapp 案例 [快速上手]{https://vant-contrib.gitee.io/vant-weapp/#/quickstart} #步骤 第一步 使用 npm init -y 对项目进行初始化操作,对包进行管理 第二步 通过 npm 安装 # 通过 npm 安装 npm 阅读全文
posted @ 2022-04-28 17:26 depressiom 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 源码地址 https://git.weixin.qq.com/depressiom/my_mp.git 父子组件之间的通信 属性绑定 用于父组件向子组件的指定属性设置数据,仅能设置JSON兼容的数据 属性绑定用于实现父向子传值,而且只能传递普通类型的数据,无法将方法传递给子组件 // <!-- 父组 阅读全文
posted @ 2022-04-28 15:14 depressiom 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 效果图 创建自定义组件 创建components 文件夹放置组件,一个组件 一个文件夹,右键新建自动创建.js、.json、.wxml、.wxss文件 组件 局部引用 页面.json配置文件中引用组件的方式 { "usingComponents": { "my-test":"../component 阅读全文
posted @ 2022-04-28 10:44 depressiom 阅读(775) 评论(0) 推荐(0) 编辑
  2022年4月27日
摘要: 效果图 主页面跳转 <!-- 九宫格 --> <view class="grid-list"> <!-- 将标签设置为 navigator 并且将id title传值过去 --> <navigator class="grid-item" wx:for="{{gridList}}" wx:key="i 阅读全文
posted @ 2022-04-27 18:30 depressiom 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 源代码地址 https://git.weixin.qq.com/depressiom/my_mp 效果图 contact.json json配置上拉触底 { "usingComponents": {}, "onReachBottomDistance": 50 //设置上拉触底 触发距离 默认50px 阅读全文
posted @ 2022-04-27 14:47 depressiom 阅读(376) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页