|
|
@@ -1,13 +1,15 @@
|
|
|
<template>
|
|
|
<view class="app-content">
|
|
|
- <view style="padding:20upx 0 25upx 20upx;font-size:26upx;">
|
|
|
+ <view style="padding:20upx 0 30upx 50upx;font-size:30upx;">
|
|
|
<text @click="changeStatus()">{{ status == -1 ? '选类型' : status == 0 ? '处理中' : status == 1 ? '已通过' : status == 2 ? '已驳回' : '已取消' }}</text>
|
|
|
- <text style="margin-left:20upx;" @click="changeClass()">选分类</text>
|
|
|
- <text style="margin-left:20upx;" @click="changeCause()">{{ cause == -1 ? '选择原因' : cause == 0 ? '质量问题' : '多开错开' }}</text>
|
|
|
- <text style="margin-left:20upx;">总金额 ¥{{ totalAmount }}</text>
|
|
|
- <text style="margin-left:20upx;">总成本 ¥{{ totalCost }}</text>
|
|
|
+ <text style="margin-left:50upx;" @click="changeClass()">选分类</text>
|
|
|
+ <text style="margin-left:50upx;" @click="changeCause()">{{ cause == -1 ? '选原因' : cause == 0 ? '质量问题' : '多开错开' }}</text>
|
|
|
+ </view>
|
|
|
+ <view style="margin-left:50upx;margin-bottom:26upx;position:relative;">
|
|
|
+ <DateSelect class="bar" top="0" @selectDateFn="selectDateFn" />
|
|
|
+ <text style="position: absolute;left:180upx;top:0upx;">总金额 ¥{{ totalAmount }}</text>
|
|
|
+ <text style="position: absolute;left:400upx;top:0upx;">总成本 ¥{{ totalCost }}</text>
|
|
|
</view>
|
|
|
- <view style="margin-left:50upx;margin-bottom:26upx;"><DateSelect class="bar" top="0" @selectDateFn="selectDateFn" /></view>
|
|
|
<block v-if="!$util.isEmpty(list.data)">
|
|
|
|
|
|
<view class="flex-space list" v-for="(item, index) in list.data" :key="index" @click="goDetail(item.refundInfo)">
|