uid 从新分配 更新时间
This commit is contained in:
@@ -255,11 +255,7 @@ const queryParams = reactive({
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
const exportLoading = ref(false) // 导出的加载中
|
||||
let dialogAllocation = ref(false)//分配弹窗
|
||||
let selectHostList = ref([{
|
||||
userId: '',
|
||||
isAssigned: 0,
|
||||
|
||||
}]) //选中的主播列表
|
||||
let selectHostList = ref([]) //选中的主播列表
|
||||
let allocationUser = ref('') //选中的分配用户
|
||||
let allocationUserList = ref([
|
||||
{
|
||||
@@ -369,12 +365,10 @@ const handleSelectionChange = (val) => {
|
||||
|
||||
//分配确认
|
||||
function AllocationFun() {
|
||||
if (selectHostList.value.length == 0) {
|
||||
message.error('请选择要分配的主播')
|
||||
return
|
||||
}
|
||||
if (allocationUser.value == '') {
|
||||
message.error('请选择分配用户')
|
||||
console.log('分配用户', allocationUser.value)
|
||||
console.log('分配主播', selectHostList.value)
|
||||
if (allocationUser.value == undefined || selectHostList.value.length <= 0) {
|
||||
message.error('请选择分配用户和主播')
|
||||
return
|
||||
}
|
||||
selectHostList.value.forEach((item) => {
|
||||
|
||||
Reference in New Issue
Block a user