SEC_Warehouse/pages/event/index.vue

45 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 事件页使用 uview-plus 筛选与空状态组件 -->
<template>
<view class="page page-base">
<up-navbar title="事件" :fixed="false" :safe-area-inset-top="true" :border="false" left-icon="" />
<view class="filters">
<view><up-button size="mini" type="primary" plain text="全部场所" /></view>
<view><up-button size="mini" type="primary" plain text="全部状态" /></view>
<view><up-button size="mini" type="primary" plain text="时间" /></view>
</view>
<view class="empty-area">
<up-empty mode="message" text="暂无事件数据" />
</view>
</view>
</template>
<script>
// 当前为静态页占位,不包含交互逻辑。
export default {}
</script>
<style lang="scss" scoped>
@import '@/styles/common.css';
.filters {
> view + view {
margin-left: 18rpx;
}
min-height: 96rpx;
padding: 16rpx 24rpx;
background: #ffffff;
border-top: 1rpx solid #ededed;
display: flex;
align-items: center;
}
.empty-area {
min-height: 880rpx;
display: flex;
align-items: center;
justify-content: center;
}
</style>