Commit 46ec6703 by 无尘

fix: 修改分配接口

parent 61261ded
......@@ -4,7 +4,7 @@
* @Author: 无尘
* @Date: 2020-04-14 09:50:16
* @LastEditors: 无尘
* @LastEditTime: 2020-09-17 14:00:03
* @LastEditTime: 2020-09-17 14:09:54
-->
<!--
<customer-assign v-if="assignShow" :store-brand-id="storeBrandId" :brand-id="brandId" :customer-assign-total="customerAssignTotal" :clerk-id="clerkId" :search-params="searchInput" :choose-all="selectRadio" :depart-obj="departObj" :multiple-data="multipleSelection" @closeText="closeText" @submitText="submitText"></customer-assign>
......@@ -374,7 +374,7 @@ export default {
if (that.checkedClerks.includes(ele.clerkId) && ele.memberCount != 0) {
clerkIds.push({
clerkId: ele.clerkId,
memberCount: ele.memberCount
count: ele.memberCount
});
}
});
......@@ -386,7 +386,7 @@ export default {
storeInfoId: that.departObj.storeInfoId,
mainClerkId: that.clerkId,
search: that.searchParams,
mcuIds: that.chooseAll == 1 ? '' : Object.keys(that.editRow).length ? [ that.editRow ] : that.multipleData,
mcuIds: that.chooseAll == 1 ? '' : Object.keys(that.editRow).length ? [ that.editRow.mcuId ] : that.multipleData.map(ele=>ele.mcuId),
clerkIds: clerkIds,
staffName: that.staffName,
brandId: that.storeBrandId
......
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