This commit is contained in:
2024-05-27 20:20:56 +08:00
parent d32bbad729
commit 6b84c95e2d
4 changed files with 12 additions and 4 deletions

View File

@@ -156,6 +156,12 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
.mgb20 { .mgb20 {
margin-bottom: 20px margin-bottom: 20px
} }
.pd0 {
padding: 0 !important;
}
.pd20 {
padding: 20px !important;
}
.popshow { .popshow {
transform: translateY(-50%); transform: translateY(-50%);
} }

View File

@@ -80,7 +80,7 @@ export default {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: 20px 0; // padding: 20px 0;
} }
text,.page_input { text,.page_input {
display: inline-block; display: inline-block;

View File

@@ -27,7 +27,7 @@
</view> </view>
<view class="zd-row jcflexstart table-title_wraper">{{title}}</view> <view class="zd-row jcflexstart table-title_wraper">{{title}}</view>
<view class="grid-wrap"> <view class="grid-wrap">
<view class="table-wrap"> <view class="zdrow-wrap">
<view class="zd-row sticky zd-th-wraper"> <view class="zd-row sticky zd-th-wraper">
<view class="zd-col-1 zd-th"><text>序号</text></view> <view class="zd-col-1 zd-th"><text>序号</text></view>
<view class="zd-col-1 zd-th"><text>选择</text></view> <view class="zd-col-1 zd-th"><text>选择</text></view>
@@ -99,7 +99,7 @@
<uni-icons type="more-filled" size="14" color="#fff"></uni-icons> <uni-icons type="more-filled" size="14" color="#fff"></uni-icons>
</view> </view>
</view> </view>
<view class="zd-row jcenter"> <view class="zd-row jcenter mgt20 mgb20">
<view class="zd-col-22 zd-row"> <view class="zd-col-22 zd-row">
<view class="zd-col-1 zd-row jcenter"> <view class="zd-col-1 zd-row jcenter">
<view class="zd-checkbox" :class="{'zd-checkbox_active': checkArrActive}" @tap="selectAll"></view> <view class="zd-checkbox" :class="{'zd-checkbox_active': checkArrActive}" @tap="selectAll"></view>
@@ -116,8 +116,10 @@
<!-- 二级表格end --> <!-- 二级表格end -->
</view> </view>
</view> </view>
<view class="zd-row jcenter pd20">
<pagination v-show="dataList1.length > 0" :total="totalCount1" :page-size="queryParams1.pageSize" :current-page="currentPage1" @page-change="handlePageChange1" /> <pagination v-show="dataList1.length > 0" :total="totalCount1" :page-size="queryParams1.pageSize" :current-page="currentPage1" @page-change="handlePageChange1" />
</view> </view>
</view>
<view class="footer"></view> <view class="footer"></view>
<grid-detail :show="delShow" :data="detailObj" :crType="crType" @closeDetail="delShow=false"></grid-detail> <grid-detail :show="delShow" :data="detailObj" :crType="crType" @closeDetail="delShow=false"></grid-detail>
<view class="pop-wraper" :class="{'popshow': show, 'pophide': !show}"> <view class="pop-wraper" :class="{'popshow': show, 'pophide': !show}">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 32 KiB