|
@@ -15,8 +15,7 @@
|
|
<ReceivableListApproval :approvalId="approvalId" v-if="showPage == 3" @close="handleClose" />
|
|
<ReceivableListApproval :approvalId="approvalId" v-if="showPage == 3" @close="handleClose" />
|
|
<ReceivableListDetail :approvalId="approvalId" :czType="czType" v-if="showPage == 4" @close="handleClose" />
|
|
<ReceivableListDetail :approvalId="approvalId" :czType="czType" v-if="showPage == 4" @close="handleClose" />
|
|
</Popu>
|
|
</Popu>
|
|
- <print-preview ref="preView" @initPrint="handleInitPrint" @refreshList="handleRefreshList" :addPrint="addPrint"/>
|
|
|
|
-
|
|
|
|
|
|
+ <print-preview ref="preView" @initPrint="handleInitPrint" @refreshList="handleRefreshList" :addPrint="addPrint" />
|
|
</template-page>
|
|
</template-page>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -212,21 +211,23 @@ export default {
|
|
async bringFn(id) {
|
|
async bringFn(id) {
|
|
await getFinanceOtherReceApply({ id })
|
|
await getFinanceOtherReceApply({ id })
|
|
this.$message.success('提审成功')
|
|
this.$message.success('提审成功')
|
|
- this.getDataList({
|
|
|
|
- pageNum: this.currentPage,
|
|
|
|
- pageSize: this.pageSize,
|
|
|
|
- examineStatus: this.examine
|
|
|
|
- })
|
|
|
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
|
+ // this.getDataList({
|
|
|
|
+ // pageNum: this.currentPage,
|
|
|
|
+ // pageSize: this.pageSize,
|
|
|
|
+ // examineStatus: this.examine
|
|
|
|
+ // })
|
|
},
|
|
},
|
|
//弃审
|
|
//弃审
|
|
async unApprovalFn(id) {
|
|
async unApprovalFn(id) {
|
|
await getFinanceOtherReceAbandon({ id })
|
|
await getFinanceOtherReceAbandon({ id })
|
|
this.$message.success('弃审成功')
|
|
this.$message.success('弃审成功')
|
|
- this.getDataList({
|
|
|
|
- pageNum: this.currentPage,
|
|
|
|
- pageSize: this.pageSize,
|
|
|
|
- examineStatus: this.examine
|
|
|
|
- })
|
|
|
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
|
+ // this.getDataList({
|
|
|
|
+ // pageNum: this.currentPage,
|
|
|
|
+ // pageSize: this.pageSize,
|
|
|
|
+ // examineStatus: this.examine
|
|
|
|
+ // })
|
|
},
|
|
},
|
|
handleSelectAll(selection) {
|
|
handleSelectAll(selection) {
|
|
this.tableSelection = this.$refs.table.selection
|
|
this.tableSelection = this.$refs.table.selection
|
|
@@ -445,16 +446,15 @@ export default {
|
|
var currentdate = year + seperator1 + month + seperator1 + strDate
|
|
var currentdate = year + seperator1 + month + seperator1 + strDate
|
|
console.log(currentdate)
|
|
console.log(currentdate)
|
|
return currentdate
|
|
return currentdate
|
|
- } ,
|
|
|
|
- handleRefreshList(){
|
|
|
|
|
|
+ },
|
|
|
|
+ handleRefreshList() {
|
|
this.recordSelected = []
|
|
this.recordSelected = []
|
|
this.$refs.pageRef.refreshList()
|
|
this.$refs.pageRef.refreshList()
|
|
-
|
|
|
|
},
|
|
},
|
|
- handleInitPrint(){
|
|
|
|
|
|
+ handleInitPrint() {
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
- this.initPrint()
|
|
|
|
- })
|
|
|
|
|
|
+ this.initPrint()
|
|
|
|
+ })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|