From b8038d59ee088c0a178453a0993085a70b05696a Mon Sep 17 00:00:00 2001 From: mo-bai <1873032855@qq.com> Date: Tue, 22 Feb 2022 17:11:11 +0800 Subject: [PATCH] canvas --- .DS_Store | Bin 6148 -> 8196 bytes common/css/reset.scss | 62 +++++++ pages.json | 2 +- pages/login/index.vue | 13 +- pages/mall/index.vue | 293 +++++++++++++++++++++++++++----- pages/trade/quotationList.vue | 71 +++++--- static/.DS_Store | Bin 0 -> 6148 bytes static/imgs/.DS_Store | Bin 0 -> 6148 bytes static/imgs/mall/border-bg.png | Bin 0 -> 27538 bytes static/imgs/mall/close-icon.png | Bin 0 -> 1748 bytes static/imgs/mall/qrCode-bg.png | Bin 0 -> 44819 bytes 11 files changed, 370 insertions(+), 71 deletions(-) create mode 100644 static/.DS_Store create mode 100644 static/imgs/.DS_Store create mode 100644 static/imgs/mall/border-bg.png create mode 100644 static/imgs/mall/close-icon.png create mode 100644 static/imgs/mall/qrCode-bg.png diff --git a/.DS_Store b/.DS_Store index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..184911d8bf3c40b92f2f0e9ce5c3d37d71189fa6 100644 GIT binary patch literal 8196 zcmeHMPj3=I9Q_Rix=^beG;%T7i#I}`HH|%(P;3u9m>4m7P}A-LmeuVp;ZI3L8t#4q zJ@^&;9DV{nizj`*nGtuVa3v&dySO=^F)&c9lzu*9#*_@me&wbTvOY4Aj;J3mu^d9e4;=(n&NF+R{2;9k}iQ$L?A3s80b6jrjclebrwwN#Q0PfY+xg zUC@}i2K$@A&QqIWI>#rbD9si33~o_#`^=>-^2nTx_+)5uk~hZrjd_co26IC)FVb_! zoEfY<_2`m(8o-H8nv3fu`kHd$9G(T3XO-TW;}biPWN%}R9=HL$#Y~2{HmO?SOHz3Q zZhP?NJ<2m^SLxWBq%J3QtXSqvl3D!ATy=KoR8mu*XLJNl4(SQ7imO}Vm$;emD=)9w z!<7frHoS#ftGWJU*w=5AzWe;VSA0o4n&E+>8r|1;7i*H)Jc+whqqw%om4PNol zQ*YGsb^Uo9hl{%BzX-aMlhWyM64&o4hrKhCZ`<7OZU{iLE>>UdFp zK`mv-MQad+al{LfH92WkjD=`yG2S*Qs~l`YURG5o+Q>_8c8b5H`6qHyc5oCfSt3|W zDOEwLQVTJC3weR06gepPR)^+{cq56c#KN%8|HZPf73;uy9oSIAl{x-DTK)ciy_2$| zSqH2GYjr?m4_k*#4Eg65i#a;S+Ai`bGAHKE6-o&T8IA*GI1XI=VTig5Dr*`V=L*q+ QWM2eG8*E`6SgQlS0S|~uDF6Tf delta 102 zcmZp1XfcprU|?W$DortDU=RQ@Ie-{MGpJ516q~50$O>XJZcJRpKCyv!F*^r`ATvk= nsE8X#xB{{2#=`H+llf&785t*=%4qX2K@0(z%dk0~XAUy}7$6T& diff --git a/common/css/reset.scss b/common/css/reset.scss index c3a30e0..2178bac 100644 --- a/common/css/reset.scss +++ b/common/css/reset.scss @@ -24,6 +24,68 @@ form { display: block; } +view, +image, +text { + box-sizing: border-box; + flex-shrink: 0; +} + +.flex-row { + display: flex; + flex-direction: row; +} + +.flex-col { + display: flex; + flex-direction: column; +} + +.justify-start { + display: flex; + justify-content: flex-start; +} + +.justify-center { + display: flex; + justify-content: center; +} + +.justify-end { + display: flex; + justify-content: flex-end; +} + +.justify-evenly { + display: flex; + justify-content: space-evenly; +} + +.justify-around { + display: flex; + justify-content: space-around; +} + +.justify-between { + display: flex; + justify-content: space-between; +} + +.items-start { + display: flex; + align-items: flex-start; +} + +.items-center { + display: flex; + align-items: center; +} + +.items-end { + display: flex; + align-items: flex-end; +} + cover-view { line-height: 1.5; white-space: normal; diff --git a/pages.json b/pages.json index b812eea..43b3238 100644 --- a/pages.json +++ b/pages.json @@ -65,7 +65,7 @@ "enablePullDownRefresh": false, "navigationStyle": "custom", "app-plus": { - "softinputMode": "adjustResize" + "softinputMode": "adjustPan" } } }, diff --git a/pages/login/index.vue b/pages/login/index.vue index 1827263..38ab9c3 100644 --- a/pages/login/index.vue +++ b/pages/login/index.vue @@ -1,5 +1,5 @@