This commit is contained in:
2025-03-09 16:22:54 +08:00
parent d335612b2f
commit 82f85233aa
13 changed files with 285 additions and 11 deletions

View File

@@ -6,7 +6,7 @@
<el-card style="">
<el-row>
<div>
<h1>差旅费报销申请单</h1>
<h1>报销申请单</h1>
</div>
</el-row>
</el-card>

View File

@@ -5,7 +5,7 @@
<el-card style="">
<el-row>
<div>
<h1>差旅费报销申请单</h1>
<h1>报销申请单</h1>
</div>
<el-button type="primary">
<i class="el-icon-check" @click="addTripClaim">提交</i>

View File

@@ -71,7 +71,7 @@
<el-card style="">
<el-row>
<div>
<h1>差旅费报销申请单</h1>
<h1>报销申请单</h1>
</div>
</el-row>
</el-card>

View File

@@ -299,7 +299,7 @@ export default {
this.loading = false;
this.form = response.data;
this.open = true;
this.title = "修改差旅费报销";
this.title = "修改报销";
});
},
/** 提交按钮 */
@@ -330,7 +330,7 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const claimIds = row.claimId || this.ids;
this.$modal.confirm('是否确认删除差旅费报销编号为"' + claimIds + '"的数据项?').then(() => {
this.$modal.confirm('是否确认删除报销编号为"' + claimIds + '"的数据项?').then(() => {
this.loading = true;
return delOaClaim(claimIds);
}).then(() => {