提交 b0e7b0d6 authored 作者: lidongxu's avatar lidongxu

refactor(mobile/promotion/plan): 促销计划移动端样式修复

稽核暂时不跳转进去
上级 bf754b76
......@@ -22,6 +22,7 @@
<script setup>
const router = useRouter();
const {proxy} = getCurrentInstance();
const modules = [
{
title: 'CP 活动',
......@@ -33,7 +34,12 @@ const modules = [
]
const handleIconClick = (icon) => {
router.push(icon.to)
// 如果是促销稽核,则提示本板块在开发中
if (icon.name === '促销稽核') {
proxy.$modal.msgWarning('本板块在开发中');
} else {
router.push(icon.to)
}
};
</script>
......
......@@ -332,6 +332,8 @@ const confirmPickerBelong = async (val) => {
/* 底部菜单 */
.van-action-bar {
padding: 0 0 0 20px;
span {
font-size: 14px;
padding: 0 10px;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论