|
@@ -50,8 +50,8 @@
|
|
|
:index="(pageNumber - 1) * pageSize + 1"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="id" label="ID" width="250">
|
|
|
- </el-table-column>
|
|
|
+ <!-- <el-table-column prop="id" label="ID" width="250">
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column prop="sn" label="编号" width="190">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="invoice_type" label="发票类型" width="90">
|
|
@@ -160,7 +160,7 @@
|
|
|
<el-dialog
|
|
|
title="发票申请信息"
|
|
|
:visible.sync="dialogVisible"
|
|
|
- width="800px"
|
|
|
+ width="600px"
|
|
|
class="invoice-dialog"
|
|
|
v-if="ktjeInfo"
|
|
|
>
|
|
@@ -208,7 +208,7 @@
|
|
|
|
|
|
<div class="item-info">
|
|
|
<label>金额:</label>
|
|
|
- <b>{{ ktjeInfo.amount | cutMoneyFiter }}</b>
|
|
|
+ <b>¥{{ ktjeInfo.amount | cutMoneyFiter }}</b>
|
|
|
</div>
|
|
|
<template v-if="ktjeInfo.invoice_file_url">
|
|
|
<div class="item-info">
|
|
@@ -243,8 +243,8 @@
|
|
|
<h5>订单列表</h5>
|
|
|
<el-table class="search-table" :data="ktje" style="width: 100%">
|
|
|
<el-table-column type="index" label="#" width="54"> </el-table-column>
|
|
|
- <el-table-column prop="id" label="订单ID" width="250">
|
|
|
- </el-table-column>
|
|
|
+ <!-- <el-table-column prop="id" label="订单ID" width="250">
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column prop="sn" label="订单编号" width="190">
|
|
|
</el-table-column>
|
|
|
|
|
@@ -531,7 +531,7 @@ export default {
|
|
|
let datas = {
|
|
|
id: this.passId,
|
|
|
is_pass: "true",
|
|
|
- invoice_file_id: this.fileList[0].file_id,
|
|
|
+ invoice_file_id: this.fileList[0].response.file_info_list[0].file_id,
|
|
|
};
|
|
|
getLogin(Mnames, datas)
|
|
|
.then((res) => {
|
|
@@ -582,7 +582,7 @@ export default {
|
|
|
},
|
|
|
handleSuccess(response, file, fileList) {
|
|
|
if (response.status == 1) {
|
|
|
- this.fileList = response.file_info_list;
|
|
|
+ this.fileList = fileList;
|
|
|
} else {
|
|
|
this.fileList = [];
|
|
|
this.$message.warning(response.msg);
|