审核驳回功能

This commit is contained in:
wcy 2024-09-13 14:29:58 +08:00
parent bc382854f1
commit 11362d1f0b
2 changed files with 7 additions and 3 deletions

View File

@ -140,6 +140,7 @@
<span v-if="scope.row.sltStatus == '1'">未结算</span> <span v-if="scope.row.sltStatus == '1'">未结算</span>
<span v-if="scope.row.sltStatus == '2'">已结算</span> <span v-if="scope.row.sltStatus == '2'">已结算</span>
<span v-if="scope.row.sltStatus == '3'">已审核</span> <span v-if="scope.row.sltStatus == '3'">已审核</span>
<span v-if="scope.row.sltStatus == '4'">已驳回</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
@ -164,12 +165,12 @@
type="primary" type="primary"
icon="el-icon-edit" icon="el-icon-edit"
@click="handleApply(scope.row)" @click="handleApply(scope.row)"
v-if="scope.row.sltStatus == '1'" v-if="scope.row.sltStatus == '1' || (scope.row.sltStatus == '4' && scope.row.isCommit == 0 )"
>结算申请</el-button >结算申请</el-button
> >
<!-- <el-button <!-- <el-button
size="mini" size="mini"
type="danger" type="danger"
icon="el-icon-delete" icon="el-icon-delete"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
>撤销申请</el-button> --> >撤销申请</el-button> -->
@ -220,6 +221,7 @@ export default {
{ id: '1', name: '未结算' }, { id: '1', name: '未结算' },
{ id: '2', name: '已结算' }, { id: '2', name: '已结算' },
{ id: '3', name: '已审核' }, { id: '3', name: '已审核' },
{ id: '4', name: '已驳回' },
], // ], //
// //
agreementList: [], agreementList: [],
@ -235,6 +237,7 @@ export default {
pageSize: 10, pageSize: 10,
keyWord: undefined, keyWord: undefined,
sltStatus: '', sltStatus: '',
isCommit:'',
unitId: '', unitId: '',
projectId: '', projectId: '',
}, },

View File

@ -152,7 +152,7 @@
> >
<!-- <el-button <!-- <el-button
size="mini" size="mini"
type="danger" type="danger"
icon="el-icon-delete" icon="el-icon-delete"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
>撤销申请</el-button> --> >撤销申请</el-button> -->
@ -218,6 +218,7 @@ export default {
pageSize: 10, pageSize: 10,
keyWord: undefined, keyWord: undefined,
sltStatus: '', sltStatus: '',
isCommit: '',
unitId: '', unitId: '',
projectId: '', projectId: '',
}, },