that.form = res.data.data
that.form.dateTime = that.form.dateTime.replace(/点/g, ":");
that.form.dateTime = that.form.dateTime.repl...
yekong
3年前 (2021-08-24)
喜欢
data = xlrd.open_workbook('name.xlsx')
sheet = data.sheet_by_index(0)
print(sheet.col_types(0)) #返回该列所有单元格类型
...
yekong
3年前 (2021-08-23)
喜欢
主界面右侧点击database
输入地址 端口 用户 和 密码 点击test Connectioon测试连接 第一次可能会提示下载依赖组件直接确认就可以了
连接成功后就可以看到管理我们的数据库了
...
yekong
3年前 (2021-08-21)
喜欢
在 Sass 中注释有两种方式
1、类似 CSS 的注释方式,使用 ”/* ”开头,结属使用 ”*/ ”
2、类似 JavaScript 的注释方式,使用“//”
//定义一个占位符
%mt5 {
margin-top: 5px;
}
/*调用一个占位符*/
.box ...
yekong
3年前 (2021-08-18)
喜欢
$properties: (margin, padding);
@mixin set-value($side, $value) {
@each $prop in $properties {
#{$prop}-#{$side}: $value;
}
...
yekong
3年前 (2021-08-18)
喜欢
Scss 中的占位符 %placeholder 功能
%mt5 {
margin-top: 5px;
}
%pt5{
padding-top: 5px;
}
没有被 @extend 调用,他并没有产生任何代码块,只是静静的躺在你的某个 SCSS 文件中。只有通过 @ex...
yekong
3年前 (2021-08-18)
喜欢
在 Scss 中是通过关键词 “@extend”来继承已存在的类样式块
//SCSS
.btn {
border: 1px solid #ccc;
padding: 6px 10px;
font-size: 14px;
}
.btn-primary {
back...
yekong
3年前 (2021-08-18)
喜欢
Scss混合宏的不足之处是会生成冗余的代码块。
@mixin border-radius{
-webkit-border-radius: 3px;
border-radius: 3px;
}
.box {
@include border-radius;
marg...
yekong
3年前 (2021-08-18)
喜欢
Scss混合宏可以传多个参数
@mixin center($width,$height){
width: $width;
height: $height;
position: absolute;
top: 50%;
left: 50%;
margin-to...
yekong
3年前 (2021-08-18)
喜欢
@mixin border-radius($radius:3px){
-webkit-border-radius: $radius;
border-radius: $radius;
}
调用默认值
.btn {
@include border-radius;
}
...
yekong
3年前 (2021-08-18)
喜欢