|
|
@@ -23,7 +23,7 @@ |
|
|
|
<el-input v-model="formInline.user" placeholder="交易流水编号" /> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<el-button :icon="Search" type="primary">查询</el-button> |
|
|
|
<el-button :icon="Search" type="primary" @click="grabble">查询</el-button> |
|
|
|
<el-button type="info">重置</el-button> |
|
|
|
<el-button type="primary">导入Excel</el-button> |
|
|
|
<el-button type="primary">下载导入模板</el-button> |
|
|
@@ -43,15 +43,17 @@ |
|
|
|
<el-table-column prop="nonumbers" label="附言" width="200px"/> |
|
|
|
<el-table-column prop="usetype" label="摘要" width="200px"/> |
|
|
|
<el-table-column label="操作" class="table_btn" width="500px" align="center"> |
|
|
|
<el-tooltip content="拒绝" placement="top"> |
|
|
|
<el-button type="warning" @click="опровергать">拒绝</el-button> |
|
|
|
</el-tooltip> |
|
|
|
<el-tooltip content="同意" placement="top"> |
|
|
|
<el-button type="warning" @click="agree">同意</el-button> |
|
|
|
</el-tooltip> |
|
|
|
<el-tooltip content="请输入对公账号" placement="top"> |
|
|
|
<el-button type="warning" @click="dialogFormVisible = true">请输入对公账号</el-button> |
|
|
|
</el-tooltip> |
|
|
|
<template v-slot="scope"> |
|
|
|
<el-tooltip content="拒绝" placement="top"> |
|
|
|
<el-button type="warning" @click="опровергать(scope.row)">拒绝</el-button> |
|
|
|
</el-tooltip> |
|
|
|
<el-tooltip content="同意" placement="top"> |
|
|
|
<el-button type="warning" @click="agree">同意</el-button> |
|
|
|
</el-tooltip> |
|
|
|
<el-tooltip content="请输入对公账号" placement="top"> |
|
|
|
<el-button type="warning" @click="dialogFormVisible = true">请输入对公账号</el-button> |
|
|
|
</el-tooltip> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
<div class="page_box"> |
|
|
@@ -171,8 +173,9 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
] |
|
|
|
const tableData = [ |
|
|
|
const tableData = ref( [ |
|
|
|
{ |
|
|
|
id:1, |
|
|
|
date: '34625032', |
|
|
|
name: '2022-05-07', |
|
|
|
address: '0.0', |
|
|
@@ -186,7 +189,7 @@ |
|
|
|
use:"测试", |
|
|
|
usetype:"小额来账自动入账" |
|
|
|
} |
|
|
|
] |
|
|
|
]) |
|
|
|
|
|
|
|
|
|
|
|
//事件 |
|
|
@@ -214,7 +217,8 @@ |
|
|
|
}) |
|
|
|
} |
|
|
|
//驳回申请 |
|
|
|
const опровергать = (id:any) => { |
|
|
|
const опровергать = (row:any) => { |
|
|
|
console.log(row.id) |
|
|
|
ElMessageBox.confirm( |
|
|
|
'确定拒绝?', |
|
|
|
'警告', { |
|
|
@@ -236,6 +240,23 @@ |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
//搜索 |
|
|
|
const grabble = ()=>{ |
|
|
|
let data = { |
|
|
|
"corporateAccountId":"string", |
|
|
|
"endTime":"2020/01/01 00:00:00", |
|
|
|
"pageNo":0, |
|
|
|
"pageSize":0, |
|
|
|
"startTime":"2020/01/01 00:00:00", |
|
|
|
"type":0, |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
<style lang="scss"> |