This commit is contained in:
linfso 2024-08-12 16:02:33 +08:00
parent 0d08caf63c
commit aee77ed175
2 changed files with 5 additions and 11 deletions

View File

@ -73,7 +73,7 @@ export default {
}; };
</script> </script>
<style> <style lang="scss" scoped>
.el-descriptions-item__label { .el-descriptions-item__label {
width: 80px; width: 80px;
} }
@ -93,9 +93,5 @@ export default {
flex-wrap: wrap !important; flex-wrap: wrap !important;
} }
.el-tabs__content{
height: calc(100vh - 110px);
overflow-y: auto;
}
</style> </style>

View File

@ -1131,14 +1131,12 @@ export default {
handleConfirmBySite(row) { handleConfirmBySite(row) {
const ids = row.id || this.ids; const ids = row.id || this.ids;
this.$modal.confirm('是否确认').then(function() { this.$modal.confirm('是否确认').then(function() {
let empName=this.$store.getters.empName;
let message=empName+" 确认了出账明细,请及时出账单!";
this.noticeToEmpUser("padmin,88888042,88888047,88888034,88888059",message);
return confirmBillBySite(ids); return confirmBillBySite(ids);
}).then(() => { }).then(() => {
let empName=this.$store.getters.empName;
let message=empName+" 确认了出账明细,请及时出账单!";
this.noticeToEmpUser("padmin,88888042,88888047,88888034,88888059",message);
this.getList(); this.getList();
this.$modal.msgSuccess("操作成功"); this.$modal.msgSuccess("操作成功");
}).catch(() => {}); }).catch(() => {});