Bladeren bron

geng'x更新

SanHQin 11 maanden geleden
bovenliggende
commit
ebb4663a25

+ 0 - 1
dist/css/198.40a34748.css

@@ -1 +0,0 @@
-.projectApplication .btnClass[data-v-ee63928c]{width:70px!important;max-width:70px;min-width:70px}.projectApplication[data-v-ee63928c] .el-table__row .el-table__cell{cursor:pointer}.projectApplication[data-v-ee63928c] .el-table__row .el-table__cell:last-child{cursor:default}

File diff suppressed because it is too large
+ 0 - 0
dist/css/605.0f561a36.css


+ 1 - 0
dist/css/971.50a1be0b.css

@@ -0,0 +1 @@
+.projectApplication .btnClass[data-v-0bfcaf4d]{width:70px!important;max-width:70px;min-width:70px}.projectApplication[data-v-0bfcaf4d] .el-table__row .el-table__cell{cursor:pointer}.projectApplication[data-v-0bfcaf4d] .el-table__row .el-table__cell:last-child{cursor:default}

File diff suppressed because it is too large
+ 0 - 0
dist/css/app.b3459279.css


+ 1 - 1
dist/index.html

@@ -1 +1 @@
-<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>双创学院管理系统</title><script defer="defer" src="/js/chunk-vendors.45150633.js"></script><script defer="defer" src="/js/app.c2e01507.js"></script><link href="/css/chunk-vendors.0225060a.css" rel="stylesheet"><link href="/css/app.863a4b37.css" rel="stylesheet"></head><body><div id="app"></div></body></html>
+<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>双创学院管理系统</title><script defer="defer" src="/js/chunk-vendors.45150633.js"></script><script defer="defer" src="/js/app.59b08aec.js"></script><link href="/css/chunk-vendors.0225060a.css" rel="stylesheet"><link href="/css/app.b3459279.css" rel="stylesheet"></head><body><div id="app"></div></body></html>

File diff suppressed because it is too large
+ 0 - 0
dist/js/198.ab09f4f7.js


File diff suppressed because it is too large
+ 0 - 0
dist/js/605.0aa2021b.js


File diff suppressed because it is too large
+ 0 - 0
dist/js/605.0aa2021b.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/js/880.e2c1c59a.js


File diff suppressed because it is too large
+ 0 - 0
dist/js/971.b67b374d.js


File diff suppressed because it is too large
+ 0 - 0
dist/js/971.b67b374d.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/js/app.59b08aec.js


File diff suppressed because it is too large
+ 0 - 0
dist/js/app.59b08aec.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/js/app.c2e01507.js


+ 1 - 1
src/App.vue

@@ -1234,7 +1234,7 @@ hr {
 .AllDialogBtn {
   //所有对话框按钮(好像没用)
 
-  width: 120px;
+  min-width: 120px;
   font-size: 16px !important;
 }
 

+ 1 - 1
src/views/projectApply/components/studentProjectWordDetail.vue

@@ -41,7 +41,7 @@
         @click="test"
         type="primary"
         v-if="isupload == 0"
-        >立即修改</el-button
+        >保存修改</el-button
       >
     </div>
     <!-- <div

+ 67 - 1
src/views/projectApply/projectApplication.vue

@@ -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 = {

Some files were not shown because too many files changed in this diff