95 lines
1.5 KiB
Vue
95 lines
1.5 KiB
Vue
<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>
|