123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- <template>
- <view class="content">
- <view class="top">
- <view class="avater">
- <image :src="userInfo.avatar" class="avater-img" mode=""></image>
- </view>
- <view class="name-box">
- <view class="name-top">
- {{userInfo.nickname}}
- </view>
- <!-- <view class="name-bottom" v-if="userInfo.is_jh">
- <view class="nameInfo">
- 救在身边 志愿者
- </view>
- </view> -->
- </view>
- </view>
- <view class="tt">
- <view class="tt-box " @click="tohelp" style="background-color:#FEFAF2;">
- <image src="../../static/icon/icon-04.png" class="tt-icon1" mode="" style="width: 52rpx; height: 62rpx;"></image>
- <view class="tt-txt">
- 求救记录
- </view>
- </view>
- <view class="tt-box " @click="torreco" style="background-color:#FDF4F4;">
- <image src="../../static/icon/icon-05.png" class="tt-icon1" mode=""></image>
- <view class="tt-txt">
- 救援记录
- </view>
- </view>
- <view class="tt-box " @click="commonaddress" style="background-color:#F2F6FE;margin-right: 0">
- <image src="../../static/icon/icon-06.png" class="tt-icon1" mode=""></image>
- <view class="tt-txt">
- 常用地址
- </view>
- </view>
- <!-- pages/form/certificates -->
- <view class="tt-box" @click="tocertificates" style="background-color:#EEFFFC;">
- <image src="../../static/icon/icon-07.png" class="tt-icon1" mode=""></image>
- <view class="tt-txt">
- 我的证书
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex';
- import {
- saveUrl,
- interceptor
- } from '@/utils/loginUtils.js';
- import { detail_training } from '@/api/train.js';
- import {
- userinfo
- } from '@/api/user.js';
- // #ifdef H5
- import {
- weixindata
- } from '@/utils/wxAuthorized';
- // #endif
- export default {
- data() {
- return {
- common_address:'',
- name:'',
- signDate:'',
- id:0,
- is_over:0
- }
- },
- onShow() {
- console.log(this);
- // 判断是否已经登录
- if (this.hasLogin) {
- this.loadBaseData();
- } else {
- saveUrl();
- uni.showModal({
- title: '登录',
- content: '您未登录,是否马上登陆?',
- success: e => {
- if (e.confirm) {
- interceptor();
- }
- },
- fail: e => {
- console.log(e);
- }
- });
- }
- this.type = this.userInfo.type;
- this.common_address = this.userInfo.common_address
- console.log('点前保存的地址',this.common_address)
- // 保存当前页面
- },
- onReady() {
- console.log(99999)
- detail_training({
- id:this.id,
- }).then(({data}) => {
- console.log(999,data)
- this.name = data.name
- this.signDate = data.add_time
- this.is_over = data.is_over
- })
- },
- computed: {
- ...mapState('user', ['hasLogin', 'userInfo'])
- },
- methods: {
- ...mapMutations('user', ['setUserInfo']),
- loadBaseData() {
- userinfo({}).then(({
- data
- }) => {
- this.setUserInfo(data);
- });
- // #ifdef H5
- weixindata();
- // #endif
- detail_training({
- id:this.id,
- }).then(({data}) => {
- console.log(9,data)
- this.name = data.name
- this.signDate = data.add_time
- this.is_over = data.is_over
- })
- },
-
- torreco() {
- uni.navigateTo({
- url: '/pages/applic/rescuerecords'
- })
- },
- tohelp() {
- uni.navigateTo({
- url: '/pages/applic/helprecords'
- })
- },
- commonaddress() {
- uni.navigateTo({
- url: '/pages/applic/commonaddress?add=' + this.common_address
- })
- },
- tocertificates() {
- uni.navigateTo({
- // pages/form/certificatesList
- // url: '/pages/form/certificates?name=' + this.name + '&signDate=' + this.signDate
- url: '/pages/form/certificatesList'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .content {
- line-height: 1;
- background-color: #fff;
- .top {
- width: 750rpx;
- height: 370rpx;
- // background-color: #CB131B;
- // background: url(../../static/images/bgi2.png)no-repeat top left;
- background-size: 750rpx 370rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-left: 55rpx;
- align-items: center;
- justify-content: center;
- .avater {
- width: 150rpx;
- height: 150rpx;
- margin-right: 28rpx;
- .avater-img {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- .name-box {
- // flex: 1;
- padding-top: 25rpx;
- .name-top {
- font-size: 42rpx;
- font-weight: 400;
- // color: #FFFFFF;
- margin-bottom: 15rpx;
- }
- .name-bottom{
- margin-top: 16rpx;
- display: flex;
- align-items: center;
- // justify-content: center;
-
- .nameInfo{
- color: #FFFFFF;
- padding: 6rpx 16rpx;
- border: 1rpx solid #FFFFFF;
- border-radius: 12rpx;
- // background-color: pink;
- }
- }
- .name-footbox {
- .name-foot {
- text-align: center;
- font-size: 22rpx;
- font-weight: 400;
- color: #FFFFFF;
- background: rgba(255, 255, 255, 0.2);
- border: 1px solid #FFFFFF;
- border-radius: 20rpx;
- padding: 3rpx 13rpx;
- }
- }
- }
- }
- .center-box {
- width: 687rpx;
- // height: 235px;
- background: #FFE8E8;
- border-radius: 16rpx;
- margin: -90rpx auto 0;
- .center-top {
- width: 687rpx;
- height: 80rpx;
- background: #FFFFFF;
- border-radius: 16rpx 16rpx 0 0;
- display: flex;
- align-items: center;
- padding-left: 30rpx;
- .top-left {
- width: 126rpx;
- line-height: 32rpx;
- text-align: center;
- background: linear-gradient(0deg, #C90F1B, #F14D33);
- font-size: 22rpx;
- font-weight: 400;
- color: #FFFFFF;
- border-radius: 20rpx;
- margin-right: 10rpx;
- }
- .top-right {
- font-size: 22rpx;
- font-weight: 400;
- color: #CB151D;
- }
- }
- .center-foot {
- height: 155rpx;
- display: flex;
- .foot-list {
- flex: 1;
- text-align: center;
- padding-top: 20rpx;
- .list-top {
- font-size: 39rpx;
- font-weight: 400;
- color: #CB141D;
- line-height: 58rpx;
- }
- .list-foot {
- font-size: 39rpx;
- font-weight: 400;
- color: #666666;
- line-height: 58rpx;
- }
- }
- }
- }
- .tt {
- display: flex;
- flex-wrap: wrap;
- padding-left:32rpx;
- .tt-box {
- width: 206rpx;
- height: 206rpx;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-right: 35rpx;
- margin-bottom: 30rpx;
- image {
- width: 64rpx;
- height: 64rpx;
- }
- .tt-txt {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #5A5A74;
- padding-top: 35rpx;
- }
- }
- }
- }
- </style>
|