会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
凉面好好吃
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
6
7
8
9
10
11
12
13
14
15
下一页
2021年1月26日
uniapp uni.navigateTo 传值传对象
摘要: uni.navigateTo({ url: '/pages/details?obj='+ encodeURIComponent(JSON.stringify(item)) }); 接收: onLoad(option) { this.item=JSON.parse(decodeURIComponent
阅读全文
posted @ 2021-01-26 11:29 凉面好好吃
阅读(7086)
评论(0)
推荐(0)
2021年1月25日
uniapp 微信小程序 打开文件
摘要: uni.downloadFile({ url: item.url, success: (res) => { if (res.statusCode 200) { uni.openDocument({ filePath: res.tempFilePath, // 如果文件名包含中文,建议使用escape
阅读全文
posted @ 2021-01-25 11:31 凉面好好吃
阅读(1626)
评论(0)
推荐(0)
2021年1月22日
java list 分页
摘要: /** * * @param list * @param pageNum * @param pageSize * @param <T> * @return 返回当前页数据 */ public <T> List<T> getListPaging(List<T> list, int pageNum, i
阅读全文
posted @ 2021-01-22 14:09 凉面好好吃
阅读(159)
评论(0)
推荐(0)
2021年1月14日
js 获取系统当前时间,判断时间大小
摘要: 1、获取系统当前时间 getNowTime(tempminit) { if (!tempminit) { tempminit = 0; } var date = new Date(); date.setMinutes(date.getMinutes() - tempminit); var year
阅读全文
posted @ 2021-01-14 11:31 凉面好好吃
阅读(3162)
评论(0)
推荐(0)
uniapp 微信小程序扫码处理
摘要: 1、view 代码 <view class="v-main-scan"> <uni-icons @click="scanCode" class="v-main-icon-scan" type="scan" color="#3079b5" size="150"></uni-icons> <text c
阅读全文
posted @ 2021-01-14 11:29 凉面好好吃
阅读(2369)
评论(0)
推荐(0)
uniapp 微信小程序 生成二维码
摘要: 使用 tki-qrcode组件 生成二维码(https://www.npmjs.com/package/tki-qrcode) 1、引入 tki-qrcode 下载组件后引入 import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue'
阅读全文
posted @ 2021-01-14 11:20 凉面好好吃
阅读(4087)
评论(0)
推荐(0)
2020年12月28日
vue v-if条件判断
摘要: <view class='circle-G' v-if="item.status 'G'"></view> <view class='circle-R' v-else-if="item.status 'R'"></view> <view class='circle' v-else></view>
阅读全文
posted @ 2020-12-28 09:42 凉面好好吃
阅读(2530)
评论(0)
推荐(0)
微信小程序 添加左边固定浮动框
摘要: view: <!-- 悬浮框 --> <view class="v-fixed-title1"> <view class="v-fixed-ic"> <uni-icons size="6" class="v-fixed-icon" type="chatbubble" color="#ffffff">
阅读全文
posted @ 2020-12-28 09:39 凉面好好吃
阅读(1040)
评论(0)
推荐(0)
2020年12月9日
SQL 清除数据库日志
摘要: exec sp_detach_db 'MCS4WLSQM','true' --运行上一个命令. --改名LOG文件后再关闭上一行代码,然后再运行下一行代码 exec sp_attach_single_file_db 'MCS4WLSQM','C:\Program Files\Microsoft SQ
阅读全文
posted @ 2020-12-09 15:32 凉面好好吃
阅读(171)
评论(0)
推荐(0)
2020年11月30日
layui table 使用table放输入框时控制每列的宽度
摘要: <table class="layui-table" lay-filter="demo"> <colgroup> <%--设置每列的宽度--%> <col width="108px"> <col width="10%"> <col width="22%"> <col width="100px"> <
阅读全文
posted @ 2020-11-30 09:17 凉面好好吃
阅读(1507)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
11
12
13
14
15
下一页
公告