You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<view class="page-receipt-detail">
|
|
|
|
<view class="header">
|
|
|
|
<view class="left">
|
|
|
|
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack()" />
|
|
|
|
</view>
|
|
|
|
<view class="title">{{ $t("message.Pi_QueryResults") }}</view>
|
|
|
|
<view class="right"></view>
|
|
|
|
</view>
|
|
|
|
<view class="table-wrapper">
|
|
|
|
<wyb-table
|
|
|
|
class="table"
|
|
|
|
ref="table"
|
|
|
|
width="100%"
|
|
|
|
show-left-and-right-border
|
|
|
|
:headers="headers"
|
|
|
|
:contents="model.detailedList"
|
|
|
|
:show-vert-border="false"
|
|
|
|
></wyb-table>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
|
|
import { Component } from "vue-property-decorator";
|
|
|
|
import { BasePage } from "@/components/base/page";
|
|
|
|
import { headers } from "./config";
|
|
|
|
import model from "./model";
|
|
|
|
|
|
|
|
@Component
|
|
|
|
export default class RawReceiptDetail extends BasePage {
|
|
|
|
model = model;
|
|
|
|
headers = headers;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.page-receipt-detail {
|
|
|
|
background: #f2f2f2
|
|
|
|
linear-gradient(0deg, #f2f2f2 0%, #4a78ea 51%, #1753ea 100%) no-repeat;
|
|
|
|
background-size: 100% 600rpx;
|
|
|
|
padding: 30rpx;
|
|
|
|
min-height: 100%;
|
|
|
|
padding-top: 118rpx;
|
|
|
|
padding-bottom: 162rpx;
|
|
|
|
|
|
|
|
.header {
|
|
|
|
position: fixed;
|
|
|
|
top: 36rpx;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
display: flex;
|
|
|
|
height: 88rpx;
|
|
|
|
line-height: 88rpx;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 34rpx;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
|
|
|
.title {
|
|
|
|
flex: 3;
|
|
|
|
}
|
|
|
|
.left,
|
|
|
|
.right {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 88rpx;
|
|
|
|
height: 88rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-wrapper {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form {
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 40rpx;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|