| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501 |
- <template>
- <view>
- <view class="goods-section">
- <view class="g-item" style="padding-top: 10px;">
- <view class="right">
- <view class="price-box">
- <text class="font12">¥</text>
- <text class="price">{{ ((state.detail.amount+state.detail.grantsAmount)/100).toFixed(2) }}</text>
- </view>
- <block class="price-dsc" >洗车消费</block>
- </view>
- </view>
- </view>
- <!-- 金额明细 -->
- <view class="yt-list" >
- <view class="yt-list-cell b-b">
- <text class="cell-tit clamp">订单编号</text>
- <text class="cell-tip copy" @click="handleCopy">{{ state.detail.orderNo }} <uv-icon name="info-circle"></uv-icon></text>
- </view>
- <view class="yt-list-cell b-b">
- <text class="cell-tit clamp">支付金额</text>
- <text class="cell-tip red">-¥{{ ((state.detail.amount)/100).toFixed(2) }}</text>
- </view>
- <view class="yt-list-cell b-b">
- <text class="cell-tit clamp">优惠金额</text>
- <text class="cell-tip red">-¥{{ ((state.detail.grantsAmount)/100).toFixed(2) }}</text>
- </view>
- <view class="yt-list-cell desc-cell">
- <text class="cell-tit clamp">备注</text>
- {{ state.detail.remark }}
- </view>
- <view class="yt-list-cell b-b">
- <text class="cell-tit clamp">交易状态</text>
- <text class="cell-tip" :class="state.detail.status==0?'primary':(state.detail.status==1?'success':'error')">
- {{fmtDictName('WalletDetail.status', state.detail.status)}}
- </text>
- </view>
- <view class="yt-list-cell b-b">
- <text class="cell-tit clamp">创建时间</text>
- <text class="cell-tip">{{ fmtDateTime(state.detail.createTime)}}</text>
- </view>
- <view class="yt-list-cell b-b">
- <text class="cell-tit clamp">交易时间</text>
- <text class="cell-tip">{{ fmtDateTime(state.detail.transactionTime)}}</text>
- </view>
- </view>
- <view class="btn">
- <!-- <view class="btn_2" @click="jump_torefund(my_order.order_id)">退款</view>-->
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import {onHide, onShow,onLoad} from "@dcloudio/uni-app";
- import {reactive} from "vue";
- import {get} from "@/utils/https";
- import {fmtDictName,fmtDateTime} from "@/utils/common";
- const initState = () => ({
- detail: {} as any
- })
- const state = reactive(initState())
- onLoad((options:any) => {
- console.log("onshow",options)
- let {orderNo, id, type} = options;
- get(`/account/walletDetail?type=${type}&orderNo=${orderNo}`).then(res => {
- state.detail = res;
- })
- })
- onHide(() => {
- Object.assign(state, initState());
- })
- const handleCopy = ()=>{
- if (!state.detail.orderNo) return;
- uni.setClipboardData({
- data: state.detail.orderNo,
- success: function () {
- uni.showToast({
- title: '复制成功',
- icon: 'success',
- })
- }
- })
- }
- </script>
- <style lang="scss">
- page {
- background: #f8f8f8;
- padding-bottom: 100rpx;
- }
- .copy{
- color:$uni-color-primary !important;
- }
- .goods-section {
- margin-top: 16rpx;
- background: #fff;
- padding-bottom: 1px;
- .g-header {
- display: flex;
- align-items: center;
- height: 84rpx;
- padding: 0 30rpx;
- position: relative;
- }
- .logo {
- display: block;
- width: 50rpx;
- height: 50rpx;
- border-radius: 100px;
- }
- .name {
- font-size: 30rpx;
- color: #606266;
- margin-left: 24rpx;
- }
- .g-item {
- display: flex;
- margin: 20rpx 30rpx;
- image {
- flex-shrink: 0;
- display: block;
- width: 140rpx;
- height: 140rpx;
- border-radius: 4rpx;
- }
- .right {
- flex: 1;
- padding-left: 24rpx;
- overflow: hidden;
- text-align: center;
- }
- .title {
- font-size: 30rpx;
- color: #303133;
- }
- .spec {
- font-size: 26rpx;
- color: #909399;
- }
- .price-box {
- /* display: flex; */
- /* align-items: center; */
- color: #303133;
- padding-top: 10rpx;
- .price {
- margin-bottom: 4rpx;
- font-size: 48rpx;
- }
- .number {
- font-size: 26rpx;
- color: #606266;
- margin-left: 20rpx;
- }
- }
- .price-dsc{
- font-size:26rpx;
- color:$uni-text-color-grey;
- }
- .step-box {
- position: relative;
- }
- }
- }
- .yt-list {
- margin-top: 16rpx;
- background: #fff;
- }
- .yt-list-cell {
- display: flex;
- align-items: center;
- padding: 10rpx 30rpx 10rpx 40rpx;
- line-height: 70rpx;
- position: relative;
- &.cell-hover {
- background: #fafafa;
- }
- &.b-b:after {
- left: 30rpx;
- }
- .cell-icon {
- height: 32rpx;
- width: 32rpx;
- font-size: 22rpx;
- color: #fff;
- text-align: center;
- line-height: 32rpx;
- background: #f85e52;
- border-radius: 4rpx;
- margin-right: 12rpx;
- &.hb {
- background: #ffaa0e;
- }
- &.lpk {
- background: #3ab54a;
- }
- }
- .cell-more {
- align-self: center;
- font-size: 24rpx;
- color: #909399;
- margin-left: 8rpx;
- margin-right: -10upx;
- }
- .cell-tit {
- flex: 1;
- font-size: 26rpx;
- color: #909399;
- margin-right: 10rpx;
- }
- .cell-tip {
- font-size: 26rpx;
- color: #303133;
- &.disabled {
- color: #909399;
- }
- &.active {
- color: #fa436a;
- }
- &.red {
- color: #fa436a;
- }
- }
- &.desc-cell {
- .cell-tit {
- max-width: 90rpx;
- }
- }
- .desc {
- flex: 1;
- font-size: 28rpx;
- color: #303133;
- }
- }
- /* 支付列表 */
- .pay-list {
- padding-left: 40rpx;
- margin-top: 16rpx;
- background: #fff;
- .pay-item {
- display: flex;
- align-items: center;
- padding-right: 20rpx;
- line-height: 1;
- height: 110rpx;
- position: relative;
- }
- .icon-weixinzhifu {
- width: 80rpx;
- font-size: 40rpx;
- color: #6BCC03;
- }
- .icon-alipay {
- width: 80rpx;
- font-size: 40rpx;
- color: #06B4FD;
- }
- .icon-xuanzhong2 {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 60rpx;
- height: 60rpx;
- font-size: 40rpx;
- color: #fa436a;
- }
- .tit {
- font-size: 32rpx;
- color: #303133;
- flex: 1;
- }
- }
- .footer {
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 995;
- display: flex;
- align-items: center;
- width: 100%;
- height: 90rpx;
- justify-content: space-between;
- font-size: 30rpx;
- background-color: #fff;
- z-index: 998;
- color: #606266;
- box-shadow: 0 -1px 5px rgba(0, 0, 0, .1);
- .price-content {
- padding-left: 30rpx;
- }
- .price-tip {
- color: #fa436a;
- margin-left: 8rpx;
- }
- .price {
- font-size: 36rpx;
- color: #fa436a;
- }
- .submit {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 280rpx;
- height: 100%;
- color: #fff;
- font-size: 32rpx;
- background-color: #fa436a;
- }
- }
- /* 优惠券面板 */
- .mask {
- display: flex;
- align-items: flex-end;
- position: fixed;
- left: 0;
- top: var(--window-top);
- bottom: 0;
- width: 100%;
- background: rgba(0, 0, 0, 0);
- z-index: 9995;
- transition: .3s;
- .mask-content {
- width: 100%;
- min-height: 30vh;
- max-height: 70vh;
- background: #f3f3f3;
- transform: translateY(100%);
- transition: .3s;
- overflow-y: scroll;
- }
- &.none {
- display: none;
- }
- &.show {
- background: rgba(0, 0, 0, .4);
- .mask-content {
- transform: translateY(0);
- }
- }
- }
- /* 优惠券列表 */
- .coupon-item {
- display: flex;
- flex-direction: column;
- margin: 20rpx 24rpx;
- background: #fff;
- .con {
- display: flex;
- align-items: center;
- position: relative;
- height: 120rpx;
- padding: 0 30rpx;
- &:after {
- position: absolute;
- left: 0;
- bottom: 0;
- content: '';
- width: 100%;
- height: 0;
- border-bottom: 1px dashed #f3f3f3;
- transform: scaleY(50%);
- }
- }
- .left {
- display: flex;
- flex-direction: column;
- justify-content: center;
- flex: 1;
- overflow: hidden;
- height: 100rpx;
- }
- .title {
- font-size: 32rpx;
- color: #303133;
- margin-bottom: 10rpx;
- }
- .time {
- font-size: 24rpx;
- color: #909399;
- }
- .right {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- font-size: 26rpx;
- color: #606266;
- height: 100rpx;
- }
- .price {
- font-size: 44rpx;
- color: #fa436a;
- &:before {
- content: '¥';
- font-size: 34rpx;
- }
- }
- .tips {
- font-size: 24rpx;
- color: #909399;
- line-height: 60rpx;
- padding-left: 30rpx;
- }
- .circle {
- position: absolute;
- left: -6upx;
- bottom: -10upx;
- z-index: 10;
- width: 20rpx;
- height: 20rpx;
- background: #f3f3f3;
- border-radius: 100px;
- &.r {
- left: auto;
- right: -6upx;
- }
- }
- }
- .primary{
- color: $uni-color-primary !important;
- }
- .success{
- color: $uni-color-success !important;
- }
- .error{
- color: $uni-color-error !important;
- }
- </style>
|