1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="column flex-1 hb">
- <view class="p20">
- <view class="fs28 base-color-6 justify-between">
- <view>今日</view>
- <view class="justify-start align-center base-color">
- <image src="../../../static/manergevip/Refresh.png"
- class="w30 h30" ></image>
- <text class="ml8">刷新</text>
- </view>
- </view>
- <view class="justify-start mtb20 pb20" style="border-bottom: #eee solid 2rpx;">
- <image src="../../../static/images/send.png" class="w60 h60"></image>
- <view class="ml20">
- <view class="fs28">数据表格名称</view>
- <view class="justify-start fs24 base-color-6">
- <view>0MB</view>
- <view class="plr12 mlr12"
- style="border-right: 2rpx solid #ddd;border-left: 2rpx solid #ddd">2024-01-26 16:37:30</view>
- <view>已过期</view>
- </view>
- </view>
- </view>
- <view class="fs28 base-color-6">昨日</view>
- <view class="fs28 base-color-6">以往</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- background-color: #fff;
- }
- </style>
|