|
@@ -11,6 +11,14 @@
|
|
<el-col :span="1.5">
|
|
<el-col :span="1.5">
|
|
<el-button type="primary" @click="goBtn">取消</el-button>
|
|
<el-button type="primary" @click="goBtn">取消</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+ <el-col :span="1.5" :offset="16" v-if="setrd % 2 == 1&&setrd>2">
|
|
|
|
+ <el-button
|
|
|
|
+ type="danger"
|
|
|
|
+ @click="backProBtn"
|
|
|
|
+ v-hasPermi="['bmProject:project:back']"
|
|
|
|
+ >撤销审核</el-button
|
|
|
|
+ >
|
|
|
|
+ </el-col>
|
|
<el-col :span="1.5" :offset="18" v-if="setrd % 2 == 0">
|
|
<el-col :span="1.5" :offset="18" v-if="setrd % 2 == 0">
|
|
<el-button type="danger" @click="applyBtn" v-hasPermi="['bmProject:project:pass']">审核</el-button>
|
|
<el-button type="danger" @click="applyBtn" v-hasPermi="['bmProject:project:pass']">审核</el-button>
|
|
<el-button type="danger" @click="backBtn" v-hasPermi="['bmProject:project:reject']">驳回</el-button>
|
|
<el-button type="danger" @click="backBtn" v-hasPermi="['bmProject:project:reject']">驳回</el-button>
|
|
@@ -474,6 +482,7 @@
|
|
} from "@/api/system/signContract";
|
|
} from "@/api/system/signContract";
|
|
import {
|
|
import {
|
|
setExamine,
|
|
setExamine,
|
|
|
|
+ setBack,
|
|
setReject
|
|
setReject
|
|
} from "@/api/projectInfo/info.js";
|
|
} from "@/api/projectInfo/info.js";
|
|
const defaultSettings = require("@/settings.js");
|
|
const defaultSettings = require("@/settings.js");
|
|
@@ -764,6 +773,27 @@
|
|
this.getShareholderList();
|
|
this.getShareholderList();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ backProBtn(){
|
|
|
|
+ var that=this
|
|
|
|
+ this.$prompt("请输入驳回意见", "提醒", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning",
|
|
|
|
+ })
|
|
|
|
+ .then(({ value }) => {
|
|
|
|
+ return setBack({
|
|
|
|
+ code: 4,
|
|
|
|
+ bmProjectId: that.queryParams.bmProjectId,
|
|
|
|
+ remark:value
|
|
|
|
+ });
|
|
|
|
+ })
|
|
|
|
+ .then(() => {
|
|
|
|
+ this.msgSuccess("驳回成功");
|
|
|
|
+ setTimeout(res => {
|
|
|
|
+ this.$router.go(-1)
|
|
|
|
+ }, 1000)
|
|
|
|
+ });
|
|
|
|
+ },
|
|
imgBtn(url) {
|
|
imgBtn(url) {
|
|
this.pir_imgs = url
|
|
this.pir_imgs = url
|
|
this.$refs.BigPicture.hidden.status = true
|
|
this.$refs.BigPicture.hidden.status = true
|