工作台路由修改

This commit is contained in:
WindowBird 2025-11-22 10:04:17 +08:00
parent 45b493ee98
commit 417b2f3cb9

View File

@ -31,10 +31,10 @@ import { ref } from 'vue';
const items = ref([
{ key: 'verify', text: '审批管理', icon: '📝' },
{ key: 'customer', text: '客户管理', icon: '👤' },
// { key: 'customer', text: '', icon: '👤' },
{ key: 'project', text: '项目管理', icon: '📚' },
{ key: 'task', text: '任务管理', icon: '🗂️' },
{ key: 'schedule', text: '日程管理', icon: '🗓️' },
// { key: 'schedule', text: '', icon: '🗓' },
{ key: 'contact', text: '通讯录', icon: '📇' },
{ key: 'notice', text: '公告管理', icon: '📢' },
{ key: 'wechat', text: '工作微信', icon: '🤖' }
@ -68,6 +68,14 @@ const handleClick = (item) => {
});
return;
}
if (item.key === 'notice') {
uni.navigateTo({
url: '/pages/notice/list/index'
});
return;
}
//
uni.showToast({ title: '开发中', icon: 'none' });
};