Files
CompanyProject/金壶/appV1/pages/my/goauthentication.vue
2024-09-27 01:32:49 +08:00

95 lines
1.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<!-- 购物车 页面 -->
<view class="content w-100 h-100 position-relative">
<view class="header bg-linear-gradient x-text-white text-center ">
认证
<view class="edit_shoppingCar" @click="modification">修改</view>
</view>
<view class="img ">
<image class="Pview img" src="../../static/1000.jpg" mode=""></image>
</view>
</view>
</template>
<script>
import HeaderTop from '../../components/HeaderTop/HeaderTop.vue'
// import {Config} from '@/utils/config'
export default {
data() {
return {
isEdit: false, // 判断是否编辑购物车true为编辑false为不编辑
}
},
comments: {
HeaderTop
},
onLoad() {
},
mounted() {
},
methods: {
//去结算
to_updata(){
uni.navigateTo({
url:'./Eauthentication'
})
},
// 登录
to_login() {
uni.navigateTo({
url: 'x_login'
});
},
// 修改
modification(){
uni.navigateTo({
url:'Eauthentication'
})
}
}
}
</script>
<style lang="scss">
.content {
.header {
height: 148upx;
font-size: 32upx;
position: relative;
line-height: 194upx;
.edit_shoppingCar {
position: absolute;
bottom: -48upx;
right: 31upx;
}
}
.img{
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -100px;
width: 100px;
height: 100x;
background: green;
}
.Pview{
width: 585upx;
height: 322upx;
}
}
</style>