Commit 373b968c authored by Mac's avatar Mac

1

parent a4610c7a
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
props: { props: {
list: { list: {
type: Array, type: Array,
default: [] default: () => []
}, },
}, },
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
<template> <template>
<div class="requestgroup"> <div class="requestgroup">
<div :style="{'position':'relative','padding-left':addMsg.length>1?'40px':'0'}"> <div :style="{'position':'relative','padding-left':addMsg.length>1?'40px':'0'}">
<div class="row" v-for="(x,y) in addMsg" style="margin-bottom: 8px"> <div class="row" v-for="(x,y) in addMsg" :key='y' style="margin-bottom: 8px">
<q-select outlined v-model="x.Name" :options="filedList" dense class="my-special-class" label='请选择客户信息' <q-select outlined v-model="x.Name" :options="filedList" dense class="my-special-class" label='请选择客户信息'
option-value="Id" option-label="Name" /> option-value="Id" option-label="Name" />
<q-select v-if="x.Type==1 || x.Type=='' " outlined v-model="x.Direction" :options="directionList1" dense <q-select v-if="x.Type==1 || x.Type=='' " outlined v-model="x.Direction" :options="directionList1" dense
...@@ -189,7 +189,6 @@ ...@@ -189,7 +189,6 @@
LableList.value = addMsg.value[y].LableIds LableList.value = addMsg.value[y].LableIds
} }
const getlabel=(list)=> { const getlabel=(list)=> {
console.log(list)
isshowlabel.value = false; isshowlabel.value = false;
addMsg.value[selectindex.value].LableIds = list addMsg.value[selectindex.value].LableIds = list
} }
......
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