|
@@ -1300,6 +1300,7 @@ export default {
|
|
|
methods: {
|
|
|
//审核
|
|
|
applyBtn() {
|
|
|
+ var that=this
|
|
|
this.$confirm("是否确认审核", "提醒", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
@@ -1308,7 +1309,7 @@ export default {
|
|
|
.then(function () {
|
|
|
return setExamine({
|
|
|
code: 3,
|
|
|
- bmProjectId: this.queryParams.bmProjectId,
|
|
|
+ bmProjectId: that.queryParams.bmProjectId,
|
|
|
});
|
|
|
})
|
|
|
.then(() => {
|
|
@@ -1318,6 +1319,7 @@ export default {
|
|
|
},
|
|
|
//驳回
|
|
|
backBtn() {
|
|
|
+ var that=this
|
|
|
this.$confirm("是否确认驳回", "提醒", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
@@ -1326,7 +1328,7 @@ export default {
|
|
|
.then(function () {
|
|
|
return setReject({
|
|
|
code: 2,
|
|
|
- bmProjectId: this.queryParams.bmProjectId,
|
|
|
+ bmProjectId: that.queryParams.bmProjectId,
|
|
|
});
|
|
|
})
|
|
|
.then(() => {
|