mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 占桩订单后管页面新增支付状态筛选条件
This commit is contained in:
@@ -1017,6 +1017,7 @@
|
||||
<if test="dto.stationId != null and dto.stationId != ''"> and t1.station_id = #{dto.stationId}</if>
|
||||
<if test="dto.plateNumber != null and dto.plateNumber != ''"> and t1.plate_number = #{dto.plateNumber}</if>
|
||||
<if test="dto.status != null and dto.status != ''"> and t1.status = #{dto.status}</if>
|
||||
<if test="dto.payStatus != null and dto.payStatus != ''"> and t1.pay_status = #{dto.payStatus}</if>
|
||||
<if test="dto.startTime != null "> and t1.start_time = #{dto.startTime}</if>
|
||||
<if test="dto.orderAmount != null "> and t1.order_amount = #{dto.orderAmount}</if>
|
||||
<if test="dto.pileSn != null and dto.pileSn != ''"> and t1.pile_sn = #{dto.pileSn}</if>
|
||||
|
||||
@@ -7,6 +7,13 @@
|
||||
<el-form-item label="会员id" prop="memberId">
|
||||
<el-input v-model="queryParams.memberId" placeholder="请输入会员id" clearable @keyup.enter.native="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="支付状态" prop="payStatus">
|
||||
<el-select v-model="queryParams.payStatus" placeholder="请选择支付状态" clearable filterable
|
||||
style="width: 140px">
|
||||
<el-option v-for="item in dict.type.occupy_pay_status" :key="item.value" :label="item.label"
|
||||
:value="item.value"/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="充电站id" prop="stationId">-->
|
||||
<!-- <el-input v-model="queryParams.stationId" placeholder="请输入充电站id" clearable @keyup.enter.native="handleQuery" />-->
|
||||
<!-- </el-form-item>-->
|
||||
|
||||
Reference in New Issue
Block a user