新增 后管开票页面新增运营商字段并校验

This commit is contained in:
Lemon
2023-08-25 10:45:39 +08:00
parent 65d400e57b
commit 914380b3ea
4 changed files with 15 additions and 7 deletions

View File

@@ -104,6 +104,7 @@
<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="merchantName" />
<!--<el-table-column label="申请订单编号" align="center" prop="orderCodes" />-->
<el-table-column label="状态" align="center" prop="status" >
<template slot-scope="scope">
@@ -195,6 +196,7 @@ export default {
/** 查询申请开票列表 */
getList() {
this.loading = true;
// console.log("this.queryParams", this.queryParams)
listInvoice(this.queryParams).then(response => {
this.invoiceList = response.rows;
this.total = response.total;