uid 从新分配 更新时间

This commit is contained in:
2025-07-04 14:05:15 +08:00
parent 8384660b31
commit e415d50c7c
10 changed files with 140 additions and 22 deletions

View File

@@ -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) => {