This commit is contained in:
Huang 2022-08-18 09:08:18 +08:00
parent 1e0ab9d809
commit d9fa2d3a8f
7 changed files with 20 additions and 23 deletions

View File

@ -6,6 +6,7 @@ dist
.hbuilderx
src/manifest.json
src/pages.json
src/tmui/
*.sh
node_modules
*.md

View File

@ -55,12 +55,12 @@ web-view,
white-space: nowrap;
text-overflow: ellipsis;
} @else {
display: -webkit-box!important;
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: $i;
-webkit-box-orient: vertical!important;
-webkit-box-orient: vertical !important;
}
}
}
@ -72,4 +72,4 @@ web-view,
padding-#{$d}: constant(safe-area-inset-#{$d});
padding-#{$d}: env(safe-area-inset-#{$d});
}
}
}

View File

@ -1,34 +1,34 @@
// flex布局
$flex-directions: row,row-reverse,column,column-reverse;
$flex-directions: row, row-reverse, column, column-reverse;
@each $v in $flex-directions {
.flex-#{$v} {
@include flex($v);
}
}
$justify-content: start,end,center,between,around,evenly;
$justify-content: start, end, center, between, around, evenly;
@each $v in $justify-content {
.justify-#{$v} {
@if($v == 'start') {
@if ($v == 'start') {
justify-content: flex- + $v;
}@else if($v == 'start') {
} @else if($v == 'start') {
justify-content: flex- + $v;
}@else {
} @else {
justify-content: $v;
}
}
}
$align-items: start,end,center,baseline,stretch;
$align-items: start, end, center, baseline, stretch;
@each $v in $align-items {
.items-#{$v} {
@if($v == 'start') {
@if ($v == 'start') {
align-items: flex- + $v;
}@else if($v == 'start') {
} @else if($v == 'start') {
align-items: flex- + $v;
}@else {
} @else {
align-items: $v;
}
}
}
}

View File

@ -1,3 +1,3 @@
@import "auxiliary";
@import "mixin";
@import "flex";
@import 'auxiliary';
@import 'mixin';
@import 'flex';

View File

@ -1,8 +1,4 @@
@mixin flex($direction: row) {
display: flex;
flex-direction: $direction;
}

View File

@ -1,7 +1,7 @@
<script lang="ts" setup></script>
<template>
<view class="container"> 页面构建中... </view>
<view class="container"> 页面构建中...54264536 </view>
<view class="flex-row">
<view>item1</view>
<view>item2</view>

View File

@ -10,7 +10,7 @@
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"types": ["@dcloudio/types"],
"types": ["@dcloudio/types","src/tmui/interface.ts"],
"paths": {
"@/*":["./src/*"]
}
@ -20,6 +20,6 @@
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"node_modules/@dcloudio/types/uni-app/uni.d.ts"
"node_modules/@dcloudio/types/uni-app/uni.d.ts",
]
}