19 lines
346 B
Vue
19 lines
346 B
Vue
<template>
|
|
<view class="records-page">
|
|
<view class="records-empty">
|
|
<wd-status-tip :image="uni.$globalData?.RESOURCE_URL + 'tip/message.png'" tip="暂无付款记录" />
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.records-page {
|
|
min-height: 100vh;
|
|
background: #F4F6F8;
|
|
}
|
|
|
|
.records-empty {
|
|
padding-top: 300rpx;
|
|
}
|
|
</style>
|