123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <template>
- <div class="tv-container">
-
- <div class="container-box">
- <div>
- <div class="el-label"><i class="el-icon-collection-tag"></i>基本信息</div>
- <div class="el-line"></div>
- <baseTable v-if="woNo" :woNo="woNo" step="8" @callBack="callBack" ref="uploadComponet"/>
- <div class="el-line"></div>
- <div class="el-label"><i class="el-icon-collection-tag"></i>会议结果录入</div>
- <div class="el-line"></div>
- <div>
- <el-row>
- <el-col :span="6"> </el-col>
- <el-col :span="12">
- <el-form ref="form" :model="form" label-width="80px">
- <el-form-item label="备注信息">
- <el-input type="textarea" v-model="form.note"></el-input>
- </el-form-item>
- </el-form>
- </el-col>
- <el-col :span="6"> </el-col>
- </el-row>
- </div>
- <div class="el-line"></div>
- <div class="el-label"></div>
- <div class="el-line"></div>
- <div style="text-align:right">
- <el-button type="primary" @click="handleAudit">确定</el-button>
- </div>
- </div>
- </div>
- <!--<fullscreen :fullscreen.sync="fullscreen" class="container"></fullscreen>-->
- <el-dialog
- title="请选择"
- :visible.sync="userDlgVisual"
- width="30%"
- :modal-append-to-body="false"
- :close-on-click-modal="false"
- :before-close="handleClose">
- <div>
- <el-radio v-for="user in userList " v-model="assigneeNo" :key="user.loginNoStr" :label="user.loginNoStr">{{user.loginNameStr}}</el-radio>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="userDlgVisual = false">取 消</el-button>
- <el-button type="primary" @click="checkSelectUser">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import baseTable from "./basePeerReview"
- export default {
- components:{ baseTable },
- data(){
- return{
- woNo:'',
- itemId:'',
- fullscreen:true,
- form:{note:""},
- assigneeNo:'',
- assigneeName:'',
- bpmInfo:{},
- inputFiles:[],
- userDlgVisual:false,
- userList:[]
- }
- },
- methods:{
- callBack(itemId){
- this.itemId = itemId
- },
- completeTask(){
- if(this.assigneeNo===""){
- this.$message({ showClose: true, message:"数据异常",type: 'error'});
- return
- }
- //拼装参数
- let info={}
- info.params={
- "note":this.form.note,
- "itemId":this.itemId,
- "woNo":this.woNo,
- "assigneeNo":this.assigneeNo,
- "assigneeName":this.assigneeName,
- "extendInfo":JSON.stringify(this.inputFiles)
- },
- info.taskId = this.bpmInfo.taskId
- info.woNo = this.bpmInfo.woNo
- info.stepId = this.bpmInfo.stepId
- info.procId = this.bpmInfo.procId
- info.procVersion = this.bpmInfo.procVersion
- //POST请求
- this.$http({
- url: "/bpm/api/submitTask",
- method: "post",
- headers: {"Content-Type": "application/json"},
- data:info
- }).then((res) => {
- if(res.data.result==0){
- this.$router.push({ path: '/tvIntroduction'});
- }else{
- this.$message({ showClose: true, message: res.data.desc,type: 'error'});
- }
- });
- },
- handleAudit(){
- //
- let fileList = this.$refs.uploadComponet.getInputFileUploadList()
- if(fileList.length===0){
- this.$message({ showClose: true, message: "请上传会议记录",type: 'error'});
- return false
- }
- this.inputFiles = fileList
- // -
- let userInfo = window.sessionStorage.userInfo;
- if(null === userInfo){
- this.$message({ showClose: true, message: "数据异常",type: 'error'});
- return
- }
- // -
- userInfo = JSON.parse(userInfo);
- let loginNoStr = userInfo.loginNoStr;
- this.$http({
- url: "/market/api/user/info/leader2",
- method: "post",
- headers: {"Content-Type": "application/json"},
- data:{"loginNoStr":loginNoStr,"level":"1","type":"1"}//室主任审批
- }).then((res) => {
- if(res.data.result==0){
- let user = res.data.body
- if(null==user || user.length==0){
- this.$message({ showClose: true, message: "数据异常",type: 'error'});
- }else{
- if(user.length==1){
- this.assigneeNo = user[0].loginNoStr
- this.assigneeName = user[0].loginNameStr
- this.completeTask()
- }else{
- this.userList = user;
- this.userDlgVisual = true;
- }
- }
- }else{
- this.$message({ showClose: true, message: res.data.desc,type: 'error'});
- }
- });
- },
- handleClose(){
- this.userList = [];
- this.userDlgVisual = false;
- },
- checkSelectUser(){
- if(this.assigneeNo===''){
- this.$message.error('请选择下一步处理人');
- return
- }
- //
- this.userList.forEach((e)=>{
- if(e.loginNoStr === this.assigneeNo){
- this.assigneeName = e.loginNameStr
- }
- });
- //
- this.userDlgVisual = false
-
- this.completeTask()
- },
- },
- mounted(){
- this.woNo = this.$route.query.woNo
- this.bpmInfo.taskId = this.$route.query.taskId
- this.bpmInfo.woNo = this.woNo
- this.bpmInfo.stepId = this.$route.query.stepId
- this.bpmInfo.procId = this.$route.query.procId
- this.bpmInfo.procVersion = this.$route.query.procVersion
- }
- }
- </script>
- <style lang="scss" scoped>
- .tv-container{
- background-color: white;
- margin:15px 15px 15px 15px;
- padding:20px ;
- }
- .el-label{
- /*border-left:5px solid #0b82ff;*/
- /*padding-left:5px;*/
- color: #606266;
- border-bottom:1px dotted #bfc1c5;
- padding-bottom:5px;
- }
- .el-line{
- margin: 0px 0px 20px 0px;
- }
- </style>
|