|
@@ -469,13 +469,28 @@
|
|
|
class="AllDialogBtn"
|
|
|
>确定</el-button
|
|
|
>
|
|
|
+
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
v-if="isManager == 1"
|
|
|
@click="ManagerCommit"
|
|
|
class="AllDialogBtn"
|
|
|
- >通过</el-button
|
|
|
+ >立项通过</el-button
|
|
|
>
|
|
|
+
|
|
|
+
|
|
|
+ <el-tooltip v-if="isManager == 1" effect="light" content="(直接进入学校终审状态)" placement="top">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+
|
|
|
+ @click="ManagerCommit2"
|
|
|
+ class="AllDialogBtn"
|
|
|
+ >
|
|
|
+ 二次审核通过
|
|
|
+ </el-button>
|
|
|
+ </el-tooltip>
|
|
|
+
|
|
|
+
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
v-if="isManager == 1"
|
|
@@ -738,6 +753,57 @@ export default {
|
|
|
}
|
|
|
);
|
|
|
},
|
|
|
+ ManagerCommit2(){
|
|
|
+ //先判断项目有没有被驳回
|
|
|
+ // let param = {
|
|
|
+ // pid: this.iid.courseId,
|
|
|
+ // };
|
|
|
+ // return console.log(param);
|
|
|
+ // console.log(param)
|
|
|
+ // this.ajax.get(this.$store.state.api + "/selectSign", param).then(
|
|
|
+ // (res) => {
|
|
|
+ // let isAgree =
|
|
|
+ // res.data[0].length > 0
|
|
|
+ // ? Math.max(...res.data[0].map((obj) => obj.isAgree))
|
|
|
+ // : 1;
|
|
|
+ // if (isAgree == 2) {
|
|
|
+ // let text = "项目已被驳回,原因为:";
|
|
|
+ // for (var i = 0; i < res.data[0].length; i++) {
|
|
|
+ // if (res.data[0][i].isAgree == 2) {
|
|
|
+ // text += res.data[0][i].text;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // this.$message.warning(text);
|
|
|
+ // return;
|
|
|
+ // } else {
|
|
|
+ //立项审核对话框里面的管理员通过按钮
|
|
|
+ // console.log(this.iid);
|
|
|
+ let param = {
|
|
|
+ uid: this.$store.state.userInfo.userid,
|
|
|
+ pid: this.iid.courseId,
|
|
|
+ num: 7,
|
|
|
+ };
|
|
|
+ this.ajax
|
|
|
+ // .post(this.$store.state.api+"/ApproveProject",param)
|
|
|
+ .post(this.$store.state.api + "/updateIsupload", param)
|
|
|
+ .then(
|
|
|
+ (res) => {
|
|
|
+ // console.log(res);
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.$message.success("已通过");
|
|
|
+ this.getData();
|
|
|
+ },
|
|
|
+ (err) => {
|
|
|
+ console.log(err);
|
|
|
+ }
|
|
|
+ );
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // (err) => {
|
|
|
+ // console.log(err);
|
|
|
+ // }
|
|
|
+ // );
|
|
|
+ },
|
|
|
ApplyPersonCommit() {
|
|
|
//先判断项目有没有被驳回
|
|
|
let param = {
|