You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
4 years ago
|
<!--pages/service/detail/detail.wxml-->
|
||
|
<import src="../../../components/wxParse/wxParse.wxml"/>
|
||
|
<view class="title">
|
||
|
<view class="line"></view>
|
||
|
服务内容
|
||
|
</view>
|
||
|
<view class="card">
|
||
|
<view class="con">
|
||
|
<!-- 为高层次人才优先办理人才落户手续,1个工作日内完成网上审核 -->
|
||
|
<template is="wxParse" data="{{wxParseData:article.nodes}}"/>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<view class="title">
|
||
|
<view class="line"></view>
|
||
|
办理部门
|
||
|
</view>
|
||
|
|
||
|
<view class="card">
|
||
|
<view class="con">
|
||
|
<view class="tit">市北区人社局</view>
|
||
|
电话:0532-58771882
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
|
||
|
<view class="publish" bindtap="onTap">
|
||
|
<!-- <image src="/images/topic/publish.png"></image> -->
|
||
|
<text>预约</text>
|
||
|
<!-- <text>赋能</text> -->
|
||
|
</view>
|
||
|
|
||
|
|
||
|
<van-popup
|
||
|
show="{{ show }}"
|
||
|
position="bottom"
|
||
|
custom-style="height: 150px;"
|
||
|
bind:close="onClose"
|
||
|
round="{{false}}"
|
||
|
>
|
||
|
<view class="popup-title">选择服务内容</view>
|
||
|
<view class="popup-con">
|
||
|
<view class="popup-btn-box">
|
||
|
<view class="popup-button" bindtap="settle">猎聘补贴</view>
|
||
|
<view class="popup-button" bindtap="settle">企业服务补贴</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</van-popup>
|