shish 3 лет назад
Родитель
Сommit
abcb079e47
2 измененных файлов с 12 добавлено и 11 удалено
  1. 3 3
      ghsApp/src/admin/home/me.vue
  2. 9 8
      ghsApp/src/pagesStore/me/withdraw.vue

+ 3 - 3
ghsApp/src/admin/home/me.vue

@@ -38,9 +38,9 @@
               <view> <text>¥ </text> {{ shopInfo.balance||0 }} </view>
               <view>
                 可提现 ¥ {{ shopInfo.txBalance||0 }}
-                <text class="to-cash" @click="pageTo({ url: '/admin/shopYeChange/list' })" style="margin-left:20upx;">变动明细</text>
-                <text class="to-cash" @click="pageTo({ url: '/pagesStore/me/withdraw' })" style="margin-left:20upx;">提现记录</text>
-                <text v-if="shopInfo.txBalance > 0" @click="checkToApplyCash" class="to-cash" style="margin-left:20upx;">提现</text>
+                <text class="to-cash" @click="pageTo({ url: '/admin/shopYeChange/list' })" style="margin-left:30upx;">变动明细</text>
+                <text class="to-cash" @click="pageTo({ url: '/pagesStore/me/withdraw' })" style="margin-left:30upx;">提现记录</text>
+                <text v-if="shopInfo.txBalance > 0" @click="checkToApplyCash" class="to-cash" style="margin-left:30upx;">提现</text>
               </view>
             </view>
           </view>

+ 9 - 8
ghsApp/src/pagesStore/me/withdraw.vue

@@ -8,12 +8,7 @@
 					</t-th>
 				</t-tr>
 				<t-tr v-for="(item, index) in list.data" :key="index">
-					<t-td
-						v-for="(column, colIndex) in columns"
-						:key="colIndex"
-						:align="column.align"
-						:color="column.color"
-					>
+					<t-td v-for="(column, colIndex) in columns" :key="colIndex" :align="column.align" :color="column.color" >
 						<view>
 							{{ item[column.dataIndex] || "" }}
 						</view>
@@ -42,17 +37,23 @@ export default {
 		return {
 			columns: [
 				{
-					name: "申请时间",
+					name: "时间",
 					dataIndex: "addTime",
 					color: "info",
 					align: "center"
 				},
 				{
-					name: "提现金额",
+					name: "提现",
 					dataIndex: "amount",
 					color: "info",
 					align: "center"
 				},
+				{
+					name: "实收",
+					dataIndex: "beAmount",
+					color: "info",
+					align: "center"
+				},
 				{
 					name: "状态",
 					dataIndex: "statusText",