@zscreate/zhxy-app-component 1.0.260 → 1.0.262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<view
|
|
2
|
+
<view style="height: 100%; padding: 0 10rpx; display: flex; flex-direction: column">
|
|
3
3
|
<view style="padding: 10rpx 0 ;display: flex; flex-shrink: 0">
|
|
4
4
|
<view>
|
|
5
5
|
<u-button size="mini" :ripple="true" ripple-bg-color="#4480E3" @click="isFilterShow = true">
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
<u-popup v-model="isFilterShow" mode="bottom" z-index="200">
|
|
16
16
|
<view class="filter_wrap" style="padding: 20rpx">
|
|
17
17
|
<u-form :model="searchForm" ref="uForm">
|
|
18
|
-
<u-form-item label="申请人"><u-input v-model="searchForm.user_name" /></u-form-item>
|
|
19
|
-
<u-form-item label="状态">
|
|
20
|
-
<u-input v-model="searchForm.business_status_str" type="select" @click="statusShow = true" />
|
|
18
|
+
<u-form-item label-width="100" label="申请人"><u-input placeholder="用户名/真实姓名查询" v-model="searchForm.user_name" /></u-form-item>
|
|
19
|
+
<u-form-item label-width="100" label="状态">
|
|
20
|
+
<u-input v-model="searchForm.business_status_str" placeholder="选择状态" type="select" @click="statusShow = true" />
|
|
21
21
|
</u-form-item>
|
|
22
22
|
</u-form>
|
|
23
23
|
<view style="display: flex; justify-content: center; padding: 10rpx">
|
|
@@ -26,11 +26,10 @@
|
|
|
26
26
|
</view>
|
|
27
27
|
</u-popup>
|
|
28
28
|
<u-picker mode="selector" v-model="statusShow" :range="statusRange" @confirm="selectStatus" range-key="label" />
|
|
29
|
-
<view
|
|
30
|
-
<view class="grid-container" >
|
|
29
|
+
<view style="flex-shrink: 0; overflow: auto; flex: 1; " >
|
|
30
|
+
<view class="grid-container" style="" >
|
|
31
31
|
<view v-for="(h, n) in header" :key='n' :class="{ 'grid-item': true }">
|
|
32
32
|
<template v-if="h.columnName === '#'">
|
|
33
|
-
#
|
|
34
33
|
<!-- <u-checkbox-group>-->
|
|
35
34
|
<!-- <u-checkbox @change="checkboxChangeAll" v-model="checkedAll" name="all"></u-checkbox>-->
|
|
36
35
|
<!-- </u-checkbox-group>-->
|
|
@@ -66,7 +65,7 @@
|
|
|
66
65
|
</template>
|
|
67
66
|
<!-- 更多行... -->
|
|
68
67
|
</view>
|
|
69
|
-
<view style="display: flex; justify-content: center; padding: 20rpx; gap: 20rpx; align-items: center; font-size: 24rpx">
|
|
68
|
+
<view v-if="ipage.total > ipage.pageSize" style="display: flex; justify-content: center; padding: 20rpx; gap: 20rpx; align-items: center; font-size: 24rpx">
|
|
70
69
|
<view>
|
|
71
70
|
共{{ ipage.total }}条
|
|
72
71
|
</view>
|
|
@@ -81,7 +80,7 @@
|
|
|
81
80
|
</view>
|
|
82
81
|
</view>
|
|
83
82
|
|
|
84
|
-
<t-empty v-if="!isLoading" :dataSource="tableData"/>
|
|
83
|
+
<t-empty v-if="!isLoading" style="margin: 0 auto" :dataSource="tableData"/>
|
|
85
84
|
<t-loading :isLoading="isLoading"/>
|
|
86
85
|
</view>
|
|
87
86
|
|
|
@@ -309,6 +308,7 @@ export default {
|
|
|
309
308
|
}
|
|
310
309
|
.grid-container {
|
|
311
310
|
display: grid;
|
|
311
|
+
width: 100%;
|
|
312
312
|
grid-template-columns: 100rpx repeat(4, minmax(200rpx, 600rpx));
|
|
313
313
|
grid-template-rows: repeat(auto-fill, auto);
|
|
314
314
|
}
|