123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- <template>
- <!-- 项目立项申请 -->
- <div id="MakerSpaceApply" v-loading="loading">
- <div class="pAHeader">
- <div class="pAHeader1">创客空间申请</div>
- </div>
- <hr>
- <MakerSpaceWord :wordData="wordData"/>
- <div style="position: fixed;bottom: 5%;margin-left: -1%;">
- <el-button @click="test" type="primary">提交项目</el-button>
- </div>
- <el-dialog
- title="提示"
- :visible.sync="submitHint"
- width="600px"
- class="pageSubmitData">
-
- <div class="deleteContent">确定提交“{{wordData['projectName']}}”项目立项?</div>
- <span slot="footer" class="dialog-footer">
- <el-button type="primary" @click="applyProject" class="AllDialogBtn">确认提交</el-button>
- <el-button @click="submitHint=false" class="AllDialogBtn">取消</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
-
- <script>
- import {getNowDate} from '@/components/tool/Date.js'
- import getProjectNo from '@/components/tool/getProjectNo';
- import MakerSpaceWord from './components/MakerSpaceWord.vue';
- export default {
- components:{MakerSpaceWord},
- data() {
- return {
- wordData:{
- applicationDate:getNowDate(1),//申请日期
- projectName:"",//项目名称
- college:"",//所在学院
- begin_at:"",//项目开始时间
- state:"",//项目状态
- plannedEnd_at:"",//计划完成时间
- pro_leader:"",//项目负责人
- lead_leader:"",//学院牵头领导
- teacher:[
- {name:"",speciality:"",title:"",education:"",section:"",work:""},
- {name:"",speciality:"",title:"",education:"",section:"",work:""},
- {name:"",speciality:"",title:"",education:"",section:"",work:""},
- ], //教师组//name:姓名 speciality:专业 title:职称 education:学历 section:所在教研室 work:项目组角色分工
- student:[
- {name:"",class:"",age:"",work:""},
- {name:"",class:"",age:"",work:""},
- {name:"",class:"",age:"",work:""},
- {name:"",class:"",age:"",work:""},
- {name:"",class:"",age:"",work:""},
- ], //学生组//name:姓名 class:班级 age:年龄 work:项目组任务分工
- brief:"",//项目简介
- Construction:"",//建设内容
- ProjectBasis:"",//立项依据
- development:"",//创客空间物理环境、制度建设及软件设施建设情况
- studio:"",//学生创客工作室建设情况
- studentTeam:"",//学生创客团队(人才)培养预期成果、数量
- studentActivities:"",//学生创客活动组织实施情况
- Transforming:"",//学生创客团队孵化、转化创业项目情况
- condition:"",//立 项基 础及条 件
- fund:{
- total:"",
- device:"",
- Material:"",
- processing:"",
- Collaboration:"",
- APPRAISAL:"",
- entery:"",
- activities:"",
- Transaction:"",
- },//预算经费
- //total:总经费
- //小型仪器设备费:device deviceRemarks
- //材料费:Material MaterialRemarks
- //测试化验加工费:processing processingRemarks
- //项目协作费:Collaboration CollaborationRemarks
- //项目成果鉴定费:APPRAISAL APPRAISALRemarks
- //参展参赛费:entery enteryRemarks
- //创客交流活动费:activities activitiesRemarks
- //知识产权事务费:Transaction TransactionRemarks
- },
- loading:false,
- submitHint:false,
- }
- },
- methods:{
- test(){//项目提交
- //检查各个字段
- const cEmpty = /^\s*$/g;
- for(let i in this.wordData){
- switch (i) {
- case "projectName":
- if(cEmpty.test(this.wordData[i])){
- this.$message.error("请输入项目名称");
- document.querySelector('#one').scrollIntoView({ behavior: "smooth" });
- return false;
- }
- break;
- case "college":
- if(cEmpty.test(this.wordData[i])){
- this.$message.error("请选择所在学院");
- document.querySelector('#one').scrollIntoView({ behavior: "smooth" });
- return false;
- }
- break;
- case "state":
- if(cEmpty.test(this.wordData[i])){
- this.$message.error("请选择项目状态");
- document.querySelector('#two').scrollIntoView({ behavior: "smooth" });
- return false;
- }
- break;
- case "begin_at":
- if(cEmpty.test(this.wordData[i])){
- this.$message.error("请选择项目开始时间");
- document.querySelector('#three').scrollIntoView({ behavior: "smooth" });
- return false;
- }
- break;
- case "plannedEnd_at":
- if(cEmpty.test(this.wordData[i])){
- this.$message.error("请选择计划完成时间");
- document.querySelector('#three').scrollIntoView({ behavior: "smooth" });
- return false;
- }
- break;
- case "pro_leader":
- if(cEmpty.test(this.wordData[i])){
- this.$message.error("请输入项目负责人");
- document.querySelector('#four').scrollIntoView({ behavior: "smooth" });
- return false;
- }
- break;
- case "lead_leader":
- if(cEmpty.test(this.wordData[i])){
- this.$message.error("请输入学院牵头领导");
- document.querySelector('#four').scrollIntoView({ behavior: "smooth" });
- return false;
- }
- break;
- case "teacher":
- if(this.wordData[i].length<3){
- this.$message.error('教师团队应3人以上')
- document.querySelector('#five').scrollIntoView({ behavior: "smooth" });
- return false;
- }else{
- let num = 0;
- this.wordData[i].forEach(item=>{
- if(cEmpty.test(item['name']))num++;
- // for(let j in item){
- // if(cEmpty.test(item[j])){
- // num++;
- // }
- // }
-
- })
- if(num>0){
- this.$message.error("教师姓名请不要留空");
- document.querySelector('#five').scrollIntoView({ behavior: "smooth" });
- return false;
- }
-
- }
- break;
- case "student":
- if(this.wordData[i].length<5){
- this.$message.error('学生团队应5人以上')
- document.querySelector('#six').scrollIntoView({ behavior: "smooth" });
- return false;
- }else{
- let num = 0;
- this.wordData[i].forEach(item=>{
- if(cEmpty.test(item['name']))num++;
- // for(let j in item){
- // if(cEmpty.test(item[j])){
- // num++;
- // }
- // }
- })
- if(num>0){
- this.$message.error("学生姓名请不要留空");
- document.querySelector('#six').scrollIntoView({ behavior: "smooth" });
- return false;
- }
- }
- break;
- case 'fund':
- if(this.wordData['fund']['total']==0){
- // console.log(document.querySelector('#fund'))
- document.querySelector('#fund').scrollIntoView({ behavior: "smooth" });
- return this.$message.error('请输入预算经费');
- }
- break;
- // case "brief":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写项目简介");
- // document.querySelector('#seven').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }else{
- // if(this.wordData[i].length<200||this.wordData>300){
- // this.$message.error("项目简介需要200-300字")
- // document.querySelector('#seven').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // }
- // break;
- // case "Construction":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写建设内容");
- // document.querySelector('#eight').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // break;
- // case "ProjectBasis":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写立项依据");
- // document.querySelector('#nine').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // break;
- // case "development":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写创客空间物理环境、制度建设及软件设施建设情况");
- // document.querySelector('#ten').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // break;
- // case "studio":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写学生创客工作室建设情况");
- // document.querySelector('#eleven').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // break;
- // case "studentTeam":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写学生创客团队(人才)培养预期成果、数量");
- // document.querySelector('#twelve').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // break;
- // case "studentActivities":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写学生创客活动组织实施情况");
- // document.querySelector('#thirteen').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // break;
- // case "Transforming":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写学生创客团队孵化、转化创业项目情况");
- // document.querySelector('#fourteen').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // break;
- // case "condition":
- // if(cEmpty.test(this.wordData[i])){
- // this.$message.error("请填写基础条件");
- // document.querySelector('#fifteen').scrollIntoView({ behavior: "smooth" });
- // return false;
- // }
- // break
- }
- }
- this.submitHint = true;
- },
- applyProject(){
- //先获取编号
- getProjectNo("XM").then((result)=>{
- let pram = {
- uid:this.$store.state.userInfo.userid,//用户ID
- pNo:result,//项目编号
- tit:this.wordData['projectName'],//项目名称
- bf:this.wordData['brief'],//项目简介
- pLeader:this.wordData['pro_leader'],//项目负责人
- lLeader:this.wordData['lead_leader'],//学院牵头领导,
- cid:this.wordData['college'],//学院ID,
- ct:JSON.stringify(this.wordData['teacher']),//教师组,
- cs:JSON.stringify(this.wordData['student']),//学生组,
- f:this.wordData['fund']['total'],//总经费
- chp:JSON.stringify({
- Construction:this.wordData['Construction'],//建设内容
- ProjectBasis:this.wordData['ProjectBasis'],//立项依据
- development:this.wordData['development'],//创客空间物理环境、制度建设及软件设施建设情况
- studio:this.wordData['studio'],//学生创客工作室建设情况
- studentTeam:this.wordData['studentTeam'],//学生创客团队(人才)培养预期成果、数量
- studentActivities:this.wordData['studentActivities'],//学生创客活动组织实施情况
- Transforming:this.wordData['Transforming'],//学生创客团队孵化、转化创业项目情况
- condition:this.wordData['condition'],//立 项基 础及条 件
- }),//项目详细
- tid:"5f7a66d5-c206-11ed-a4cd-509a4c5b67cf",//特色创客空间建设项目分类ID
- tName:this.wordData['state'],//项目状态
- mon:JSON.stringify(this.wordData['fund']),//预算经费
- planEnd:this.wordData['plannedEnd_at'],//计划完成时间,
- beh:this.wordData['begin_at'],//项目开始时间,
- apply:this.wordData['applicationDate'],//申请日期
- }
- this.ajax.post(this.$store.state.api+'/MakerSpaceWordApply',pram).then(result=>{
- console.log(result)
- if(result['data']==1){
- this.$message.success("项目提交成功");
- //提交项目成功,查看sessionStore是否有数据,有则删
- if(sessionStorage.getItem("MakerSpaceApplyData"))sessionStorage.removeItem('MakerSpaceApplyData');
- this.$router.push('/projectApplication')
- }else{
- this.$message.error("项目提交失败");
- }
- }).catch(err=>{
- console.log(err);
- })
- })
- }
- },
- mounted(){ //跳转到此页面立刻获取数据
- // this.getData(); //获取表格数据
- // this.applyProject();
- //判断,如果sessionStore里有MakerSpaceApplyData这个字段,则存到this.wordData里
- if(sessionStorage.getItem('MakerSpaceApplyData'))this.wordData = JSON.parse(sessionStorage.getItem('MakerSpaceApplyData'))
- },
- beforeRouteLeave (to, from, next) {
- //判断,如果还没提交然后切换页面了,则把数据存到sessionStore里;
- if(!this.submitHint)sessionStorage.setItem('MakerSpaceApplyData',JSON.stringify(this.wordData));
- next();
- }
- }
- </script>
-
- <style lang="less">
- #MakerSpaceApply{
- display: flex;
- flex-direction: column;
- // align-items: flex-end;
- // justify-content: flex-end;
- position: relative;
- }
- </style>
|