flex 常用写法
1、 原生native页面中:
html结构:
XML/HTML Code复制内容到剪贴板
- <div>
- <div class="uni-list-item" @click="onClick">
- <div class="uni-list-item__container">
- <text class="zg-title">整改部位:河桥拆复建</text>
- <div class="zg-wrapper">
- <text class="zg-desc">涟水xx建筑劳务分包有限公司,经检查,xx国际机场xx航站楼改扩建工程北指廊S3-1区2层顶板钢筋工程施工存在如下质量问题: 1.部分次梁底部排筋未绑扎; 2.部分次梁主筋弯曲严重; 3.部分次梁箍筋加密区箍筋过少; 4.部分拉钩弯钩绑扎位置不符合要求,且与腰筋不垂直; 5.部分次梁与主梁节点底部排筋断开,锚固长度不足37d; 6.部分结构柱“7型”钢筋未与劲性柱焊接。 现要求,你公司立即停工整改,经验收通过后书面报请项目部签字同意后方可进行下一步工序施工。</text>
- </div>
- <div class="zg-wrapper">
- <div class="zg-info">
- <text class="zg-fqr">发起人:xx1</text>
- <text class="zg-zrw">责任人:xx2</text>
- </div>
- </div>
- <div class="zg-wrapper">
- <text class="zg-date">发布日期:2018-12-23</text>
- </div>
- </div>
- </div>
- </div>
style 样式:
XML/HTML Code复制内容到剪贴板
- <style>
- .uni-list-item {
- width: 750px;
- padding: 0 30px;
- background-color: #eeedf2;
- }
- .uni-list-item__container {
- flex: 1;
- flex-direction: column;
- padding: 20px;
- border-radius: 15upx;
- margin-top: 32upx;
- background-color: #FFFFFF;
- }
- /* 标题 */
- .zg-title{
- flex: 1;
- lines: 3;
- text-overflow: ellipsis;
- font-size: 32px;
- color: #555555;
- padding-bottom: 6px;
- margin-bottom: 3px;
- border-bottom-width: 1px;
- border-style: solid;
- border-color: #EEEEEE;
- }
- .zg-wrapper {
- margin-top: 20px;
- flex-direction: row;
- justify-content: space-between;
- }
- .zg-info {
- flex-direction: row;
- }
- .zg-desc{
- flex: 1;
- lines: 3;
- text-overflow: ellipsis;
- font-size: 26upx;
- color: #555555;
- margin-bottom: 8px;
- }
- /* 整改发起人 / 责任人 */
- .zg-info{
- flex-direction: row;
- justify-content: space-between;
- }
- .zg-fqr{
- font-size: 26upx;
- width: 300upx;
- }
- .zg-zrw{
- font-size: 26upx;
- }
- /* 整改时间 */
- .zg-date{
- color: #999999;
- font-size: 24px;
- }
- </style>