|
@@ -24,15 +24,12 @@
|
|
|
<!-- <ws-button type="primary" @click="screen(2)">待结算</ws-button>
|
|
|
<ws-button type="primary" @click="screen(0)">待审核</ws-button>
|
|
|
<ws-button type="primary" @click="screen()">全部</ws-button>-->
|
|
|
- <ws-button :type="searchType == 1 ? 'primary' : ''" @click="screen(1)" >待审核
|
|
|
- </ws-button>
|
|
|
+ <ws-button :type="searchType == ''? 'primary' : ''" @click="screen(-1)">全部</ws-button>
|
|
|
+ <ws-button :type="searchType == 1 ? 'primary' : ''" @click="screen(1)">待审核</ws-button>
|
|
|
<div v-hasPermission="`acquisitionManagement.acquisitionPay.pay`">
|
|
|
- <ws-button :type="searchType == 7 ? 'primary' : ''" @click="screen(7)"
|
|
|
- >待付款</ws-button>
|
|
|
- </div>
|
|
|
- <ws-button :type="searchType == 2 ? 'primary' : ''" @click="screen(2)"
|
|
|
- v-hasPermission="`acquisitionManagement.acquisitionPay.add`">待结算</ws-button>
|
|
|
- <ws-button :type="searchType == -1 ? 'primary' : ''" @click="screen(-1)">全部</ws-button>
|
|
|
+ <ws-button :type="searchType == 7 ? 'primary' : ''" @click="screen(7)">待付款</ws-button>
|
|
|
+ </div>
|
|
|
+ <ws-button :type="searchType == 2 ? 'primary' : ''" @click="screen(2)" v-hasPermission="`acquisitionManagement.acquisitionPay.add`">待结算</ws-button>
|
|
|
</template>
|
|
|
<template slot="right">
|
|
|
<el-select class='warehouse_select' v-model="warehouseNameKey" placeholder="请选择仓库" @change="warehouseChange" style="margin: 0 10px">
|
|
@@ -329,7 +326,7 @@ import download from '../../components/WsDownload/download'
|
|
|
deptCircularPage: {},
|
|
|
deptBudgetTotal: 0,
|
|
|
paymentForm: false,
|
|
|
- searchType: 1,
|
|
|
+ searchType: "",
|
|
|
searchTypeText: '',
|
|
|
searchKeyWord: '',
|
|
|
warehouseList: [],
|
|
@@ -1293,4 +1290,7 @@ import download from '../../components/WsDownload/download'
|
|
|
.warehouse_select{
|
|
|
width:100%;
|
|
|
}
|
|
|
+ .el-button{
|
|
|
+ margin: 5px;
|
|
|
+ }
|
|
|
</style>
|