Commit 8994718f authored by heyihong's avatar heyihong

1

parent 96240404
......@@ -7,17 +7,18 @@
},
"pages": [
{
"path": "pages/index/index",
"path": "pages/fileQuery/fileQuery",
"style": {
"navigationBarTitleText": "档案服务"
"navigationBarTitleText": "档案查询"
}
},
{
"path": "pages/fileQuery/fileQuery",
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "档案查询"
"navigationBarTitleText": "档案服务"
}
}
],
"globalStyle": {
"navigationStyle": "custom"
......
......@@ -86,7 +86,7 @@
<view class="box-list1">
<text class="gary">档案转出单位</text>
<text>{{ item.dazcdw }}</text>
</view>
</view>
</block>
<button type="primary" @click="goback">返回</button>
</view>
......
<template>
<view>
<fileHeader :info="info"></fileHeader>
<view class="h-content">
<view class="jianjie">
<img src="/static/fileimg/liuchen.png" alt="" mode="widthFix">
</view>
<img src="/static/fileimg/liuchen3.png" class="liuchen2" mode="widthFix">
<button type="default" @click="clickBtn()" class="shenqing">申请</button>
</view>
<view class="container">
<!-- 普通弹窗 -->
<uni-popup ref="popup" :maskClick="false">
<view class="popup-wrap">
<view class="popup-header">
服务协议
</view>
<view class="popup-content">
<scroll-view scroll-y class="scrolls">
<view class="hmain">
<view class="box-list1">
<text>1、业务说明</text>
<text>本系统仅为档案已存放在贵阳市公共就业人才服务机构的流动人员办理证明类业务,出具的证明内容依据档案记载自动生成,须验证存档人预留手机号,如您的手机号变更请联系对应存档机构修改。</text>
</view>
<view class="box-list1">
<text>2、申请条件</text>
<text>(1) 申请人档案已存放在贵阳市公共就业人才服务机构;</text>
<text>(2) 申请的证明内容档案内有相应材料佐证。</text>
</view>
<view class="box-list1">
<text>3、您应确保填写信息及上传材料的真实性,若因信息填写或上传材料有误导致开具的调函错误,后果自行承担,档案政策咨询电话:</text>
<view style="color:#7E7E7E">
0851-96567。
</view>
</view>
</view>
</scroll-view>
</view>
<view class="popup-btn">
<view class="cancel" @click="cancel()">
拒绝
</view>
<view class="sure" @click="sure()">
接受
</view>
</view>
</view>
</uni-popup>
</view>
</view>
</template>
<script>
import fileHeader from '../../../components/fileHeader/fileHeader.vue'
export default {
components: {
fileHeader
},
data() {
return {
info:'档案政审证明'
}
},
methods: {
clickBtn(){
this.$refs.popup.open('center')
},
cancel(){
this.$refs.popup.close()
},
sure(){
uni.showToast({
title:"开发中...",
icon:'none',
duration:850
});
// uni.navigateTo({
// url:'../verification/verification'
// })
}
}
}
</script>
<style lang="scss">
@import "../../../static/css/dangan.scss";
.popup-wrap{
width:636rpx;
height:1030rpx;
background:#fff;
border-radius:48rpx;
border:1px solid #CECECE;
position:relative;
.popup-header{
font-size:20px;
text-align:center;
margin:0 auto;
padding:32px 0;
}
.popup-content{
.scrolls{
height:660rpx;
.hmain{
padding:10px;
box-sizing:border-box;
text{
display:block;
margin-bottom:10px;
color:#7E7E7E;
}
}
}
}
.popup-btn{
height:120rpx;
position:absolute;
bottom:0;
left:0;
width: 100%;
box-sizing:border-box;
display:flex;
justify-content:space-between;
text-align:center;
font-size:20px;
border-top:1px solid #CECECE;
line-height:120rpx;
.cancel{
width:50%;
box-sizing:border-box;
border-right:1px solid #CECECE;
}
.sure{
width:50%;
color:#3D65C2;
}
}
}
.h-content{
.jianjie{
background:#F8F8F8;
width:100%;
padding:25px 0;
img{
display:block;
margin:0 auto;
}
}
.liuchen2{
display: block;
margin:10px auto;
}
.shenqing{
background:#3D65C2;
margin:10px auto 40px;
width:90%;
color:#fff;
}
}
</style>
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