| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- <template>
- <view class="content">
- <top-title :titleValue="title" :btnTop="btnPos" style="width: 100%;"></top-title>
- <div class="self-inf">
- <div class="img-name-box" v-if="isAuth">
- <image :src="userHeadImg" class="heade-img" mode="aspectFill"></image>
- <p class="nickname">{{ userNickName }}</p>
- </div>
- <view class="img-name-box" v-if="!isAuth">
- <image src="/static/auth-icon.png" class="heade-img" mode="aspectFill"></image>
- <button @click="goAuthPage()" class="auth-btn">授权登录</button>
- </view>
- <image class="bg-img" :src="swiperBackground" mode="aspectFill"></image>
- <image src="../../static/Intersect.svg" class="groove-img"></image>
- </div>
- <div class="options">
- <div v-for="(item, idx) in list" :key="idx" class="options-item" @click="goDetailFn(idx, item.url)" v-if="item.isShow">
- <div class="img-box">
- <img :src="item.icoin" alt="" class="options-item-img" />
- </div>
- <div class="options-item-name":class="{ fontGrey: idx == list.length - 1 }">
- {{ item.name }}
- </div>
- </div>
- </div>
- <foot-tabs :selectedIndex='1'></foot-tabs>
- </view>
- </template>
- <script>
- import md5 from "@/common/md5.js";
- import topTitle from '@/components/top-title/top-title.vue';
- import footTabs from '@/components/foot-tabs/footTabs.vue';
- export default {
- components: {
- 'foot-tabs': footTabs,
- 'top-title': topTitle
- },
- data() {
- return {
- title: "个人中心",
- isAuth: true,
- userHeadImg: "",
- userNickName: "",
- btnPos:uni.getMenuButtonBoundingClientRect().top + 6,
- list: [
- {
- icoin: "/static/selfCenter/suggest.png",
- name: "我的诉求" ,
- url: "/pages/appeal/myAppeal",
- isShow:true,
- },
- {
- icoin: "/static/selfCenter/sign.png",
- name: "我的报名" ,
- url: "/pages/selfCenter/my_activity",
- isShow:true,
- },
- {
- icoin: "/static/selfCenter/collection.png",
- name: "我的收藏",
- url: "/pages/selfCenter/collection",
- isShow:true,
- },
- {
- icoin: "/static/selfCenter/collection.png",
- name: "工业经济指标",
- url: "/pages/metrics/index",
- isShow:true,
- },
- {
- icoin: "/static/selfCenter/back.png",
- name: "退出登录" ,
- isShow:true,
- }
- ],
- swiperBackground: "",
- };
- },
- onLoad() {
- this.getSwiperList();
- //this.$forceUpdate();
- },
- onShow() {
- // this.isAuth = getApp().globalData.isAuth;
- // if(this.isAuth){
- // this.userHeadImg = getApp().globalData.user_headUrl;
- // this.userNickName = getApp().globalData.user_name;
- // }
- this.getUserInfo();
- },
- methods: {
- goAuthPage() {
- uni.navigateTo({
- url: "../auth/index",
- });
- },
- goDetailFn(index, url) {
- let that = this;
- if(!that.isAuth){
- uni.showToast({
- title: "您还没有登录授权",
- duration: 2500,
- icon: "none",
- });
- return;
- }
- switch (index) {
- case 0: //我的建议
- uni.navigateTo({
- url,
- });
- break;
- case 1: //我的报名
- uni.navigateTo({
- url,
- });
- break;
- case 2: //我的收藏
- uni.navigateTo({
- url,
- });
- break;
- case 3: //经济指标
- uni.navigateTo({
- url,
- });
- break;
- case 4: //退出登录
- uni.showModal({
- title: "确定退出登录吗?",
- success(res) {
- if (res.confirm) {
- that.loginOut();
- } else if (res.cancel) {
- console.log("用户点击取消");
- }
- },
- });
- break;
- }
- },
- loginOut() {
- let md5Sign = md5(
- "method=" +
- "user" +
- "×tamp=" +
- getApp().globalData.globalTimestamp +
- "&secret=" +
- getApp().globalData.secret
- );
- let url =
- getApp().globalData.shareUrl +
- "api/api.php" +
- "?method=user&action=logout×tamp=" +
- getApp().globalData.globalTimestamp +
- "&sign=" +
- md5Sign;
- uni.request({
- url: url,
- method: "POST",
- header: {
- "content-type": "application/x-www-form-urlencoded",
- },
- data: {
- openId: getApp().globalData.open_id,
- },
- success: (res) => {
- if (res.data.code === 200) {
- this.isAuth = false;
- getApp().globalData.isAuth = false;
- getApp().globalData.user_headUrl = "";
- getApp().globalData.user_name = "";
- getApp().globalData.user_phone = "";
- this.list[4].isShow = false;
- //this.$forceUpdate();
- uni.showToast({
- title: "退出登录成功",
- duration: 2500,
- icon: "none",
- });
- }
- },
- fail: () => {
- console.log("连接失败");
- },
- });
- },
- getUserInfo() {
- let md5Sign = md5(
- "method=" +
- "user" +
- "×tamp=" +
- getApp().globalData.globalTimestamp +
- "&secret=" +
- getApp().globalData.secret
- );
- let url =
- getApp().globalData.shareUrl +
- "api/api.php" +
- "?method=user&action=info_by_openid×tamp=" +
- getApp().globalData.globalTimestamp +
- "&sign=" +
- md5Sign;
- uni.request({
- url: url,
- method: "POST",
- header: {
- "content-type": "application/x-www-form-urlencoded",
- },
- data: {
- openId: getApp().globalData.open_id,
- },
- success: (res) => {
- if (res.data.code === 200) {
- if (res.data.data.nickname) {
- this.isAuth = true;
- this.userHeadImg = res.data.data.headimg;
- this.userNickName = res.data.data.nickname;
- getApp().globalData.user_phone = res.data.data.phone;
- getApp().globalData.globalAuth = true;
- if(res.data.data.phone === '13630230648'){
- this.list[4].isShow = true;
- }
- } else {
- this.isAuth = false;
- getApp().globalData.globalAuth = false;
- }
- }
- },
- fail: () => {
- console.log("连接失败");
- },
- });
- },
- getSwiperList() {
- let md5Sign = md5(
- "method=" +
- "common" +
- "×tamp=" +
- getApp().globalData.globalTimestamp +
- "&secret=" +
- getApp().globalData.secret
- );
- let url =
- getApp().globalData.shareUrl +
- "api/api.php" +
- "?method=common&source=main_pics&action=list×tamp=" +
- getApp().globalData.globalTimestamp +
- "&sign=" +
- md5Sign;
- uni.request({
- url: url,
- method: "POST",
- header: {
- "content-type": "application/x-www-form-urlencoded",
- },
- data: {
- order_by: "weight desc",
- s_status: 1,
- },
- success: (res) => {
- if (res.data.code === 200) {
- this.swiperBackground =
- getApp().globalData.shareUrl + res.data.data.list[0].pic_path;
- }
- },
- fail: () => {
- console.log("连接失败");
- },
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .content {
- display: flex;
- flex-direction: column;
- .self-inf {
- position: relative;
- height: 440rpx;
- width: 100%;
- display: flex;
- margin-bottom: 80rpx;
- border-radius: 0rpx 0rpx 100% 100%;
- .img-name-box {
- height: 150rpx;
- margin-top:80rpx;
- display: flex;
- align-items: center;
- z-index: 99999;
- .auth-btn {
- margin-left: 30rpx;
- margin-top: 20rpx;
- font-size: 28rpx;
- background-color: #02a7f0;
- color: #fff;
- }
- .heade-img {
- z-index: 1;
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- margin-left: 80rpx;
- }
- }
- .bg-img {
- z-index: -1;
- position: absolute;
- width: 100%;
- height: 100%;
- // border-radius: 0rpx 0rpx 70rpx 70rpx;
- }
- .groove-img {
- width: 100%;
- height: 100rpx;
- bottom: -22rpx;
- position: absolute;
- }
- .nickname {
- font-weight: 600;
- font-size: 28rpx;
- margin-left: 30rpx;
- margin-top: 20rpx;
- color: #ffffff;
- letter-spacing: 1rpx;
- }
- }
- .options {
- padding: 70rpx;
- z-index: 99;
- position: relative;
- top: -270rpx;
- .options-item {
- background-color: #fff;
- display: flex;
- box-shadow: 0px 4rpx 32rpx rgba(0, 0, 0, 0.1);
- border-radius: 32rpx;
- margin-top: 20px;
- height: 150rpx;
- align-items: center;
- .img-box {
- margin-left: 40rpx;
- .options-item-img {
- width: 56rpx;
- height: 56rpx;
- }
- }
- .options-item-name {
- margin-left: 40rpx;
- font-weight: 600;
- font-size: 30rpx;
- margin-bottom: 10rpx;
- }
- }
- }
- }
- .fontGrey {
- color: $uni-text-color-grey;
- }
- </style>
|