更新
This commit is contained in:
9409
common/textdata.js
9409
common/textdata.js
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@
|
|||||||
姓名
|
姓名
|
||||||
</view>
|
</view>
|
||||||
<view class="user_Right">
|
<view class="user_Right">
|
||||||
{{auth.authInfo.realName}}
|
{{ auth.authInfo.realName }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="userBaseList">
|
<view class="userBaseList">
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
性别
|
性别
|
||||||
</view>
|
</view>
|
||||||
<view class="user_Right">
|
<view class="user_Right">
|
||||||
{{auth.authInfo.sex===1?'男':'女'}}
|
{{ auth.authInfo.sex === 1 ? '男' : '女' }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="userBaseList">
|
<view class="userBaseList">
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
出生年月
|
出生年月
|
||||||
</view>
|
</view>
|
||||||
<view class="user_Right">
|
<view class="user_Right">
|
||||||
{{birthday}}
|
{{ birthday }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="userBaseList">
|
<view class="userBaseList">
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
手机号
|
手机号
|
||||||
</view>
|
</view>
|
||||||
<view class="user_Right">
|
<view class="user_Right">
|
||||||
{{auth.authInfo.telphone}}
|
{{ auth.authInfo.telphone }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="userBaseList">
|
<view class="userBaseList">
|
||||||
@@ -53,88 +53,92 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
userInfo
|
userInfo
|
||||||
} from '@/api/resume.js';
|
} from '@/api/resume.js';
|
||||||
import {
|
import {
|
||||||
dateFormat
|
dateFormat
|
||||||
} from "../../untils/format.js";
|
} from "../../untils/format.js";
|
||||||
import {
|
import {
|
||||||
mapGetters
|
mapGetters
|
||||||
} from 'vuex'
|
} from 'vuex'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
userInfo: {}
|
userInfo: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters(['auth', 'authInfo']),
|
...mapGetters(['auth', 'authInfo']),
|
||||||
birthday() {
|
birthday() {
|
||||||
return dateFormat(new Date(this.authInfo.birthday.replace(/\-/g, "/").replace('T',' ')), "yyyy-MM");
|
if (!!this.authInfo.birthday) {
|
||||||
}
|
return dateFormat(new Date(this.authInfo.birthday.replace(/\-/g, "/").replace('T', ' ')), "yyyy-MM");
|
||||||
},
|
} else {
|
||||||
onShow() {},
|
return "暂无"
|
||||||
methods: {
|
|
||||||
goSetUserBase: function() {
|
|
||||||
uni.navigateTo({
|
|
||||||
url: '../setUserBase/index'
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
onShow() { },
|
||||||
|
methods: {
|
||||||
|
goSetUserBase: function () {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '../setUserBase/index'
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.nothingText text {
|
.nothingText text {
|
||||||
color: #1B66FF;
|
color: #1B66FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nothingText {
|
.nothingText {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-family: PingFangSC-Regular;
|
font-family: PingFangSC-Regular;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
color: #666666;
|
color: #666666;
|
||||||
margin-top: 20rpx;
|
margin-top: 20rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nothing {
|
.nothing {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
width: 400rpx;
|
width: 400rpx;
|
||||||
height: 200rpx;
|
height: 200rpx;
|
||||||
margin-top: 50%;
|
margin-top: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user_Right {
|
.user_Right {
|
||||||
font-family: PingFangSC-Regular;
|
font-family: PingFangSC-Regular;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user_left {
|
.user_left {
|
||||||
font-family: PingFangSC-Regular;
|
font-family: PingFangSC-Regular;
|
||||||
font-size: 32rpx;
|
font-size: 32rpx;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.userBaseList {
|
.userBaseList {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 30rpx;
|
padding: 30rpx;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
border-bottom: 1rpx solid #dddddd;
|
border-bottom: 1rpx solid #dddddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
.userBase {
|
.userBase {
|
||||||
background-color: #fefefe;
|
background-color: #fefefe;
|
||||||
padding-left: 30rpx;
|
padding-left: 30rpx;
|
||||||
margin-top: 30rpx;
|
margin-top: 30rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
page {
|
page {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -141,7 +141,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</picker>
|
</picker>
|
||||||
<picker :range="insureList" @change="insureChange" :value="indexBao">
|
<!-- <picker :range="insureList" @change="insureChange" :value="indexBao">
|
||||||
<view class="list">
|
<view class="list">
|
||||||
<view class="listLeft">
|
<view class="listLeft">
|
||||||
<view class="name">
|
<view class="name">
|
||||||
@@ -157,7 +157,7 @@
|
|||||||
<image src="@/static/img/right.svg" mode=""></image>
|
<image src="@/static/img/right.svg" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</picker>
|
</picker> -->
|
||||||
<view v-if="auth.realNameState"></view>
|
<view v-if="auth.realNameState"></view>
|
||||||
<view class="btn nocheck" v-else-if="loading">
|
<view class="btn nocheck" v-else-if="loading">
|
||||||
<view class="bottombtn">
|
<view class="bottombtn">
|
||||||
@@ -304,6 +304,7 @@
|
|||||||
},
|
},
|
||||||
idNumberFilter,
|
idNumberFilter,
|
||||||
identityChange(val) {
|
identityChange(val) {
|
||||||
|
console.log("val",val);
|
||||||
uni.showLoading();
|
uni.showLoading();
|
||||||
this.$store.dispatch('authLabor').then(() => {
|
this.$store.dispatch('authLabor').then(() => {
|
||||||
this.realIndex = val.detail.value;
|
this.realIndex = val.detail.value;
|
||||||
|
|||||||
392
pages/my/my.vue
392
pages/my/my.vue
@@ -6,11 +6,12 @@
|
|||||||
<image v-else src="../../static/img/head.svg" mode=""></image>
|
<image v-else src="../../static/img/head.svg" mode=""></image>
|
||||||
<view class="userRight">
|
<view class="userRight">
|
||||||
<view class="userTel" v-if="userInfo.user_name">
|
<view class="userTel" v-if="userInfo.user_name">
|
||||||
{{phoneFilter(userInfo.user_name)}}
|
{{ auth.authInfo.realName ? stringFilterNum(auth.authInfo.realName, 1) :
|
||||||
|
phoneFilter(userInfo.user_name) }}
|
||||||
</view>
|
</view>
|
||||||
<view class="userTel" v-else> </view>
|
<view class="userTel" v-else> </view>
|
||||||
<view class="userContent">
|
<view class="userContent">
|
||||||
<view style="margin-right: 40rpx;">实名认证:{{auth.realNameState?'已认证':'未认证'}}</view>
|
<view style="margin-right: 40rpx;">实名认证:{{ auth.realNameState ? '已认证' : '未认证' }}</view>
|
||||||
<!-- <view>银行卡核验:{{auth.bankCardState?'已认证':'未认证'}}</view> -->
|
<!-- <view>银行卡核验:{{auth.bankCardState?'已认证':'未认证'}}</view> -->
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -99,216 +100,219 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
mapGetters
|
mapGetters
|
||||||
} from 'vuex'
|
} from 'vuex'
|
||||||
import {
|
import {
|
||||||
phoneFilter
|
phoneFilter, stringFilterNum
|
||||||
} from '@/untils/format.js'
|
} from '@/untils/format.js'
|
||||||
import {labourUnionInfo} from '@/api/federation.js'
|
import { labourUnionInfo } from '@/api/federation.js'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
federationStatus: false
|
federationStatus: false
|
||||||
}
|
|
||||||
},
|
|
||||||
onLoad() {
|
|
||||||
if (this.$store.state.user.token && this.authPass) {
|
|
||||||
this.$store.dispatch('getVipCode')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onShow() {
|
|
||||||
if (!this.$store.state.user.token) {
|
|
||||||
uni.redirectTo({
|
|
||||||
url: '/pages/login/login'
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
uni.$emit('newsReadChange')
|
|
||||||
this.$store.dispatch('refreshAuthState')
|
|
||||||
}
|
|
||||||
// this.labourUnionInfoInit()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
labourUnionInfoInit(){
|
|
||||||
labourUnionInfo().then(e=>{
|
|
||||||
this.federationStatus = e.data.data.joined
|
|
||||||
})
|
|
||||||
},
|
|
||||||
// logout() {
|
|
||||||
// this.$store.dispatch('LogOut').then(() => {
|
|
||||||
// // uni.reLaunch({
|
|
||||||
// // url: '/pages/login/login'
|
|
||||||
// // })
|
|
||||||
// this.$store.dispatch('clearAuthState')
|
|
||||||
// this.$store.dispatch('endRefreshNewsTimer')
|
|
||||||
// location.href = "https://dy12333.org.cn/h5/"
|
|
||||||
// })
|
|
||||||
// },
|
|
||||||
go(url) {
|
|
||||||
uni.navigateTo({
|
|
||||||
url
|
|
||||||
})
|
|
||||||
},
|
|
||||||
makePhoneCall: function() {
|
|
||||||
uni.makePhoneCall({
|
|
||||||
phoneNumber: "18500206848"
|
|
||||||
})
|
|
||||||
},
|
|
||||||
phoneFilter
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
...mapGetters(['userInfo', 'auth', 'authPass'])
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
onLoad() {
|
||||||
|
if (this.$store.state.user.token && this.authPass) {
|
||||||
|
this.$store.dispatch('getVipCode')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
if (!this.$store.state.user.token) {
|
||||||
|
uni.redirectTo({
|
||||||
|
url: '/pages/login/login'
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
uni.$emit('newsReadChange')
|
||||||
|
this.$store.dispatch('refreshAuthState')
|
||||||
|
}
|
||||||
|
// this.labourUnionInfoInit()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
labourUnionInfoInit() {
|
||||||
|
labourUnionInfo().then(e => {
|
||||||
|
this.federationStatus = e.data.data.joined
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// logout() {
|
||||||
|
// this.$store.dispatch('LogOut').then(() => {
|
||||||
|
// // uni.reLaunch({
|
||||||
|
// // url: '/pages/login/login'
|
||||||
|
// // })
|
||||||
|
// this.$store.dispatch('clearAuthState')
|
||||||
|
// this.$store.dispatch('endRefreshNewsTimer')
|
||||||
|
// location.href = "https://dy12333.org.cn/h5/"
|
||||||
|
// })
|
||||||
|
// },
|
||||||
|
go(url) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url
|
||||||
|
})
|
||||||
|
},
|
||||||
|
makePhoneCall: function () {
|
||||||
|
uni.makePhoneCall({
|
||||||
|
phoneNumber: "18500206848"
|
||||||
|
})
|
||||||
|
},
|
||||||
|
phoneFilter,stringFilterNum
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters(['userInfo', 'auth', 'authPass'])
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
page {
|
page {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #f6f6f6;
|
background: #f6f6f6;
|
||||||
}
|
}
|
||||||
.federation{
|
|
||||||
height: 48rpx;
|
|
||||||
border-radius: 10rpx;
|
|
||||||
padding: 28rpx 30rpx;
|
|
||||||
margin: 30rpx;
|
|
||||||
font-size: 32rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #6F5931;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
background: url(../../static/img/my/mybanner.png) no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
.forMembership{
|
|
||||||
width: 140rpx;
|
|
||||||
height: 50rpx;
|
|
||||||
background: linear-gradient(112deg, #EFE0BC 0%, #D29A5A 100%, #DDBA88 100%);
|
|
||||||
box-shadow: 0px 0px 2px 1px rgba(231, 174, 85, 0.39);
|
|
||||||
border-radius: 25rpx;
|
|
||||||
font-size: 26rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #6F5931;
|
|
||||||
line-height: 48rpx;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom {
|
|
||||||
font-family: PingFangSC-Regular;
|
|
||||||
font-size: 24rpx;
|
|
||||||
color: #999999;
|
|
||||||
/* position: absolute; */
|
|
||||||
/* bottom: 120rpx; */
|
|
||||||
/* width: 100%; */
|
|
||||||
margin: 120rpx 0;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btnList image:last-child {
|
.federation {
|
||||||
width: 19rpx;
|
height: 48rpx;
|
||||||
height: 32rpx;
|
border-radius: 10rpx;
|
||||||
margin-left: auto;
|
padding: 28rpx 30rpx;
|
||||||
margin-right: 0;
|
margin: 30rpx;
|
||||||
}
|
font-size: 32rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #6F5931;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
background: url(../../static/img/my/mybanner.png) no-repeat;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
.btnList image {
|
.forMembership {
|
||||||
width: 52rpx;
|
width: 140rpx;
|
||||||
height: 52rpx;
|
height: 50rpx;
|
||||||
margin-right: 10rpx;
|
background: linear-gradient(112deg, #EFE0BC 0%, #D29A5A 100%, #DDBA88 100%);
|
||||||
}
|
box-shadow: 0px 0px 2px 1px rgba(231, 174, 85, 0.39);
|
||||||
|
border-radius: 25rpx;
|
||||||
|
font-size: 26rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #6F5931;
|
||||||
|
line-height: 48rpx;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.btnList {
|
.bottom {
|
||||||
font-family: PingFangSC-Regular;
|
font-family: PingFangSC-Regular;
|
||||||
font-size: 32rpx;
|
font-size: 24rpx;
|
||||||
color: #333333;
|
color: #999999;
|
||||||
display: flex;
|
/* position: absolute; */
|
||||||
align-items: center;
|
/* bottom: 120rpx; */
|
||||||
justify-content: flex-start;
|
/* width: 100%; */
|
||||||
padding: 30rpx 20rpx;
|
margin: 120rpx 0;
|
||||||
}
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.btn {
|
.btnList image:last-child {
|
||||||
width: 690rpx;
|
width: 19rpx;
|
||||||
margin: 0 auto;
|
height: 32rpx;
|
||||||
border-radius: 15rpx;
|
margin-left: auto;
|
||||||
background: #fefefe;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.BarList {
|
.btnList image {
|
||||||
font-family: PingFangSC-Regular;
|
width: 52rpx;
|
||||||
font-size: 28rpx;
|
height: 52rpx;
|
||||||
color: #666666;
|
margin-right: 10rpx;
|
||||||
float: left;
|
}
|
||||||
width: 25%;
|
|
||||||
text-align: center;
|
|
||||||
padding: 30rpx 0rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.BarList image {
|
.btnList {
|
||||||
width: 52rpx;
|
font-family: PingFangSC-Regular;
|
||||||
height: 52rpx;
|
font-size: 32rpx;
|
||||||
display: block;
|
color: #333333;
|
||||||
margin: 0 auto;
|
display: flex;
|
||||||
}
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
padding: 30rpx 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
.centerBar {
|
.btn {
|
||||||
width: 690rpx;
|
width: 690rpx;
|
||||||
background-color: #fefefe;
|
margin: 0 auto;
|
||||||
border-radius: 15rpx;
|
border-radius: 15rpx;
|
||||||
overflow: hidden;
|
background: #fefefe;
|
||||||
position: absolute;
|
}
|
||||||
bottom: -70rpx;
|
|
||||||
left: 30rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.userContent {
|
.BarList {
|
||||||
font-family: PingFangSC-Regular;
|
font-family: PingFangSC-Regular;
|
||||||
font-size: 26rpx;
|
font-size: 28rpx;
|
||||||
color: #FFFFFF;
|
color: #666666;
|
||||||
display: flex;
|
float: left;
|
||||||
}
|
width: 25%;
|
||||||
|
text-align: center;
|
||||||
|
padding: 30rpx 0rpx;
|
||||||
|
}
|
||||||
|
|
||||||
.userTel {
|
.BarList image {
|
||||||
font-family: PingFangSC-Medium;
|
width: 52rpx;
|
||||||
font-size: 36rpx;
|
height: 52rpx;
|
||||||
color: #FFFFFF;
|
display: block;
|
||||||
}
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
.userRight {
|
.centerBar {
|
||||||
float: left;
|
width: 690rpx;
|
||||||
height: 50rpx;
|
background-color: #fefefe;
|
||||||
line-height: 50rpx;
|
border-radius: 15rpx;
|
||||||
}
|
overflow: hidden;
|
||||||
|
position: absolute;
|
||||||
|
bottom: -70rpx;
|
||||||
|
left: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
.userTitle image {
|
.userContent {
|
||||||
width: 100rpx;
|
font-family: PingFangSC-Regular;
|
||||||
height: 100rpx;
|
font-size: 26rpx;
|
||||||
margin-right: 20rpx;
|
color: #FFFFFF;
|
||||||
float: left;
|
display: flex;
|
||||||
border-radius: 200rpx;
|
}
|
||||||
background-color: rgba(255, 255, 255, .3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.userTitle {
|
.userTel {
|
||||||
padding: 0 30rpx;
|
font-family: PingFangSC-Medium;
|
||||||
}
|
font-size: 36rpx;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
.head {
|
.userRight {
|
||||||
background-color: #1B66FF;
|
float: left;
|
||||||
width: 100%;
|
height: 50rpx;
|
||||||
height: 200rpx;
|
line-height: 50rpx;
|
||||||
padding-top: 200rpx;
|
}
|
||||||
position: relative;
|
|
||||||
}
|
.userTitle image {
|
||||||
|
width: 100rpx;
|
||||||
.body {
|
height: 100rpx;
|
||||||
background: #f6f6f6;
|
margin-right: 20rpx;
|
||||||
height: 100%;
|
float: left;
|
||||||
position: relative;
|
border-radius: 200rpx;
|
||||||
overflow: auto;
|
background-color: rgba(255, 255, 255, .3);
|
||||||
}
|
}
|
||||||
/* .btn-out {
|
|
||||||
|
.userTitle {
|
||||||
|
padding: 0 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.head {
|
||||||
|
background-color: #1B66FF;
|
||||||
|
width: 100%;
|
||||||
|
height: 200rpx;
|
||||||
|
padding-top: 200rpx;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.body {
|
||||||
|
background: #f6f6f6;
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* .btn-out {
|
||||||
background-color: #fefefe;
|
background-color: #fefefe;
|
||||||
margin-top: 20rpx;
|
margin-top: 20rpx;
|
||||||
padding: 20rpx 0;
|
padding: 20rpx 0;
|
||||||
|
|||||||
@@ -9,10 +9,11 @@
|
|||||||
<view class="content">
|
<view class="content">
|
||||||
<view class="typeButtonWrapper">
|
<view class="typeButtonWrapper">
|
||||||
<view class="typeButtonLeft">
|
<view class="typeButtonLeft">
|
||||||
|
<view v-for="(item, index) in nonReactiveArray" :key="index"
|
||||||
<view v-for="(item, index) in nonReactiveArray" :key="index" v-show="(activeTab!=2)&&(index==1||index==0)"
|
v-show="(activeTab != 2) && (index == activeTab)"
|
||||||
:class="['typeButton', index == activeTab ? 'activeButton' : '']" @click="changeTab(index)">{{ item
|
:class="['typeButton', index == activeTab ? 'activeButton' : '']" @click="changeTab(index)">{{
|
||||||
}}</view>
|
item
|
||||||
|
}}</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- 筛选 -->
|
<!-- 筛选 -->
|
||||||
<!-- <view class="screenButton" @click="showPopUp = true">
|
<!-- <view class="screenButton" @click="showPopUp = true">
|
||||||
@@ -77,7 +78,9 @@
|
|||||||
完善技能
|
完善技能
|
||||||
</view>
|
</view>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view v-for="(item, index) in policyContentList" :key="index" style="width: 90%;height: 100rpx;background-color: #fff;border-radius: 10rpx;margin:20rpx 5% 20rpx 5%;display: flex;align-items: center" @click="goPolicyInfo(item.id)">
|
<view v-for="(item, index) in policyContentList" :key="index"
|
||||||
|
style="width: 90%;height: 100rpx;background-color: #fff;border-radius: 10rpx;margin:20rpx 5% 20rpx 5%;display: flex;align-items: center"
|
||||||
|
@click="goPolicyInfo(item.id)">
|
||||||
<image :src="item.headPic" style="width: 60rpx;height: 60rpx;margin: 0 20rpx;"></image>
|
<image :src="item.headPic" style="width: 60rpx;height: 60rpx;margin: 0 20rpx;"></image>
|
||||||
<view style="font-size: 26rpx;">{{ item.articleTitle }}</view>
|
<view style="font-size: 26rpx;">{{ item.articleTitle }}</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -99,7 +102,7 @@ import {
|
|||||||
recommendMission,
|
recommendMission,
|
||||||
nearMission
|
nearMission
|
||||||
} from '@/api/mission.js';
|
} from '@/api/mission.js';
|
||||||
import {getPolicyContent} from '@/api/newIndex.js'
|
import { getPolicyContent } from '@/api/newIndex.js'
|
||||||
import {
|
import {
|
||||||
getcoder
|
getcoder
|
||||||
} from "@/api/map.js";
|
} from "@/api/map.js";
|
||||||
@@ -108,7 +111,7 @@ import verticalMenu from '@/components/vertical-menu/vertical-menu.vue';
|
|||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
vTabs,
|
vTabs,
|
||||||
companyList,
|
companyList,
|
||||||
verticalMenu,
|
verticalMenu,
|
||||||
workList
|
workList
|
||||||
},
|
},
|
||||||
@@ -120,7 +123,7 @@ export default {
|
|||||||
companyList: [],
|
companyList: [],
|
||||||
recommendList: [],
|
recommendList: [],
|
||||||
newList: [],
|
newList: [],
|
||||||
|
|
||||||
nearPage: {
|
nearPage: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10,
|
size: 10,
|
||||||
@@ -149,7 +152,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad: function (option) {
|
onLoad: function (option) {
|
||||||
if(option.tabIndex) {
|
if (option.tabIndex) {
|
||||||
this.activeTab = option.tabIndex
|
this.activeTab = option.tabIndex
|
||||||
}
|
}
|
||||||
this.getData()
|
this.getData()
|
||||||
@@ -249,9 +252,9 @@ export default {
|
|||||||
url: '../mapSeach/mapSeach'
|
url: '../mapSeach/mapSeach'
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getPolicy(){
|
getPolicy() {
|
||||||
getPolicyContent(1).then(res=>{
|
getPolicyContent(1).then(res => {
|
||||||
this.policyContentList=res.data.data.records
|
this.policyContentList = res.data.data.records
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
changeTab: function (e) {
|
changeTab: function (e) {
|
||||||
@@ -270,16 +273,16 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
goPolicyInfo(data){
|
goPolicyInfo(data) {
|
||||||
if(data){
|
if (data) {
|
||||||
// var val=encodeURIComponent(data)
|
// var val=encodeURIComponent(data)
|
||||||
|
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url:`/pages/user/policyContent?id=${data}`
|
url: `/pages/user/policyContent?id=${data}`
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
else{
|
else {
|
||||||
// uni.showToast({
|
// uni.showToast({
|
||||||
// title:'暂无内容',
|
// title:'暂无内容',
|
||||||
// icon:'none'
|
// icon:'none'
|
||||||
@@ -396,8 +399,8 @@ export default {
|
|||||||
closePopUp() {
|
closePopUp() {
|
||||||
this.showPopUp = false
|
this.showPopUp = false
|
||||||
},
|
},
|
||||||
subMitPopUp({submitData,areaModal,industryModal}) {
|
subMitPopUp({ submitData, areaModal, industryModal }) {
|
||||||
console.log(submitData,areaModal,industryModal,"------确定");
|
console.log(submitData, areaModal, industryModal, "------确定");
|
||||||
this.showPopUp = false
|
this.showPopUp = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,7 +45,6 @@ const auth = {
|
|||||||
findAuth().then((res) => {
|
findAuth().then((res) => {
|
||||||
const data = res.data.data;
|
const data = res.data.data;
|
||||||
const authValue = data.authValue
|
const authValue = data.authValue
|
||||||
|
|
||||||
commit('SET_AUTH_LABOR', convert(authValue[0]))
|
commit('SET_AUTH_LABOR', convert(authValue[0]))
|
||||||
commit('SET_AUTH_REALNAME', convert(authValue[1]))
|
commit('SET_AUTH_REALNAME', convert(authValue[1]))
|
||||||
commit('SET_AUTH_BANKCARD', convert(authValue[2]))
|
commit('SET_AUTH_BANKCARD', convert(authValue[2]))
|
||||||
|
|||||||
@@ -75,6 +75,10 @@ export function dateFormat(date, format = 'yyyy-MM-dd') {
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function stringFilterNum(val,num) {
|
||||||
|
return val.substring(0, num) + '**' + val.substring(7)
|
||||||
|
}
|
||||||
|
|
||||||
export function phoneFilter(val) {
|
export function phoneFilter(val) {
|
||||||
return val.substring(0, 3) + '****' + val.substring(7)
|
return val.substring(0, 3) + '****' + val.substring(7)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ module.exports = {
|
|||||||
port: 1887,
|
port: 1887,
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': {
|
'/api': {
|
||||||
target: 'http://localhost:8000', // 本地服务接口地址
|
target: 'http://10.165.0.173:8000', // 本地服务接口地址
|
||||||
ws: true,
|
ws: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
'^/api': '/'
|
'^/api': '/'
|
||||||
|
|||||||
Reference in New Issue
Block a user