Commit 659ccf5f authored by zhengke's avatar zhengke

修改

parent 4960e804
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
label="客户需求" style="width: 300px" emit-value map-options /> label="客户需求" style="width: 300px" emit-value map-options />
<q-btn class="q-mt-xl q-px-lg" unelevated color="primary" :loading="saving" @click="saveHandler">立即保存</q-btn> <q-btn class="q-mt-xl q-px-lg" unelevated color="primary" :loading="saving" @click="saveHandler">立即保存</q-btn>
</q-card> </q-card>
<choiceapproval v-if="outerVisible" @close="getclose()" @success="getsuccess2" :byval="chosenUser" cptype="0"> <choiceapproval v-if="outerVisible" @close="getclose()" :singleCheck="true" @success="getsuccess2" :byval="chosenUser" cptype="0">
</choiceapproval> </choiceapproval>
</div> </div>
</template> </template>
...@@ -94,6 +94,18 @@ ...@@ -94,6 +94,18 @@
this.dictObjEmp.Code=tempObj.Code; this.dictObjEmp.Code=tempObj.Code;
this.dictObjEmp.Content=tempObj.Content; this.dictObjEmp.Content=tempObj.Content;
this.dictObjEmp.Mask=tempObj.Mask; this.dictObjEmp.Mask=tempObj.Mask;
if(tempObj.Content&&tempObj.Mask){
this.chosenUser.push({
DeptId:tempObj.Content,
DeptName:tempObj.Mask
})
}
if(tempObj.Code){
this.multiCheck = tempObj.Code.split(',');
this.multiCheck=this.multiCheck.map(item => {
return +item;
});
}
} }
} }
}); });
......
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