提交 8a4a00d6 authored 作者: lidongxu's avatar lidongxu

feat(display_schedule): 修改:AP 执行上报_陈列和档期计划_表格列宽度更合理

上级 89998429
...@@ -25,7 +25,7 @@ export * from './monitor/job' ...@@ -25,7 +25,7 @@ export * from './monitor/job'
export * from './monitor/jobLog' export * from './monitor/jobLog'
export * from './monitor/online' export * from './monitor/online'
export * from './monitor/server' export * from './monitor/server'
export * from './promotion/display' export * from './promotion/display_schedule'
export * from './promotion/plan' export * from './promotion/plan'
export * from './promotion/task' export * from './promotion/task'
export * from './scm/logistics_receipt' export * from './scm/logistics_receipt'
......
...@@ -4,7 +4,7 @@ export function getDisplayList(params) { ...@@ -4,7 +4,7 @@ export function getDisplayList(params) {
return request({ return request({
url: '/operation/sales/ap_display/query/page', url: '/operation/sales/ap_display/query/page',
params params
}); })
} }
// 填报-陈列计划 // 填报-陈列计划
...@@ -17,3 +17,22 @@ export function submitDisplayPlan(data) { ...@@ -17,3 +17,22 @@ export function submitDisplayPlan(data) {
} }
}); });
} }
// 获取档期计划列表
export function getDisplayScheduleList(params) {
return request({
url: '/operation/sales/ap_promotion/query/page',
params
})
}
// 填报-档期计划
export function submitDisplaySchedulePlan(data) {
return request({
url: `/operation/sales/ap_promotion/core/${data.id}`,
method: 'PUT',
data: {
promotion: data
}
});
}
...@@ -126,7 +126,7 @@ aside { ...@@ -126,7 +126,7 @@ aside {
// 全局样式 // 全局样式
// 容器 // 容器
.app-container { .app-container {
padding: 30px; padding: 10px;
height: 100%; height: 100%;
// 内容区域 // 内容区域
...@@ -134,7 +134,7 @@ aside { ...@@ -134,7 +134,7 @@ aside {
width: 100%; width: 100%;
height: 100%; height: 100%;
background-color: var(--el-bg-color-overlay); background-color: var(--el-bg-color-overlay);
padding: 20px; padding: 10px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
icon="Refresh" icon="Refresh"
@click="refresh()" /> @click="refresh()" />
</el-tooltip> </el-tooltip>
<el-tooltip class="item" <el-tooltip class="item "
effect="dark" effect="dark"
content="显隐列" content="显隐列"
placement="top" placement="top"
...@@ -31,7 +31,8 @@ ...@@ -31,7 +31,8 @@
<el-dropdown trigger="click" <el-dropdown trigger="click"
:hide-on-click="false" :hide-on-click="false"
style="padding-left: 12px" style="padding-left: 12px"
v-if="showColumnsType == 'checkbox'"> v-if="showColumnsType == 'checkbox'"
class="columns-dropdown">
<el-button circle <el-button circle
icon="Menu" /> icon="Menu" />
<template #dropdown> <template #dropdown>
...@@ -50,7 +51,8 @@ ...@@ -50,7 +51,8 @@
<el-dropdown trigger="click" <el-dropdown trigger="click"
:hide-on-click="false" :hide-on-click="false"
style="padding-left: 12px" style="padding-left: 12px"
v-if="showColumnsType == 'tree'"> v-if="showColumnsType == 'tree'"
>
<el-button circle <el-button circle
icon="Menu" /> icon="Menu" />
<template #dropdown> <template #dropdown>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论