Commit 604f4150 authored by 13841799530's avatar 13841799530

bug修复

parent 29c564a1
Pipeline #7855 passed with stage
...@@ -88,7 +88,7 @@ export default { ...@@ -88,7 +88,7 @@ export default {
loadingType: 'spinner', loadingType: 'spinner',
duration: 0 duration: 0
}) })
getFun('check/carry/user/list',{name:this.value,status:this.status}).then((Response)=>{ getFun('check/carry/user/list',{status:this.value,status:this.status}).then((Response)=>{
this.$toast.clear() this.$toast.clear()
this.checkedConfirmList.forEach((item)=>{ this.checkedConfirmList.forEach((item)=>{
if(item.title==this.title){ if(item.title==this.title){
......
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
</van-popup> </van-popup>
<van-field name="notifyType" label="确认次数"> <van-field name="notifyType" label="确认次数">
<template #input> <template #input>
<van-radio-group v-model="notifyType" direction="horizontal"> <van-radio-group v-model="notifyType" :disabled="notifyTypes" direction="horizontal">
<van-radio name="1">一次确认</van-radio> <van-radio name="1">一次确认</van-radio>
<van-radio name="2">二次确认</van-radio> <van-radio name="2">二次确认</van-radio>
</van-radio-group> </van-radio-group>
...@@ -186,6 +186,7 @@ export default { ...@@ -186,6 +186,7 @@ export default {
}, },
data() { data() {
return { return {
notifyTypeS:false,//是否禁用确认选择
notifyType:'1',//确认次数 notifyType:'1',//确认次数
currentDate: new Date(),//当前默认时间 currentDate: new Date(),//当前默认时间
dialogShow:false,//弹框是否显示 dialogShow:false,//弹框是否显示
...@@ -231,6 +232,7 @@ export default { ...@@ -231,6 +232,7 @@ export default {
if(this.$route.params.name=='notice'){ if(this.$route.params.name=='notice'){
//清空表单 //清空表单
this.value="" this.value=""
this.notifyType="1"
this.person="" this.person=""
this.active=0 this.active=0
this.checkedAll=false this.checkedAll=false
...@@ -367,6 +369,7 @@ export default { ...@@ -367,6 +369,7 @@ export default {
if(this.isFinish){ if(this.isFinish){
this.person=Response.data.userName this.person=Response.data.userName
this.notifyType=Response.data.notifyType this.notifyType=Response.data.notifyType
this.notifyTypes=Response.data.notifyTypeEq2
//获取选中状态数组 //获取选中状态数组
this.noticeQuestionList.forEach((item)=>{ this.noticeQuestionList.forEach((item)=>{
if(item.checkSubmitId){ if(item.checkSubmitId){
...@@ -479,6 +482,7 @@ export default { ...@@ -479,6 +482,7 @@ export default {
leaderSign:this.resultImg, leaderSign:this.resultImg,
notifyType:this.notifyType notifyType:this.notifyType
} }
console.log()
//判断projectId是否为null决定id传值类别 //判断projectId是否为null决定id传值类别
if(this.projectId!='null'){ if(this.projectId!='null'){
obj.checkUserId=this.ids[0] obj.checkUserId=this.ids[0]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment