Commit 604f4150 authored by 13841799530's avatar 13841799530

bug修复

parent 29c564a1
Pipeline #7855 passed with stage
......@@ -88,7 +88,7 @@ export default {
loadingType: 'spinner',
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.checkedConfirmList.forEach((item)=>{
if(item.title==this.title){
......
......@@ -94,9 +94,9 @@
<van-popup v-model="showCalendar2" position="bottom">
<van-picker ref="apicker" title="人员匹配" show-toolbar :columns="columns" @confirm="personOnConfirm" @cancel="showCalendar2=false"/>
</van-popup>
<van-field name="notifyType" label="确认次数">
<van-field name="notifyType" label="确认次数">
<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="2">二次确认</van-radio>
</van-radio-group>
......@@ -186,6 +186,7 @@ export default {
},
data() {
return {
notifyTypeS:false,//是否禁用确认选择
notifyType:'1',//确认次数
currentDate: new Date(),//当前默认时间
dialogShow:false,//弹框是否显示
......@@ -231,6 +232,7 @@ export default {
if(this.$route.params.name=='notice'){
//清空表单
this.value=""
this.notifyType="1"
this.person=""
this.active=0
this.checkedAll=false
......@@ -367,6 +369,7 @@ export default {
if(this.isFinish){
this.person=Response.data.userName
this.notifyType=Response.data.notifyType
this.notifyTypes=Response.data.notifyTypeEq2
//获取选中状态数组
this.noticeQuestionList.forEach((item)=>{
if(item.checkSubmitId){
......@@ -479,6 +482,7 @@ export default {
leaderSign:this.resultImg,
notifyType:this.notifyType
}
console.log()
//判断projectId是否为null决定id传值类别
if(this.projectId!='null'){
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