|
@@ -4,7 +4,7 @@
|
|
<BaseHeaderLayout :leftSpan="16">
|
|
<BaseHeaderLayout :leftSpan="16">
|
|
<template slot="left">
|
|
<template slot="left">
|
|
<ws-button type="primary" @click="screen(2)">待结算</ws-button>
|
|
<ws-button type="primary" @click="screen(2)">待结算</ws-button>
|
|
- <ws-button type="primary" @click="screen()">待审核</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="primary" @click="reject" v-if="isShowAdopt">驳回</ws-button>
|
|
<ws-button type="primary" @click="reject" v-if="isShowAdopt">驳回</ws-button>
|
|
<ws-button type="primary" @click="adopt" v-if="isShowAdopt">通过</ws-button>
|
|
<ws-button type="primary" @click="adopt" v-if="isShowAdopt">通过</ws-button>
|
|
@@ -74,7 +74,11 @@
|
|
<el-table-column class="table_td" prop="netWeight" width="120" label="净重(公斤)"></el-table-column>
|
|
<el-table-column class="table_td" prop="netWeight" width="120" label="净重(公斤)"></el-table-column>
|
|
<el-table-column class="table_td" prop="pureWeight" width="120" label="纯重(公斤)"></el-table-column>
|
|
<el-table-column class="table_td" prop="pureWeight" width="120" label="纯重(公斤)"></el-table-column>
|
|
<el-table-column class="table_td" prop="amountIngPayable" label="应付款(元)"></el-table-column>
|
|
<el-table-column class="table_td" prop="amountIngPayable" label="应付款(元)"></el-table-column>
|
|
- <el-table-column class="table_td" prop="amountEdPayable" label="已付款(元)"></el-table-column>
|
|
|
|
|
|
+ <el-table-column class="table_td" prop="amountEdPayable" label="已付款(元)">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <div @click="showPayImg(scope.row)">{{scope.row.amountEdPayable}}</div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column class="table_td" prop="updateDate" label="更新时间" width="140" ></el-table-column>
|
|
<el-table-column class="table_td" prop="updateDate" label="更新时间" width="140" ></el-table-column>
|
|
<el-table-column class="table_td" prop="status" label="状态">
|
|
<el-table-column class="table_td" prop="status" label="状态">
|
|
<template scope="scope">
|
|
<template scope="scope">
|
|
@@ -150,6 +154,17 @@
|
|
</ws-form>
|
|
</ws-form>
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
+ <el-dialog width="50%" :visible.sync="showPayImgs" :append-to-body="true" title="付款截图">
|
|
|
|
+ <div style="display: flex;">
|
|
|
|
+ <div v-for="(item,index) in payImg" :key="index" style="width:50%;display: flex;">
|
|
|
|
+ <img :src="item" alt="" style="height:300px">
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </el-dialog>
|
|
<div style="text-align: center">
|
|
<div style="text-align: center">
|
|
<el-pagination
|
|
<el-pagination
|
|
@size-change="handleSizeChange"
|
|
@size-change="handleSizeChange"
|
|
@@ -216,9 +231,11 @@ export default {
|
|
amountNotPayable: 0,
|
|
amountNotPayable: 0,
|
|
paymentDate: ''
|
|
paymentDate: ''
|
|
},
|
|
},
|
|
|
|
+ showPayImgs:false,
|
|
isShowAdopt:false,
|
|
isShowAdopt:false,
|
|
//上传截图路径
|
|
//上传截图路径
|
|
- imageUrl: ''
|
|
|
|
|
|
+ imageUrl: '',
|
|
|
|
+ payImg:[],
|
|
}
|
|
}
|
|
},
|
|
},
|
|
activated() {
|
|
activated() {
|
|
@@ -242,6 +259,11 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
},
|
|
},
|
|
|
|
+ //查看付款截图
|
|
|
|
+ showPayImg(row){
|
|
|
|
+ this.showPayImgs = true
|
|
|
|
+ this.payImg = row.paymentScreenshot.split("$")
|
|
|
|
+ },
|
|
getWarehouse() {
|
|
getWarehouse() {
|
|
selectWarehouseSelf({
|
|
selectWarehouseSelf({
|
|
compId: sessionStorage.getItem('ws-pf_compId')
|
|
compId: sessionStorage.getItem('ws-pf_compId')
|