Commit aa8daf6a authored by zhengke's avatar zhengke

1

parent 30bd7e3c
...@@ -189,17 +189,17 @@ const CustomerModule = () => { ...@@ -189,17 +189,17 @@ const CustomerModule = () => {
Id: 3 Id: 3
} }
]) ])
const SeletObj: Params = reactive({ const SeletObj = reactive<Params>({
selectVal: '', selectVal: '',
selectWay: 0 selectWay: 0
}) })
const TimeObj: timeParams = reactive({ const TimeObj = reactive<timeParams>({
timeWay: 1 timeWay: 1
}) })
const customSetObj: customParams = reactive({ const customSetObj = reactive<customParams>({
customWay: 1 customWay: 1
}) })
const friendObj: friendParams = reactive({ const friendObj = reactive<friendParams>({
frendArr: [], frendArr: [],
wayArr: [] wayArr: []
}) })
...@@ -231,8 +231,8 @@ const CustomerModule = () => { ...@@ -231,8 +231,8 @@ const CustomerModule = () => {
console.log('getChild', deptArray) console.log('getChild', deptArray)
//数据处理 获取夏利是 1-2 前面代表部门还是人员 后面是原生ID //数据处理 获取夏利是 1-2 前面代表部门还是人员 后面是原生ID
} }
const getCkedFriend = (e)=>{ const getCkedFriend = (e:any)=>{
const Ids = e.map(x=>{ const Ids = e.map((x:any)=>{
return x.Id return x.Id
}).toString(); }).toString();
msg.Q_Friends = Ids; msg.Q_Friends = Ids;
......
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