Merge remote-tracking branch 'origin/feature/v1.3_营销资产中台' into feature/v1.3_营销资产中台
This commit is contained in:
@ -36,7 +36,7 @@ export const getAccountInfoFields = (dateType: string, showMore: boolean) => {
|
|||||||
{ title: '账号名称', dataIndex: 'name' },
|
{ title: '账号名称', dataIndex: 'name' },
|
||||||
{ title: '项目分组', dataIndex: 'group.name' },
|
{ title: '项目分组', dataIndex: 'group.name' },
|
||||||
{ title: '状态', dataIndex: 'status', type: 'status' },
|
{ title: '状态', dataIndex: 'status', type: 'status' },
|
||||||
{ title: '运营人员', dataIndex: 'operator_name' },
|
{ title: '运营人员', dataIndex: 'operator.name' },
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{ title: 'AI评价', dataIndex: 'ai_evaluation' },
|
{ title: 'AI评价', dataIndex: 'ai_evaluation' },
|
||||||
|
|||||||
@ -53,7 +53,7 @@ const open = (record) => {
|
|||||||
|
|
||||||
async function onDelete() {
|
async function onDelete() {
|
||||||
const _fn = isBatch.value ? batchDeleteMediaAccounts : deleteMediaAccount;
|
const _fn = isBatch.value ? batchDeleteMediaAccounts : deleteMediaAccount;
|
||||||
const _params = isBatch.value ? { ids: accountId.value } : { id: accountId.value };
|
const _params = isBatch.value ? { ids: accountId.value } : accountId.value;
|
||||||
const { code } = await _fn(_params);
|
const { code } = await _fn(_params);
|
||||||
if (code === 200) {
|
if (code === 200) {
|
||||||
AMessage.success('删除成功');
|
AMessage.success('删除成功');
|
||||||
|
|||||||
@ -57,7 +57,7 @@ const open = (record) => {
|
|||||||
|
|
||||||
async function onDelete() {
|
async function onDelete() {
|
||||||
const _fn = isBatch.value ? batchDeletePlacementAccounts : deletePlacementAccount;
|
const _fn = isBatch.value ? batchDeletePlacementAccounts : deletePlacementAccount;
|
||||||
const _params = isBatch.value ? { ids: accountId.value } : { id: accountId.value };
|
const _params = isBatch.value ? { ids: accountId.value } : accountId.value;
|
||||||
const { code } = await _fn(_params);
|
const { code } = await _fn(_params);
|
||||||
if (code === 200) {
|
if (code === 200) {
|
||||||
AMessage.success('删除成功');
|
AMessage.success('删除成功');
|
||||||
|
|||||||
Reference in New Issue
Block a user