Files
jsowell-charger-web/jsowell-ui/src/views/order/invoice/index.vue

320 lines
9.4 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<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="orderCodes">
<el-input
v-model="queryParams.orderCodes"
placeholder="请输入申请订单编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>-->
<el-form-item label="状态" prop="status">
<el-select
v-model="queryParams.status"
placeholder="开票状态"
clearable
style="width: 140px"
>
<el-option
v-for="dict in dict.type.invoice_status"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<!--<el-form-item label="总服务费金额" prop="totalServiceAmount">
<el-input
v-model="queryParams.totalServiceAmount"
placeholder="请输入总服务费金额"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>-->
<!--<el-form-item label="总电费金额" prop="totalElecAmount">
<el-input
v-model="queryParams.totalElecAmount"
placeholder="请输入总电费金额"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>-->
<el-form-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="['order:invoice: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="['order:invoice: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="['order:invoice: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="['order:invoice:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>-->
<el-table v-loading="loading" :data="invoiceList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!--<el-table-column label="ID" align="center" prop="id" />-->
<el-table-column label="会员id" align="center" prop="memberId" />
<!--<el-table-column label="申请订单编号" align="center" prop="orderCodes" />-->
<el-table-column label="状态" align="center" prop="status" >
<template slot-scope="scope">
<dict-tag
:options="dict.type.invoice_status"
:value="scope.row.status"
/>
</template>
</el-table-column>
<el-table-column label="开票总金额" align="center" prop="totalAmount" />
<el-table-column label="总服务费金额" align="center" prop="totalServiceAmount" />
<el-table-column label="总电费金额" align="center" prop="totalElecAmount" />
<el-table-column label="申请时间" align="center" prop="createTime" />
<el-table-column label="开票时间" align="center" prop="updateTime" />
<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-info"
@click="clickSelectDetail(scope.row.id)"
v-hasPermi="['order:invoice:edit']"
>查看详情</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"
/>
</div>
</template>
<script>
import { listInvoice, getInvoice, delInvoice, addInvoice, updateInvoice } from "@/api/order/invoice";
export default {
name: "Invoice",
dicts: ["invoice_status"],
data() {
return {
// 需要修改的id
updateInvoiceId: null,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 申请开票表格数据
invoiceList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
memberId: null,
orderCodes: null,
status: null,
totalAmount: null,
totalServiceAmount: null,
totalElecAmount: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
},
dialogVisible: false,
};
},
created() {
this.getList();
},
methods: {
/** 查询申请开票列表 */
getList() {
this.loading = true;
listInvoice(this.queryParams).then(response => {
this.invoiceList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
memberId: null,
orderCodes: null,
status: "0",
totalAmount: null,
totalServiceAmount: null,
totalElecAmount: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
delFlag: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
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
getInvoice(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) {
updateInvoice(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addInvoice(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 delInvoice(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('order/invoice/export', {
...this.queryParams
}, `invoice_${new Date().getTime()}.xlsx`)
},
// clickInvoiceStatus(id) {
// console.log("点击更改开票状态",id);
// this.updateInvoiceId = id
// this.dialogVisible = true;
// },
/** 修改申请开票状态 */
updateInvoiceStatus() {
console.log('修改申请开票状态', this.updateInvoiceId);
this.form.id = this.updateInvoiceId;
this.form.status = "1";
updateInvoice(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.dialogVisible = false;
this.getList();
});
},
// 点击查看详情
clickSelectDetail(id) {
console.log("点击查看详情",id);
// 路径/home对应我在router目录下index.js中定义的path属性值
this.$router.push({name:'invoiceDetail', params:{id: id}});
},
}
};
</script>