|
@@ -24,7 +24,7 @@
|
|
<!-- <ws-button type="primary" @click="screen(2)">待结算</ws-button>
|
|
<!-- <ws-button type="primary" @click="screen(2)">待结算</ws-button>
|
|
<ws-button type="primary" @click="screen(0)">待审核</ws-button>
|
|
<ws-button type="primary" @click="screen(0)">待审核</ws-button>
|
|
<ws-button type="primary" @click="screen()">全部</ws-button>-->
|
|
<ws-button type="primary" @click="screen()">全部</ws-button>-->
|
|
- <ws-button :type="searchType == 0 ? 'primary' : ''" @click="screen(1)" v-if="isShowAdopt == 'true'">待审核
|
|
|
|
|
|
+ <ws-button :type="searchType == 0 ? 'primary' : ''" @click="screen(1)" >待审核
|
|
</ws-button>
|
|
</ws-button>
|
|
<ws-button :type="searchType == 0 ? 'primary' : ''" @click="screen(7)"
|
|
<ws-button :type="searchType == 0 ? 'primary' : ''" @click="screen(7)"
|
|
v-hasPermission="`acquisitionManagement.acquisitionPay.pay`">待付款</ws-button>
|
|
v-hasPermission="`acquisitionManagement.acquisitionPay.pay`">待付款</ws-button>
|
|
@@ -393,7 +393,7 @@ import download from '../../components/WsDownload/download'
|
|
promises.push(promise);
|
|
promises.push(promise);
|
|
}
|
|
}
|
|
Promise.all(promises).then(() => {
|
|
Promise.all(promises).then(() => {
|
|
- zip.generateAsync({ type: "blob" }).then(content => {
|
|
|
|
|
|
+ zip.generateAsync({ type: 'blob' }).then(content => {
|
|
_this.title = '正在压缩';
|
|
_this.title = '正在压缩';
|
|
// 生成二进制流
|
|
// 生成二进制流
|
|
FileSaver.saveAs(content, filename); // 利用file-saver保存文件 自定义文件名
|
|
FileSaver.saveAs(content, filename); // 利用file-saver保存文件 自定义文件名
|
|
@@ -409,8 +409,8 @@ import download from '../../components/WsDownload/download'
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
//通过请求获取文件blob格式
|
|
//通过请求获取文件blob格式
|
|
let xmlhttp = new XMLHttpRequest();
|
|
let xmlhttp = new XMLHttpRequest();
|
|
- xmlhttp.open("GET", url, true);
|
|
|
|
- xmlhttp.responseType = "blob";
|
|
|
|
|
|
+ xmlhttp.open('GET', url, true);
|
|
|
|
+ xmlhttp.responseType = 'blob';
|
|
xmlhttp.onload = function () {
|
|
xmlhttp.onload = function () {
|
|
if (this.status == 200) {
|
|
if (this.status == 200) {
|
|
resolve(this.response);
|
|
resolve(this.response);
|
|
@@ -534,6 +534,7 @@ import download from '../../components/WsDownload/download'
|
|
return prev
|
|
return prev
|
|
}
|
|
}
|
|
}, 0)
|
|
}, 0)
|
|
|
|
+ sums[index] = sums[index].toFixed(3)
|
|
} else {
|
|
} else {
|
|
sums[index] = '元'
|
|
sums[index] = '元'
|
|
}
|
|
}
|
|
@@ -582,7 +583,7 @@ import download from '../../components/WsDownload/download'
|
|
this.selectCustomerList.push(response)
|
|
this.selectCustomerList.push(response)
|
|
index2++;
|
|
index2++;
|
|
if (index1 == this.modification.length && index2 == this.modification.length) {
|
|
if (index1 == this.modification.length && index2 == this.modification.length) {
|
|
- this.printData.compName = ""
|
|
|
|
|
|
+ this.printData.compName = ''
|
|
// this.isShowPrint = true
|
|
// this.isShowPrint = true
|
|
this.printBig();
|
|
this.printBig();
|
|
}
|
|
}
|
|
@@ -602,7 +603,7 @@ import download from '../../components/WsDownload/download'
|
|
'日'
|
|
'日'
|
|
this.selectPrintList.push(response)
|
|
this.selectPrintList.push(response)
|
|
if (index1 == this.modification.length && index2 == this.modification.length) {
|
|
if (index1 == this.modification.length && index2 == this.modification.length) {
|
|
- this.printData.compName = ""
|
|
|
|
|
|
+ this.printData.compName = ''
|
|
// this.isShowPrint = true
|
|
// this.isShowPrint = true
|
|
this.printBig();
|
|
this.printBig();
|
|
}
|
|
}
|