diff --git a/packageB/institution/evaluationAgency.vue b/packageB/institution/evaluationAgency.vue
new file mode 100644
index 0000000..7546523
--- /dev/null
+++ b/packageB/institution/evaluationAgency.vue
@@ -0,0 +1,400 @@
+
+
+
+
+
+
+ 人员姓名
+
+
+ {{personInfo.name}}
+
+
+
+
+
+ 帮扶类型
+
+
+ {{personInfo.taskType}}
+
+
+
+
+
+
+ 新增跟进记录
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 跟进历史记录
+
+
+
+ 共{{followListNum}}条记录
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packageB/institution/trainingInstitution.vue b/packageB/institution/trainingInstitution.vue
new file mode 100644
index 0000000..7546523
--- /dev/null
+++ b/packageB/institution/trainingInstitution.vue
@@ -0,0 +1,400 @@
+
+
+
+
+
+
+ 人员姓名
+
+
+ {{personInfo.name}}
+
+
+
+
+
+ 帮扶类型
+
+
+ {{personInfo.taskType}}
+
+
+
+
+
+
+ 新增跟进记录
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 跟进历史记录
+
+
+
+ 共{{followListNum}}条记录
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packageB/notice/index.vue b/packageB/notice/index.vue
new file mode 100644
index 0000000..7546523
--- /dev/null
+++ b/packageB/notice/index.vue
@@ -0,0 +1,400 @@
+
+
+
+
+
+
+ 人员姓名
+
+
+ {{personInfo.name}}
+
+
+
+
+
+ 帮扶类型
+
+
+ {{personInfo.taskType}}
+
+
+
+
+
+
+ 新增跟进记录
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 跟进历史记录
+
+
+
+ 共{{followListNum}}条记录
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages.json b/pages.json
index 47cb4c9..81232c8 100644
--- a/pages.json
+++ b/pages.json
@@ -419,7 +419,25 @@
"style": {
"navigationBarTitleText": "错题详情"
}
- }
+ },
+ {
+ "path": "notice/index",
+ "style": {
+ "navigationBarTitleText": "培训评价公告"
+ }
+ },
+ {
+ "path": "institution/evaluationAgency",
+ "style": {
+ "navigationBarTitleText": "评价机构"
+ }
+ },
+ {
+ "path": "institution/trainingInstitution",
+ "style": {
+ "navigationBarTitleText": "培训机构"
+ }
+ },
]
},
{
diff --git a/pages/index/components/index-one.vue b/pages/index/components/index-one.vue
index 9e29425..678bf89 100644
--- a/pages/index/components/index-one.vue
+++ b/pages/index/components/index-one.vue
@@ -166,6 +166,24 @@
帮扶
+
+
+ ¥
+
+ 培训评价公告
+
+
+
+
+
+ 培训机构
+
+
+
+
+
+ 评价机构
+
@@ -679,6 +697,7 @@ const goToCompanyInfo = () => {
navTo('/pages/mine/company-info');
};
+
// 组件初始化时加载数据
onMounted(() => {
// 获取企业信息
@@ -763,7 +782,23 @@ const handleNearbyClick = () => {
navTo('/pages/nearby/nearby');
}
};
-
+const handleNoticeClick = () =>{
+ uni.navigateTo({
+ url:'/packageB/notice/index'
+ })
+}
+function handleInstitutionClick(type){
+ if(type=='evaluate'){
+ uni.navigateTo({
+ url:'/packageB/institution/evaluationAgency'
+ })
+ }else if (type=='training'){
+ uni.navigateTo({
+ url:'/packageB/institution/trainingInstitution'
+ })
+ }
+
+}
// 处理服务功能点击
const handleServiceClick = (serviceType) => {
if (checkLogin()) {