码迷,mamicode.com
首页 >  
搜索关键字:反向导航 bar button item    ( 27903个结果
python 数据结构 list和链表实现栈的三种方法
list实现, 头插带头结点的单链表实现链栈,两个队列实现栈 MAX_SIZE = 100 class MyStack1(object): """模拟栈""" def __init__(self): self.items = [] self.size = 0 def is_empty(self): ...
分类:编程语言   时间:2020-06-29 20:07:08    阅读次数:65
agc045_d Lamps and Buttons
agc045_d Lamps and Buttons https://atcoder.jp/contests/agc045/tasks/agc045_d Tutorial 考虑Snuke的策略. 从小到大一次枚举 \(i\) ,按下 \(i\) ,如果 \(p_i=i\) ,则失败,否则可以点亮 \ ...
分类:其他好文   时间:2020-06-29 18:39:34    阅读次数:107
uni-app中长按删除
1、view代码 <view class="imgShow" v-for="(item,index) in list" :key="index"> <image :src="item.image_path" @touchstart.prevent="touchstart(index)" @touch ...
分类:移动开发   时间:2020-06-29 18:28:39    阅读次数:234
Linux shell 判断字符串为空等常用命令
https://www.cnblogs.com/cute/archive/2011/08/26/2154137.html 1、判断字符串为空 if [ -z "$str" ]; then echo "empty string" fi 2、判断文件是否存在 if [ -f /home/builder/ ...
分类:系统相关   时间:2020-06-29 13:44:40    阅读次数:107
vue中input框的fileREader技术上传图片
1.在前端中使用input框,type=”file“来实现选择文件夹的功能 在表单中的input框中的添加按钮 <el-form-item label="产品图片" prop="picture" style="position:relative"> <el-input v-model="form1. ...
分类:Web程序   时间:2020-06-29 13:24:28    阅读次数:82
Js 一些纪要
Js通过值获取索引下标 var list = [1, 2, 3, 4, 5, 6, 7, 8] var index = list.map(item => item).indexOf(8) console.log(index) //7 var array = [{ name: "aa" }, { na ...
分类:Web程序   时间:2020-06-29 11:44:47    阅读次数:58
iview上的兼容性问题
1、transfer树形 经典的用法 <Poptip :transfer="true" confirm title="确定要删除这条记录吗?" @on-ok="ok(row)" @on-cancel="cancel"> <Button type="error" size="small">删除</Bu ...
分类:其他好文   时间:2020-06-29 09:30:40    阅读次数:78
0042. Trapping Rain Water (H)
Trapping Rain Water (H) 题目 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is ...
分类:移动开发   时间:2020-06-29 09:29:26    阅读次数:60
简单的按钮样式,两个连在一起的按钮
样式效果: <div class="btnBox"> <button class="btn btn1">白名单用户</button> <button class="btn btn2">黑名单用户</button> </div> <style type="text/css"> .btnBox{ dis ...
分类:其他好文   时间:2020-06-29 09:21:40    阅读次数:180
【Beta】Scrum meeting 3
Beta 冲刺第三天:2020.6.28 1.1成员今日分工 成员分工 白玛次仁 录制测试视频 穷吉 软件各项功能测试,修复bug 罗松 软件各项功能测试,修复bug 焦旭超 编写博客 1.2 今日发现了哪些Bug,描述发现Bug的测试用例和Bug的修复情况; 1)微信授权登陆有时候不成功:之前微信 ...
分类:其他好文   时间:2020-06-29 00:22:11    阅读次数:61
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!