linwu 5 ヶ月 前
コミット
ed4a1074ef

+ 6 - 2
app/mobile/controller/Human.php

@@ -15,6 +15,7 @@ class Human extends MobileBaseController
 {
     protected function initialize()
     {
+//        session('mobile.human.open_id', 'sdfjosijdfoi1');
         $open_id = session('mobile.human.open_id');
         if (empty($open_id)) {
             session('mobile.human.back_url', request()->url(true));
@@ -86,6 +87,7 @@ class Human extends MobileBaseController
     {
         $open_id = session('mobile.human.open_id');
         $msg     = '';
+        $type    = '';
 
         $institution = HumanInstitutionApplyModel::where('open_id', $open_id)->find();
         $enterprise  = HumanEnterpriseApplyModel::where('open_id', $open_id)->find();
@@ -94,6 +96,7 @@ class Human extends MobileBaseController
         }
 
         if (!empty($institution)) {
+            $type = 'institution';
             if ($institution['status'] != HumanInstitutionApplyModel::STATUS_PASS) {
                 $msg = HumanInstitutionApplyModel::STATUS[$institution['status']];
                 if (!empty($institution['comment'])) {
@@ -105,6 +108,7 @@ class Human extends MobileBaseController
         }
 
         if (!empty($enterprise)) {
+            $type = 'enterprise';
             if ($enterprise['status'] != HumanEnterpriseApplyModel::STATUS_PASS) {
                 $msg = HumanEnterpriseApplyModel::STATUS[$enterprise['status']];
                 if (!empty($enterprise['comment'])) {
@@ -115,7 +119,7 @@ class Human extends MobileBaseController
             }
         }
 
-        return view('', ['msg' => $msg]);
+        return view('', ['msg' => $msg, 'type' => $type]);
     }
 
     public function resetApply()
@@ -226,7 +230,7 @@ class Human extends MobileBaseController
 
     public function guide()
     {
-        $this->_listValidate();
+//        $this->_listValidate();
 
         return view();
     }

+ 2 - 2
app/mobile/view/human/center.html

@@ -19,7 +19,7 @@
 
 <van-cell-group>
     <van-cell title="大会介绍" is-link url="{:url('human/describe')}"></van-cell>
-    <van-cell title="活动指南" is-link url="{:url('human/guide')}"></van-cell>
+    <van-cell title="服务指南" is-link url="{:url('human/guide')}"></van-cell>
     <van-cell title="晋江介绍" is-link url="{:url('human/jinjiang')}"></van-cell>
     <van-cell title="人资公司介绍" is-link url="{:url('human/renzi')}"></van-cell>
     <van-cell title="联系我们" is-link @click="showImage"></van-cell>
@@ -40,7 +40,7 @@
 
         base.showImage = () => {
             vant.showImagePreview([
-                '/static/mobile/images/wechat_qrcode.jpg'
+                '/static/mobile/images/wechat_qrcode.jpg',
             ]);
         };
 

+ 6 - 3
app/mobile/view/human/enterprise_detail.html

@@ -33,13 +33,13 @@
     </div>
     <div class="tel" @click.stop="call(info.tel)">
         <van-icon name="phone" color=" #dd4250"></van-icon>
-        {{info.tel}}
+        点击扫码联系
     </div>
     <div class="join" v-if="info.join">
         <div class="flex-1">参会人:{{info.join}}</div>
         <div class="flex-1 mobile" v-if="info.join_mobile" @click.stop="call(info.join_mobile)">
             <van-icon name="phone" color=" #dd4250"></van-icon>
-            {{info.join_mobile}}
+            点击扫码联系
         </div>
     </div>
     <div class="address" v-if="info.capital">
@@ -69,7 +69,10 @@
         };
 
         base.call = (tel) => {
-            location.href = "tel://" + tel;
+            vant.showImagePreview([
+                '/static/mobile/images/wechat_qrcode_institution.jpg'
+            ]);
+            // location.href = "tel://" + tel;
         };
         
         return base;

+ 1 - 1
app/mobile/view/human/enterprise_form.html

@@ -173,7 +173,7 @@
 
         base.showQrcode = () => {
             vant.showImagePreview([
-                '/static/mobile/images/wechat_qrcode.jpg'
+                '/static/mobile/images/wechat_qrcode_enterprise.jpg'
             ]);
         };
 

+ 6 - 3
app/mobile/view/human/enterprise_list.html

@@ -40,13 +40,13 @@
                 </div>
                 <div class="tel" @click.stop="call(item.tel)">
                     <van-icon name="phone" color=" #dd4250"></van-icon>
-                    {{item.tel}}
+                    点击扫码联系
                 </div>
                 <div class="join" v-if="item.join">
                     <div class="flex-1">参会人:{{item.join}}</div>
                     <div class="flex-1 mobile" v-if="item.join_mobile" @click.stop="call(item.join_mobile)">
                         <van-icon name="phone" color=" #dd4250"></van-icon>
-                        {{item.join_mobile}}
+                        点击扫码联系
                     </div>
                 </div>
                 <div class="address" v-if="item.capital">
@@ -109,7 +109,10 @@
         };
 
         base.call = (tel) => {
-            location.href = "tel://" + tel;
+            vant.showImagePreview([
+                '/static/mobile/images/wechat_qrcode_institution.jpg'
+            ]);
+            // location.href = "tel://" + tel;
         };
 
         base.toDetail = (id) => {

+ 55 - 4
app/mobile/view/human/guide.html

@@ -1,7 +1,14 @@
 {extend name="public/base_human"/}
 {block name="css"}
 <style>
-
+    .box {width:100%;box-sizing: border-box;padding:0 20px 20px 20px;}
+    .title {color:#0070C0;font-size:20px;text-align: center;}
+    .sub-title {color:#0070C0;margin-bottom: 0;font-weight: bold;}
+    .content {text-indent: 2em;}
+    .mt-5 {margin-top:5px;}
+    .mb-5 {margin-bottom: 5px;}
+    .t0 {text-indent: 0;}
+    .company {display: block;width: 100%;}
 </style>
 {/block}
 {block name="body"}
@@ -14,11 +21,45 @@
         @click-left="onBack"
 >
     <template #title>
-        <span class="text-white">活动指南</span>
+        <span class="text-white">服务指南</span>
     </template>
 </van-nav-bar>
-<img src="/static/mobile/images/human_process.png" style="width:100%;display: block;">
-
+<div class="box">
+    <h1 class="title">参会须知</h1>
+    <p class="content">欢迎您参加2024年“惠企助才·融链赋能”福建省(晋江)人力资源服务业发展大会暨人力资源服务供需对接会。为方便您更好地了解活动安排,请您仔细阅读服务指南,本次活动服务组将竭诚为您服务。</p>
+    <p class="sub-title">一、注意事项</p>
+    <p class="content mt-5 mb-5">(一)活动仅限受邀人员,请随身佩带好相关证件。有关活动议程的详细资料,请参阅服务指南或现场二维码随扫随看。如有任何变更时,请注意现场公告。</p>
+    <p class="content mt-5 mb-5">参会时,请与会人员提前10分钟进场。会议期间,请勿随意走动,并请将手机调至静音或振动状态。</p>
+    <p class="content mt-5 mb-5">(二)为了保证会议期间的交通安全和会议秩序,敬请注意以下事项:</p>
+    <p class="content mt-5 mb-5">1、会议期间,请遵守会议时间安排,互相提醒、互相照应,并听从工作人员的引导;</p>
+    <p class="content mt-5 mb-5">2、外出参访期间,请在指定位置乘车,有特殊要求的请及时与服务组联系;</p>
+    <p class="content mt-5 mb-5">3、活动结束后,仍需逗留并需要提供帮助的,请与服务组联系。</p>
+    <p class="content mt-5 mb-5">(三)酒店住宿</p>
+    <p class="content mt-5 mb-5">1、酒店入住:住宿安排在晋江佰翔世纪酒店,请参会嘉宾报到时持本人身份证到酒店总台登记。退房请将房卡直接退还酒店总台。如需提前或延期住宿,请提前与服务组做好沟通。</p>
+    <p class="content mt-5 mb-5">2、贵重物品:贵重物品请妥善保管,退房时请认真检查行李、个人使用物品、充电器、衣物等是否收妥。</p>
+    <p class="content mt-5">3、安全须知:活动过程中请勿擅自离场,如有特殊情况不能参加集体活动需要暂时离会的,请及时告知服务组,并确保安全。</p>
+    <p class="sub-title">二、气象资讯</p>
+    <p class="content mt-5 mb-5">11月5日:18°C-25°C   天气晴</p>
+    <p class="content mt-5 mb-5">11月6日:17°C-22°C   天气晴</p>
+    <p class="content mt-5">11月7日:18°C-22°C   天气晴</p>
+    <p class="sub-title">三、服务联络</p>
+    <p class="content mt-5 mb-5 t0">1、对外联络组</p>
+    <p class="content mt-5 mb-5">周女士  19959780161</p>
+    <p class="content mt-5 mb-5">王女士  17758777161</p>
+    <p class="content mt-5 mb-5">卢先生  19959873168</p>
+    <p class="content mt-5 mb-5">刘先生  18120692731</p>
+    <p class="content mt-5 mb-5 t0">2、服务保障组</p>
+    <p class="content mt-5 mb-5">郑女士  15906068030</p>
+    <p class="content mt-5 mb-5">邱先生  15960715316</p>
+    <p class="content mt-5 mb-5">吴女士  15080072713</p>
+    <p class="content mt-5">陈先生  18850292263</p>
+    <p class="sub-title">温馨提醒</p>
+    <p class="content mt-5 mb-5">1、早晚有温差,注意及时增减衣物,预防感冒。</p>
+    <p class="content mt-5">2、会场及酒店均备有常用药物,有需要可联系工作人员或酒店前台。</p>
+    <h1 class="title">会议日程安排</h1>
+    <img src="/static/mobile/images/company/guide_table1.png" @click="showImage(0)" class="company" alt="">
+    <img src="/static/mobile/images/company/guide_table2.png" @click="showImage(1)" class="company" alt="">
+</div>
 {/block}
 {block name="script"}
 <script>
@@ -29,6 +70,16 @@
             history.back();
         };
 
+        base.showImage = (index) => {
+            vant.showImagePreview({
+                images:[
+                    '/static/mobile/images/company/guide_table1.png',
+                    '/static/mobile/images/company/guide_table2.png',
+                ],
+                startPosition: index,
+            });
+        };
+
         return base;
     }
 </script>

+ 6 - 3
app/mobile/view/human/institution_detail.html

@@ -35,7 +35,7 @@
     </div>
     <div class="tel" @click.stop="call(info.tel)">
         <van-icon name="phone" color=" #dd4250"></van-icon>
-        {{info.tel}}
+        点击扫码联系
     </div>
     <div class="tags">
         <van-tag type="primary" v-for="tag in info.cooperate" size="medium">{{tag}}</van-tag>
@@ -44,7 +44,7 @@
         <div class="flex-1">参会人:{{info.join}}</div>
         <div class="flex-1 mobile" v-if="info.join_mobile" @click.stop="call(info.join_mobile)">
             <van-icon name="phone" color=" #dd4250"></van-icon>
-            {{info.join_mobile}}
+            点击扫码联系
         </div>
     </div>
     <div class="address">
@@ -71,7 +71,10 @@
         };
 
         base.call = (tel) => {
-            location.href = "tel://" + tel;
+            vant.showImagePreview([
+                '/static/mobile/images/wechat_qrcode_enterprise.jpg'
+            ]);
+            // location.href = "tel://" + tel;
         };
         
         return base;

+ 1 - 1
app/mobile/view/human/institution_form.html

@@ -173,7 +173,7 @@
 
         base.showQrcode = () => {
             vant.showImagePreview([
-                '/static/mobile/images/wechat_qrcode.jpg'
+                '/static/mobile/images/wechat_qrcode_institution.jpg'
             ]);
         };
 

+ 6 - 3
app/mobile/view/human/institution_list.html

@@ -47,7 +47,7 @@
                 </div>
                 <div class="tel" @click.stop="call(item.tel)">
                     <van-icon name="phone" color=" #dd4250"></van-icon>
-                    {{item.tel}}
+                    点击扫码联系
                 </div>
                 <div class="tags">
                     <van-tag type="primary" v-for="tag in item.cooperate" size="medium">{{tag}}</van-tag>
@@ -56,7 +56,7 @@
                     <div class="flex-1">参会人:{{item.join}}</div>
                     <div class="flex-1 mobile" v-if="item.join_mobile" @click.stop="call(item.join_mobile)">
                         <van-icon name="phone" color=" #dd4250"></van-icon>
-                        {{item.join_mobile}}
+                        点击扫码联系
                     </div>
                 </div>
                 <div class="address">
@@ -119,7 +119,10 @@
         };
 
         base.call = (tel) => {
-            location.href = "tel://" + tel;
+            vant.showImagePreview([
+                '/static/mobile/images/wechat_qrcode_enterprise.jpg'
+            ]);
+            // location.href = "tel://" + tel;
         };
 
         base.toDetail = (id) => {

+ 25 - 3
app/mobile/view/human/jinjiang.html

@@ -1,7 +1,12 @@
 {extend name="public/base_human"/}
 {block name="css"}
 <style>
-
+    .box {width:100%;box-sizing: border-box;padding:0 20px 20px 20px;}
+    .title {color:#0070C0;font-size:20px;text-align: center;}
+    .sub-title {color:#0070C0;margin-bottom: 0;font-weight: bold;}
+    .content {text-indent: 2em;}
+    .mt-5 {margin-top:5px;}
+    .mb-5 {margin-bottom: 5px;}
 </style>
 {/block}
 {block name="body"}
@@ -17,8 +22,25 @@
         <span class="text-white">晋江介绍</span>
     </template>
 </van-nav-bar>
-<img src="/static/mobile/images/human_jinjiang.png" style="width:100%;display: block;">
-
+<div class="box">
+    <h1 class="title">活力之都 奋进之城——福建晋江欢迎您</h1>
+    <p class="content">晋江地处福建东南沿海,陆域面积649平方公里,常住人口240万人,现辖13个镇、6个街道和1个经济开发区。改革开放以来,晋江人凭借“敢为天下先、爱拼才会赢”的精神,不断推动经济社会发展取得新的突破,2023年全市GDP增速居全国十强县首位,县域经济基本竞争力保持全国第4,县域经济和社会综合发展指数居全国第3位。</p>
+    <p class="sub-title">晋江——“晋江经验”发祥地</p>
+    <p class="content mt-5">习近平总书记在福建工作期间,曾六年七到晋江调研,于2002年总结提出以“六个始终坚持”和“处理好五大关系”为主要内容的“晋江经验”。20多年来,在“晋江经验”的引领下,走出了一条县域高质量发展之路,2023年7月份,中央出台《促进民营经济发展壮大的意见》,把“晋江经验”写入中央文件,上升为引领全国民营经济发展的示范样板。2024年第一个工作日,国家发改委又在晋江召开创新发展“晋江经验”、促进民营经济高质量发展大会,再次对晋江民营经济发展给予了充分肯定。</p>
+    <p class="sub-title">晋江——县域经济龙头</p>
+    <p class="content mt-5 mb-5">晋江以民营经济为主。全市97%以上企业是民营企业,民营企业创造的产值、税收、就业岗位都在90%以上。</p>
+    <p class="content mt-5 mb-5">晋江是中国品牌之都。拥有15个区域品牌,中国驰名商标46枚,上市企业52家,居全国县域前列,形成资本市场的“晋江版块”,被誉为中国品牌之都、国潮之城。</p>
+    <p class="content mt-5 mb-5">晋江集群优势明显。培育了1个超三千亿(鞋服),1个超千亿(纺织)、2个超五百亿(建材、食品)、2个超三百亿(智能装备、医疗健康)产业集群,集成电路产业规模突破百亿。</p>
+    <p class="content mt-5">晋江创新动能强劲。坚持创新引领,落地高能级科研机构12家,实现主导产业科研平台全覆盖,高新企业达849家,占泉州27.7%,企业上云上平台1950家,上市挂牌企业突破百家,设立50亿元产业发展母基金,产业引导基金11支,全市基金规模突破300亿元。</p>
+    <p class="sub-title">晋江——城市宜居宜业</p>
+    <p class="content mt-5 mb-5">晋江环湾向湾发展。积极对接泉州环湾中心城市框架,策划推进“四大新区+若干更新片区”,2023年完成片区投资63.46亿元,建成9个快速路项目,福厦高铁泉州南站正式通车,环湾向湾发展格局加速形成。</p>
+    <p class="content mt-5 mb-5">晋江城市功能完善。坚持产城人融合发展,连续多年开展城市品质提升专项行动,中心城区建成区面积达119平方公里,城镇化率达70.3%,连续三年获评全省城乡建设品质提升综合绩效优异县市,被评为全国II型大城市。</p>
+    <p class="content mt-5">晋江文体旅深度融合。晋江文化底蕴深厚,拥有安平桥、草庵摩尼光佛造像、金交椅山古窑址三处世界遗产点,打造了五店市、梧林古村落等闽南文化“活样本”。同时,晋江体育氛围浓厚,是国家体育产业基地。近年来,深度推进文体旅融合发展,先后举办全国村BA、大体联世界杯、国际篮球博览会等一系列重大文旅活动、赛事活动,城市热度越来越高,不断出圈出彩,全年旅游人数达1300万人次、增长39.5%,旅游收入达170亿元、增长44.1%,入选全国县域旅游综合实力百强县。</p>
+    <p class="sub-title">晋江——改革前沿重地</p>
+    <p class="content mt-5">先后承担44项国家级改革试点,是全省乃至全国改革试点最多、成果最丰富的县级城市之一,获评全国法治政府建设示范市,城市投资潜力、营商环境位居全国县域第二位。近年来,以泉州获批国家盘活利用低效用地试点为契机,狠抓空间盘活利用和园区标准化建设,去年盘活低效用地超6500亩,清理批而未供和闲置土地6112亩,建成产业空间超200万平米,成为全国、全省典型。特别是提出“产业社区”的理念,策划实施14个综合产业园区,高标准推进千万平米标准化园区建设,已建成产业空间超300万平米,还有超800万平米在建,招商去化率达93%,规上企业入园率达54%。</p>
+    <p class="sub-title">晋江——民生优质均衡</p>
+    <p class="content mt-5">每年将超7成以上本级财力用于民生,全力扩大高品质民生供给。城乡居民人均收入达4.5万元、村财平均收入达73万元,每千人医疗机构开放床位达3.8张,每千名老人养老床位41张。特别是近年来,聚焦群众更高民生需求,先后引进清华附中、国科大智能制造学院、福大晋江校区、上海六院、上海十院、复旦大学上海医学院等优质教育医疗资源,落地全国首个县域国家区域医疗中心,目前还拥有4所高校,优质公共服务可感可及。</p>
+</div>
 {/block}
 {block name="script"}
 <script>

+ 2 - 2
app/mobile/view/human/tips.html

@@ -51,8 +51,8 @@
 </van-nav-bar>
 <div style="width:100%;height:46px;"></div>
 <h3 class="msg">{$msg}</h3>
-<p class="tips">如有疑问,请加下方工作人员微信</p>
-<img src="/static/mobile/images/wechat_qrcode.jpg" class="wechat" alt="">
+<p class="tips">请务必加下方工作人员微信,以便了解活动最新详情</p>
+<img src="/static/mobile/images/wechat_qrcode_{$type}.jpg" class="wechat" alt="">
 <p class="apply"><a href="{:url('human/resetApply')}">重新报名</a></p>
 
 {/block}

BIN
public/static/mobile/images/company/guide_table1.png


BIN
public/static/mobile/images/company/guide_table2.png


BIN
public/static/mobile/images/header_jinjiang.jpg


BIN
public/static/mobile/images/wechat_qrcode_enterprise.jpg


BIN
public/static/mobile/images/wechat_qrcode_institution.jpg