shish 1 tahun lalu
induk
melakukan
964d4ec9a9
1 mengubah file dengan 10 tambahan dan 3 penghapusan
  1. 10 3
      ghs/src/views/member/custom-balance-list.vue

+ 10 - 3
ghs/src/views/member/custom-balance-list.vue

@@ -13,16 +13,23 @@
 				<span> {{ scope.row.io == 1 ? '+' : '-' }} {{ scope.row.amount }} </span>
 			</template>
 
+			<template #table-column-capitalType="{scope}">
+				<span v-if="scope.row.capitalType == 75">售后返充</span>
+				<span v-else-if="scope.row.capitalType == 62">线下充值</span>
+				<span v-else-if="scope.row.capitalType == 66">线上充值</span>
+				<span v-else-if="scope.row.capitalType == 64">结账</span>
+			</template>
+
 			<template #slot-search-list="{scope}">
 
 				<el-select @change="getCurrentCp" v-model="currentCustomName" filterable remote reserve-keyword placeholder="搜索客户" clearable 
-				:remote-method="searchCpInfo" :loading="loading" style="width:200px;margin-right:10px;" size="mini">
+				:remote-method="searchCpInfo" :loading="loading" style="width:200px;margin-right:10px;" size="middle">
     				<el-option v-for="item in customInfoList" :key="item.id" :label="`${item.name}(${item.id})`" :value="item.id"> </el-option>
   				</el-select>
 
-				<span style="margin-left:9px;font-size:20px;">充值时间:</span>
+				<span style="margin-left:9px;font-size:28px;">时间:</span>
 				<el-date-picker v-model="currentDateList" type="daterange" align="right" unlink-panels range-separator="至" start-placeholder="开始日期" @change="getSearchDate" value-format="yyyy-MM-dd"
-				class="custom-date-picker" end-placeholder="结束日期" :picker-options="pickerOptions" size="mini" style="margin-right:8px;">
+				class="custom-date-picker" end-placeholder="结束日期" :picker-options="pickerOptions" size="middle" style="margin-right:8px;">
 				</el-date-picker>
 
 			</template>