@zscreate/zhxy-app-component 1.0.259 → 1.0.261
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.
|
@@ -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">
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
</template>
|
|
67
67
|
<!-- 更多行... -->
|
|
68
68
|
</view>
|
|
69
|
-
<view style="display: flex; justify-content: center; padding: 20rpx; gap: 20rpx; align-items: center; font-size: 24rpx">
|
|
69
|
+
<view v-if="ipage.total > ipage.pageSize" style="display: flex; justify-content: center; padding: 20rpx; gap: 20rpx; align-items: center; font-size: 24rpx">
|
|
70
70
|
<view>
|
|
71
71
|
共{{ ipage.total }}条
|
|
72
72
|
</view>
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
</view>
|
|
82
82
|
</view>
|
|
83
83
|
|
|
84
|
-
<t-empty v-if="!isLoading" :dataSource="tableData"/>
|
|
84
|
+
<t-empty v-if="!isLoading" style="margin: 0 auto" :dataSource="tableData"/>
|
|
85
85
|
<t-loading :isLoading="isLoading"/>
|
|
86
86
|
</view>
|
|
87
87
|
|
|
@@ -151,7 +151,7 @@ export default {
|
|
|
151
151
|
columnCode: 'business_name'
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
|
-
columnName: '
|
|
154
|
+
columnName: '申请人',
|
|
155
155
|
columnCode: 'user_name'
|
|
156
156
|
},
|
|
157
157
|
{
|
|
@@ -309,6 +309,7 @@ export default {
|
|
|
309
309
|
}
|
|
310
310
|
.grid-container {
|
|
311
311
|
display: grid;
|
|
312
|
+
width: 100%;
|
|
312
313
|
grid-template-columns: 100rpx repeat(4, minmax(200rpx, 600rpx));
|
|
313
314
|
grid-template-rows: repeat(auto-fill, auto);
|
|
314
315
|
}
|