点击选择账号
This commit is contained in:
@ -149,7 +149,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ref, reactive, onMounted, watch } from 'vue';
|
||||
import { ref, reactive, onMounted, nextTick } from 'vue';
|
||||
import aiIcon from '@/assets/img/media-account/icon-AI.png';
|
||||
import { Checkbox, Button, Space, Pagination, notification, DatePicker, TimePicker } from 'ant-design-vue';
|
||||
import { TABS_LIST, ORIGIN_LIST, RawMaterialType } from '@/views/material-center/components/raw-material/constants';
|
||||
@ -263,8 +263,15 @@ const handleAddMaterial = () => {
|
||||
};
|
||||
const handleDateChange = (date) => {};
|
||||
// 暴露方法给父组件
|
||||
const showDrawer = () => {
|
||||
const showDrawer = (accountInfo = null) => {
|
||||
showDriwer.value = true;
|
||||
// 如果传入了账号信息,则设置为默认选中
|
||||
if (accountInfo && accountInfo.id) {
|
||||
// 使用 nextTick 确保在 DOM 更新后设置默认值
|
||||
nextTick(() => {
|
||||
localQuery.value.accounts = [accountInfo.name];
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const showDriwerChange = (visible: boolean) => {
|
||||
|
||||
@ -29,6 +29,7 @@
|
||||
style="width: 100%"
|
||||
:pagination="false"
|
||||
@change="handleTableChange"
|
||||
@row-click="handleRowClick"
|
||||
>
|
||||
<!-- 空数据显示 -->
|
||||
<template #empty>
|
||||
@ -465,6 +466,35 @@ const handleTableChange = (pagination: any, sorter: any) => {
|
||||
handleSearch();
|
||||
};
|
||||
|
||||
// 处理表格行单击事件(用于调试)
|
||||
const handleRowClick = (record: any, index: number, event: Event) => {
|
||||
console.log('单击行:', record);
|
||||
console.log('行索引:', index);
|
||||
console.log('事件对象:', event);
|
||||
const accountInfo = {
|
||||
id: record.id,
|
||||
name: record.name,
|
||||
platform: record.platform,
|
||||
};
|
||||
drawerPopupRef.value.showDrawer(accountInfo);
|
||||
};
|
||||
|
||||
// 处理表格行双击事件
|
||||
const handleRowDblClick = (record: any, index: number, event: Event) => {
|
||||
console.log('双击行:', record);
|
||||
console.log('行索引:', index);
|
||||
console.log('事件对象:', event);
|
||||
// 双击行时打开创建任务弹窗并传递账号信息
|
||||
if (drawerPopupRef.value) {
|
||||
const accountInfo = {
|
||||
id: record.id,
|
||||
name: record.name,
|
||||
platform: record.platform
|
||||
};
|
||||
drawerPopupRef.value.showDrawer(accountInfo);
|
||||
}
|
||||
};
|
||||
|
||||
// 任务操作处理
|
||||
const handleTaskAction = (action: string, task: any, ...args: any[]) => {
|
||||
switch (action) {
|
||||
|
||||
Reference in New Issue
Block a user