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 .hbuilderx
src/manifest.json src/manifest.json
src/pages.json src/pages.json
src/tmui/
*.sh *.sh
node_modules node_modules
*.md *.md

View File

@ -55,12 +55,12 @@ web-view,
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
} @else { } @else {
display: -webkit-box!important; display: -webkit-box !important;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
word-break: break-all; word-break: break-all;
-webkit-line-clamp: $i; -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}: constant(safe-area-inset-#{$d});
padding-#{$d}: env(safe-area-inset-#{$d}); padding-#{$d}: env(safe-area-inset-#{$d});
} }
} }

View File

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

View File

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

View File

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

View File

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

View File

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