This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":1,"resource":"file:///Users/v_yfanzhao/webproject/hec_mobile_web/src/components/FormWidget/DepartmentPicker.vue","entries":[{"id":"SiAe.vue","timestamp":1654767313037},{"id":"4Jwn.vue","timestamp":1654767996735},{"id":"TcYm.vue","timestamp":1654768028248},{"id":"5yfg.vue","source":"undoRedo.source","timestamp":1654768031887}]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
禁用 a 标签 href | |
<a href='javascript:void(0)'></a> | |
onclick 事件绑定 return false | |
<a href="#" onclick="javascript:XXXX;return false;"></a> | |
图片不存在时显示一个默认的图片 | |
<img src="abc.JPG" onerror="this.src='default.JPG'"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.wlhf_productSeriesList .f_seriesTitle .f_sub1:before { | |
/*伪类必须有点实物载体,哪怕是空格,不然伪类元素在html不显示,所以conent设置了一个空格*/ | |
content:" "; | |
position:absolute; | |
left:30px; | |
/*定位直接为0,然后用translate位移100%,不用去计算高度*/ | |
bottom:0px; | |
/*然后用translate位移100%,不用去计算高度*/ | |
transform: translate(0,100%); | |
width:0px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
time=`date +"%Y%m%d"` | |
# 8011 要备份的数据表 列表 | |
# 同步数据库 表 | |
mysqldump -uroot -p site_db a_table > "key$time.sql" && cat "key$time.sql" | mysql -uroot -p coupon_local | |
### 文件移动 | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// TTS | |
// | |
// Created by 太阳在线YHY on 2017/6/28. | |
// Copyright © 2017年 太阳在线. All rights reserved. | |
// | |
import UIKit | |
import AVFoundation |