|
@@ -892,25 +892,25 @@ export default {
|
|
|
console.log(this.queryParams);
|
|
|
},
|
|
|
methods: {
|
|
|
- backProBtn(){
|
|
|
- var that = this
|
|
|
- this.$confirm("是否确认撤销审核", "提醒", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
- })
|
|
|
- .then(function() {
|
|
|
- return setBack({
|
|
|
- code: 4,
|
|
|
- bmProjectId: that.bmProjectId,
|
|
|
- });
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- this.msgSuccess("撤销成功");
|
|
|
- setTimeout(res => {
|
|
|
- this.$router.go(-1)
|
|
|
- }, 1000)
|
|
|
- });
|
|
|
+ backProBtn(){
|
|
|
+ var that=this
|
|
|
+ this.$confirm("是否确认驳回审核", "提醒", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(({ value }) => {
|
|
|
+ return setBack({
|
|
|
+ code: 4,
|
|
|
+ bmProjectId: that.bmProjectId,
|
|
|
+ remark:value
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.$router.go(-1);
|
|
|
+ this.getList();
|
|
|
+ this.msgSuccess("驳回成功");
|
|
|
+ });
|
|
|
},
|
|
|
handleChange(value){
|
|
|
if(value.length ==1){
|