feat:设备使用记录

This commit is contained in:
houjunxiang
2026-03-05 16:54:47 +08:00
parent 749ac7f507
commit 9c88c45d66
357 changed files with 21486 additions and 5845 deletions

View File

@@ -1,11 +1,11 @@
/*
* @Author : LQ
* @Description :
* @version : 1.0
* @version : 3.0
* @Date : 2021-08-20 16:44:21
* @LastAuthor : LQ
* @lastTime : 2021-08-20 17:05:57
* @FilePath : /u-view2.0/uview-ui/libs/config/props/grid.js
* @LastAuthor : jry
* @lastTime : 2025-12-19 08:55:21
* @FilePath : /uview-plus/libs/config/props/grid.js
*/
export default {
// grid组件

View File

@@ -16,7 +16,7 @@
/**
* grid 宫格布局
* @description 宫格组件一般用于同时展示多个同类项目的场景,可以给宫格的项目设置徽标组件(badge),或者图标等,也可以扩展为左右滑动的轮播形式。
* @tutorial https://ijry.github.io/uview-plus/components/grid.html
* @tutorial https://uview-plus.jiangruyi.com/components/grid.html
* @property {String | Number} col 宫格的列数(默认 3
* @property {Boolean} border 是否显示宫格的边框(默认 false
* @property {String} align 宫格对齐方式,表现为数量少的时候,靠左,居中,还是靠右 (默认 'left'
@@ -89,7 +89,6 @@
</script>
<style lang="scss" scoped>
@import "../../libs/css/components.scss";
$u-grid-width:100% !default;
.u-grid {
/* #ifdef APP-NVUE */
@@ -106,9 +105,9 @@
// 在uni-app中应尽量避免使用flex布局以外的方式,因为nvue/uvue等方案都支持flex布局
// 这里使用grid布局使用为目前20240409uni-app在抖音小程序开启virtualHost时有bug存在事件失效问题。
/* #ifndef APP-NVUE */
display: grid;
display: grid !important;
grid-gap: v-bind(gap);
grid-template-columns: repeat(v-bind(col), 1fr);
grid-template-columns: repeat(v-bind(col), minmax(0, 1fr));
/* #endif */
}
</style>