Commit aa8daf6a authored by zhengke's avatar zhengke

1

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