|
|
|
@ -8,7 +8,7 @@
|
|
|
|
|
:inline="true"
|
|
|
|
|
label-width="100px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="换电站编码" prop="stationNo">
|
|
|
|
|
<el-form-item label="换电站编码" prop="stationNo" >
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.stationNo"
|
|
|
|
|
placeholder="请输入换电站编码"
|
|
|
|
@ -85,12 +85,12 @@
|
|
|
|
|
}">
|
|
|
|
|
<el-table-column label="序号" type="index" align="center" width="80" />
|
|
|
|
|
<!-- <el-table-column label="编号" align="center" prop="id" /> -->
|
|
|
|
|
<el-table-column label="换电站编码" align="center" prop="stationNo" />
|
|
|
|
|
<el-table-column label="换电站编码" align="center" prop="stationNo" width="120"/>
|
|
|
|
|
<el-table-column label="用户id" align="center" prop="userId" />
|
|
|
|
|
<!-- <el-table-column label="套餐id" align="center" prop="setMealId" /> -->
|
|
|
|
|
<el-table-column label="套餐名" align="center" prop="name" />
|
|
|
|
|
<el-table-column label="支付金额(分)" align="center" prop="payPrice" />
|
|
|
|
|
<el-table-column label="支付订单编号" align="center" prop="payOrder" />
|
|
|
|
|
<el-table-column label="支付金额(分)" align="center" prop="payPrice" width="130" />
|
|
|
|
|
<el-table-column label="支付订单编号" align="center" prop="payOrder" width="130"/>
|
|
|
|
|
<el-table-column label="有效月份" align="center" prop="effective" />
|
|
|
|
|
<el-table-column label="套餐次数" align="center" prop="frequency" />
|
|
|
|
|
<el-table-column
|
|
|
|
@ -100,7 +100,7 @@
|
|
|
|
|
:formatter="dateFormatter"
|
|
|
|
|
width="180px"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status" >
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status" width="100" >
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.PAYRESULT" :value="scope.row.status" />
|
|
|
|
|
</template>
|
|
|
|
|