first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View File

@@ -0,0 +1,94 @@
<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>