Commit 95b14e52 authored by 罗超's avatar 罗超

部分会议说明

parent 66b004a9
<template> <template>
<div class="dev-box"> <div class="dev-box">
<div class="c"> <div class="c">
<i class="iconfont iconkaifazhong"></i> <i class="iconfont iconkaifazhong"></i>
<div>正在开发中,敬请期待</div> <div v-if="t==0">正在开发中,敬请期待</div>
<div v-if="t==1">营销跟踪功能模块将用于对每次产生的自助营销事件的跟踪,了解用户的点击次数,记录咨询反馈和复购等信息。从而形成更加直观的图像报表。功能正在开发中,敬请期待;</div>
<div v-if="t==2">我的工作计划:所有人员可以使用此功能创建每天的工作计划(包含拜访、外出等工作)以及对应的工作反馈, 功能正在开发中,敬请期待;</div>
<div v-if="t==3">我下属的工作:用于主管对下属工作的审批、督促和建议等工作,功能正在开发中,敬请期待;</div>
<div v-if="t==4">我的工作日志:将根据员工填写的工作计划以及反馈内容,再加上系统内的操作记录汇总生成每日工作日志,每日工作日志会在下班打卡有自动生成。功能正在开发中,敬请期待;</div>
<div v-if="t==5">我的日历:将通过日历的形式查看我的工作安排,主管可以通过在此页面直接查看每个下属的工作日历,功能正在开发中,敬请期待;</div>
<div v-if="t==6">工作统计:统计销售在ERP、CRM两个系统的操作数据,完成的工作情况,抽离出各项单项统计,用以组装适用于旅游业的销售成长模型;</div>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
data() {
return {
t:0
}
},
mounted() {
console.log(this.$route.query)
this.t=this.$route.query.t
},
methods: {
}
} }
</script> </script>
...@@ -23,7 +40,7 @@ export default { ...@@ -23,7 +40,7 @@ export default {
} }
.dev-box .c{ .dev-box .c{
text-align: center; text-align: center;
width: 200px; width: 450px;
height: 200px; height: 200px;
color: gray; color: gray;
margin:0 auto; margin:0 auto;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment