mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-15 07:18:31 +08:00
463 lines
17 KiB
Vue
463 lines
17 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="130px">
|
|
<el-form-item label="占桩订单编号" prop="occupyCode">
|
|
<el-input v-model="queryParams.occupyCode" placeholder="请输入占桩订单编号" clearable @keyup.enter.native="handleQuery" />
|
|
</el-form-item>
|
|
<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>-->
|
|
<!-- <el-form-item label="订单号" prop="orderCode">
|
|
<el-input v-model="queryParams.orderCode" placeholder="请输入订单号" clearable @keyup.enter.native="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item label="交易流水号" prop="transactionCode">
|
|
<el-input v-model="queryParams.transactionCode" placeholder="请输入交易流水号" clearable
|
|
@keyup.enter.native="handleQuery" />
|
|
</el-form-item> -->
|
|
<el-form-item label="占桩开始时间" prop="startTime">
|
|
<el-date-picker clearable v-model="queryParams.startTime" type="date" value-format="yyyy-MM-dd"
|
|
placeholder="请选择占桩开始时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="占桩结束时间" prop="endTime">
|
|
<el-date-picker class="stake-up" clearable v-model="queryParams.endTime" type="date" value-format="yyyy-MM-dd"
|
|
placeholder="请选择占桩结束时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<!-- <el-form-item label="占桩订单金额" prop="orderAmount">
|
|
<el-input v-model="queryParams.orderAmount" placeholder="请输入占桩订单金额" clearable @keyup.enter.native="handleQuery" />
|
|
</el-form-item>-->
|
|
<el-form-item label="充电桩编号" prop="pileSn">
|
|
<el-input v-model="queryParams.pileSn" placeholder="请输入充电桩编号" clearable @keyup.enter.native="handleQuery" />
|
|
</el-form-item>
|
|
<!-- <el-form-item label="充电桩枪口号" prop="connectorCode">-->
|
|
<!-- <el-input v-model="queryParams.connectorCode" placeholder="请输入充电桩枪口号" clearable-->
|
|
<!-- @keyup.enter.native="handleQuery" />-->
|
|
<!-- </el-form-item>-->
|
|
<!-- <el-form-item label="充电桩枪口编号" prop="pileConnectorCode">-->
|
|
<!-- <el-input v-model="queryParams.pileConnectorCode" placeholder="请输入充电桩枪口编号" clearable-->
|
|
<!-- @keyup.enter.native="handleQuery" />-->
|
|
<!-- </el-form-item>-->
|
|
<el-form-item class="custom-item">
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
|
v-hasPermi="['pile:occupy:add']">新增
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
|
v-hasPermi="['pile:occupy:edit']">修改
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
|
|
v-hasPermi="['pile:occupy:remove']">删除
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
|
v-hasPermi="['pile:occupy:export']">导出
|
|
</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="occupyList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<!-- <el-table-column label="主键" align="center" prop="id" /> -->
|
|
<el-table-column label="占桩订单编号" align="center" prop="occupyCode" />
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.occupy_order_status" :value="scope.row.status" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="会员id" align="center" prop="memberId" />
|
|
<el-table-column label="充电站名称" align="center" prop="stationName" />
|
|
<!-- <el-table-column label="订单号" align="center" prop="orderCode" />
|
|
<el-table-column label="交易流水号" align="center" prop="transactionCode" /> -->
|
|
<el-table-column label="占桩开始时间" align="center" prop="startTime" width="180" />
|
|
<el-table-column label="占桩结束时间" align="center" prop="endTime" width="180" />
|
|
<el-table-column label="支付状态" align="center" prop="payStatus">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.occupy_pay_status" :value="scope.row.payStatus" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="占桩订单金额" align="center" prop="orderAmount" />
|
|
<el-table-column label="充电桩编号" align="center" prop="pileSn" />
|
|
<el-table-column label="充电桩枪口号" align="center" prop="connectorCode" />
|
|
<!-- <el-table-column label="充电桩枪口编号" align="center" prop="pileConnectorCode" />-->
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<!-- <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
v-hasPermi="['pile:occupy:edit']">修改
|
|
</el-button>
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
v-hasPermi="['pile:occupy:remove']">删除
|
|
</el-button> -->
|
|
<el-button size="mini" type="text" v-hasPermi="['pile:occupy:remove']"
|
|
@click="getPay(scope.row.id, scope.row.occupyCode)">无需支付
|
|
</el-button>
|
|
<el-button size="mini" type="text" v-hasPermi="['pile:occupy:remove']"
|
|
@click="retryCalculateOccupyPileOrderAmount(scope.row.id, scope.row.occupyCode)">重新计算占桩订单金额
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
|
@pagination="getList" />
|
|
|
|
<!-- 添加或修改占桩订单对话框 -->
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
<el-form-item label="占桩订单编号" prop="occupyCode">
|
|
<el-input v-model="form.occupyCode" placeholder="请输入占桩订单编号" />
|
|
</el-form-item>
|
|
<el-form-item label="会员id" prop="memberId">
|
|
<el-input v-model="form.memberId" placeholder="请输入会员id" />
|
|
</el-form-item>
|
|
<el-form-item label="充电站id" prop="stationId">
|
|
<el-input v-model="form.stationId" placeholder="请输入充电站id" />
|
|
</el-form-item>
|
|
<el-form-item label="订单号" prop="orderCode">
|
|
<el-input v-model="form.orderCode" placeholder="请输入订单号" />
|
|
</el-form-item>
|
|
<el-form-item label="交易流水号" prop="transactionCode">
|
|
<el-input v-model="form.transactionCode" placeholder="请输入交易流水号" />
|
|
</el-form-item>
|
|
<el-form-item label="占桩开始时间" prop="startTime">
|
|
<el-date-picker clearable v-model="form.startTime" type="date" value-format="yyyy-MM-dd"
|
|
placeholder="请选择占桩开始时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="占桩结束时间" prop="endTime">
|
|
<el-date-picker clearable v-model="form.endTime" type="date" value-format="yyyy-MM-dd" placeholder="请选择占桩结束时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="占桩订单金额" prop="orderAmount">
|
|
<el-input v-model="form.orderAmount" placeholder="请输入占桩订单金额" />
|
|
</el-form-item>
|
|
<el-form-item label="充电桩编号" prop="pileSn">
|
|
<el-input v-model="form.pileSn" placeholder="请输入充电桩编号" />
|
|
</el-form-item>
|
|
<el-form-item label="充电桩枪口号" prop="connectorCode">
|
|
<el-input v-model="form.connectorCode" placeholder="请输入充电桩枪口号" />
|
|
</el-form-item>
|
|
<el-form-item label="充电桩枪口编号" prop="pileConnectorCode">
|
|
<el-input v-model="form.pileConnectorCode" placeholder="请输入充电桩枪口编号" />
|
|
</el-form-item>
|
|
<el-form-item label="删除标识" prop="delFlag">
|
|
<el-input v-model="form.delFlag" placeholder="请输入删除标识" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
<!-- 无需支付弹框 -->
|
|
<el-dialog title="提示" :visible.sync="dialogVisible" width="30%" @close="cancel">
|
|
<el-radio-group v-model="radio" @change="agreeChange">
|
|
<el-radio label="1" border>无需支付</el-radio>
|
|
<el-radio label="2" border>手动输入支付金额</el-radio>
|
|
</el-radio-group>
|
|
<el-input v-if="radio === '2'" class="stake" type="number" v-model="stakeUp" placeholder="请输入修改金额"></el-input>
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button @click="cancel">取 消</el-button>
|
|
<el-button type="primary" @click="aresure">确 定</el-button>
|
|
</span>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
listOccupy,
|
|
getOccupy,
|
|
delOccupy,
|
|
addOccupy,
|
|
updateOccupy,
|
|
noNeedPay,
|
|
retryCalculateOccupyPileOrderAmount
|
|
} from "@/api/pile/occupy";
|
|
|
|
export default {
|
|
name: "Occupy",
|
|
dicts: ["occupy_order_status", "occupy_pay_status"],
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 占桩订单表格数据
|
|
occupyList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
occupyCode: null,
|
|
status: null,
|
|
memberId: null,
|
|
stationId: null,
|
|
orderCode: null,
|
|
transactionCode: null,
|
|
startTime: null,
|
|
endTime: null,
|
|
payStatus: null,
|
|
orderAmount: null,
|
|
pileSn: null,
|
|
connectorCode: null,
|
|
pileConnectorCode: null,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {},
|
|
// 无需支付弹框
|
|
dialogVisible: false,
|
|
// 无需支付单选框状态
|
|
radio: '1',
|
|
// 占桩支付金额
|
|
stakeUp: '',
|
|
// 修改占桩参数
|
|
amountPile: {},
|
|
// 占桩订单编号
|
|
numbering: '',
|
|
// 主键
|
|
dataId: ''
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询占桩订单列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listOccupy(this.queryParams).then(response => {
|
|
this.occupyList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
id: null,
|
|
occupyCode: null,
|
|
status: "0",
|
|
memberId: null,
|
|
stationId: null,
|
|
orderCode: null,
|
|
transactionCode: null,
|
|
startTime: null,
|
|
endTime: null,
|
|
payStatus: "0",
|
|
orderAmount: null,
|
|
pileSn: null,
|
|
connectorCode: null,
|
|
pileConnectorCode: null,
|
|
createTime: null,
|
|
createBy: null,
|
|
updateTime: null,
|
|
updateBy: null,
|
|
delFlag: null
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
// 金额表单重置
|
|
recharge() {
|
|
this.amountPile = {
|
|
id: null,
|
|
type: null,
|
|
occupyCode: null,
|
|
orderAmount: null
|
|
}
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.id)
|
|
this.single = selection.length !== 1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加占桩订单";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const id = row.id || this.ids
|
|
getOccupy(id).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改占桩订单";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.id != null) {
|
|
updateOccupy(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addOccupy(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$modal.confirm('是否确认删除占桩订单编号为"' + ids + '"的数据项?').then(function () {
|
|
return delOccupy(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {
|
|
});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('pile/occupy/export', {
|
|
...this.queryParams
|
|
}, `occupy_${new Date().getTime()}.xlsx`)
|
|
},
|
|
//无需支付按钮操作
|
|
async getPay(m, n) {
|
|
this.recharge();
|
|
this.dialogVisible = true;
|
|
console.log('占桩订单编号', m, n);
|
|
this.dataId = m
|
|
this.numbering = n
|
|
},
|
|
|
|
// 重新计算占桩订单金额
|
|
retryCalculateOccupyPileOrderAmount(id, occupyCode) {
|
|
const param = {
|
|
occupyCode: occupyCode
|
|
};
|
|
retryCalculateOccupyPileOrderAmount(param).then(res => {
|
|
console.log(res);
|
|
if (res.code === 200) {
|
|
this.$modal.msgSuccess("操作成功");
|
|
this.getList();
|
|
}
|
|
});
|
|
},
|
|
|
|
// type状态
|
|
agreeChange(value) {
|
|
this.radio = value
|
|
console.log('type状态', this.radio);
|
|
},
|
|
// 确定修改占桩金额
|
|
aresure() {
|
|
console.log('金额', this.stakeUp, this.radio, this.numbering);
|
|
if (this.radio === '1') {
|
|
this.amountPile = {
|
|
type: 1,
|
|
occupyCode: this.numbering,
|
|
}
|
|
} else if (this.radio === '2') {
|
|
this.amountPile = {
|
|
id: this.dataId,
|
|
type: 2,
|
|
occupyCode: this.numbering,
|
|
orderAmount: this.stakeUp
|
|
}
|
|
}
|
|
noNeedPay(this.amountPile).then(res => {
|
|
console.log(res);
|
|
if (res.code === 200) {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.getList();
|
|
}
|
|
});
|
|
this.dataReset()
|
|
},
|
|
//无需支付取消
|
|
cancel() {
|
|
this.dataReset()
|
|
},
|
|
// 无需支付重置
|
|
dataReset() {
|
|
this.dialogVisible = false
|
|
this.radio = '1'
|
|
this.stakeUp = ''
|
|
this.numbering = ''
|
|
this.dataId = ''
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.custom-item {
|
|
margin-left: 38px;
|
|
}
|
|
|
|
.stake-up {
|
|
width: 215px;
|
|
}
|
|
|
|
.stake {
|
|
display: block;
|
|
width: 300px;
|
|
margin-top: 30px;
|
|
}
|
|
</style>
|