!22 2022-1-17 Leung

Merge pull request !22 from Admin/sit-Leung
This commit is contained in:
Admin 2022-01-17 11:20:15 +00:00 committed by Gitee
commit 7904965283
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
18 changed files with 82 additions and 28664 deletions

View File

@ -132,7 +132,7 @@ margin-top: 8px;
}
.rc-footer {
display: flex;
align-items:flex-end
align-items:flex-end;
span {
width: 72px;
height: 25px;

View File

@ -150,11 +150,9 @@ img, picture {
flex-wrap: nowrap;
text-align: center;
width: 86%;
&::-webkit-scrollbar{
display:none;
}
li{
border-radius: 100px;
flex-shrink:0;
}
}
.active{
@ -344,6 +342,9 @@ img, picture {
font-size:.75rem;
line-height: 1.375rem;
}
&::-webkit-scrollbar{
display:none;
}
}
}
@ -384,7 +385,7 @@ img, picture {
}
}
img{
width:20rem;
width:21.7vw;
max-width:320px;
min-width:160px;
}
@ -496,12 +497,30 @@ img, picture {
{
li
{
margin-left: 40px;
margin-left: 30px;
width: 8.125rem;
height: 2.5rem;
line-height: 40px;
font-size: .875rem;
}
/*
&::-webkit-scrollbar{
background:unset;
height:4px;
}
&::-webkit-scrollbar-thumb{
background-color:#d7d7d7;
height:2px;
}
&::-webkit-scrollbar-track{
background-color:ddd;
height:2px;
}
&::-webkit-scrollbar-button{
background:unset;
}
*/
}
}

View File

@ -125,7 +125,6 @@
height: 26.31rem;
width: 100%;
font-size: 0.20px;
line-height: 1.50rem;
text-align: center;
position: relative;
}
@ -338,7 +337,6 @@ object-fit: cover;
height: 100%;
width: 100%;
font-size: 1.25rem;
line-height: 9.375rem;
text-align: center;
@ -528,7 +526,6 @@ img{
cursor: pointer;
font-size: 16px;
text-align: center;
margin-left:1.3vw;
}
}

View File

@ -140,6 +140,7 @@ ul li ol li em strong i {
}
.rc-cordd{
color:#666666;
position:relative;
span{
display: inline-block;
margin-top: 16px;
@ -249,6 +250,13 @@ ul li ol li em strong i {
width: 440px;
height: 652px;
}
.ts-mypersonal{
margin-left:0;
.rc-column{
padding-left:0;
padding-right:0;
}
}
.online{
margin:40px auto;
}
@ -366,13 +374,25 @@ ul li ol li em strong i {
background: #D7D7D7;
margin-top: 16px;
border-radius: 4px;
position:relative;
margin-top:3.32rem;
.r-block{
width: 0%;
height: 100%;
background: #008900;
}
.ts-point-tag{
background:url("../image/img-pointBg.png") no-repeat center top;
background-size:contain;
height:2.375rem;
width:3.625rem;
text-align:center;
position:absolute;
font-size:.875rem;
line-height:2rem;
left:0;
top:-2.6rem;
}
}
.rc-value{
display: flex;

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -50,7 +50,6 @@ export default {
plugins: [
'@/plugins/vant',
'@/plugins/ElementUI',
{ src: "~/plugins/swiper.js", ssr: false },
{ src: '@/plugins/localStorage', ssr: false },

File diff suppressed because it is too large Load Diff

View File

@ -16,12 +16,10 @@
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@vant/touch-emulator": "^1.3.2",
"amfe-flexible": "^2.2.1",
"core-js": "^3.15.1",
"element-ui": "^2.15.6",
"ip": "^1.1.5",
"jquery": "^3.6.0",
"less": "^4.1.2",
"less-loader": "^6.0.0",
"nuxt": "^2.15.7",
@ -29,7 +27,8 @@
"qrcodejs2": "^0.0.2",
"vant": "^2.12.22",
"vue-awesome-swiper": "^4.1.1",
"vuex-persistedstate": "^4.1.0"
"vuex-persistedstate": "^4.1.0",
"swiper":"^5.4.5"
},
"devDependencies": {
"@vant/area-data": "^1.1.5",

View File

@ -1330,10 +1330,6 @@
this.gotop = false;
this.searchBar=true
}
}
},
toTop() {
let top = document.documentElement.scrollTop || document.body.scrollTop;

View File

@ -47,6 +47,7 @@
<div class="rc-cordd">
<span>距离升级还差:</span> <span class="lackOfPoint">{{ rcvalue }}</span>
<div class="block">
<div class="ts-point-tag rc-md-up">0</div>
<div class="r-block" ref="userblock"></div>
<!-- <el-slider v-model="value" range show-stops :max="10"> </el-slider> -->
@ -129,7 +130,7 @@
<MyFooter></MyFooter>
</div>
@ -138,6 +139,7 @@
<script>
import Myheader from '~/components/header.vue'
import MyFooter from '~/components/rc-footer.vue'
import tabs from "@/components/tabs.vue";
export default {
middleware: 'metaTitle',
@ -201,7 +203,8 @@ export default {
},
components: {
Myheader,
tabs,
MyFooter,
tabs
},
watch:{
@ -405,7 +408,15 @@ this.$router.push({
this.usrnewlist=this.goldmedal;
userwidth=100
}
this.$refs.userblock.style.width=userwidth+'%'
this.$refs.userblock.style.width=userwidth+'%';
let tagEle=document.querySelector('.ts-point-tag');
if(tagEle){
tagEle.innerText=this.userid.availiblePoint;
let tagEleLeft=userwidth-1;
if(tagEleLeft<=0)
tagEleLeft=0;
tagEle.style.left=tagEleLeft+"%";
}
} else{
console.log('---');
this.userid=[];

View File

@ -7,9 +7,6 @@
<div class="online" id="fixed-catbar-seperator"></div>
<div class="rc-top"></div>
<div class="rc-usermain ts-product-detail rc-max-width--xl rc-layout-container rc-two-column rc-border-bottom rc-border-colour--brand4">
<!--
<magnifier v-bind:parentmsg="msg" ></magnifier>
-->
<div class="rc-column">
<div data-js-carousel="" data-image-gallery="true">
<div class="rc-carousel rc-carousel__gallery-image" data-zoom-container="328b2e5f-6904-4cac-9709-51ed18d2500f" data-zoom-factor="2">
@ -223,7 +220,6 @@
<script>
import Myheader from "~/components/header.vue";
import magnifier from "@/components/magnifier.vue";
import tabs from "@/components/tabs.vue";
import unlogin from "~/components/unlogin.vue";
import { mapMutations } from "vuex";
@ -320,7 +316,6 @@ export default {
components: {
Myheader,
tabs,
magnifier,
unlogin,
Myfooter

View File

@ -1,4 +0,0 @@
import Vue from 'vue'
import VueAwesomeSwiper from 'vue-awesome-swiper'
Vue.use(VueAwesomeSwiper)

View File

Before

Width:  |  Height:  |  Size: 85 KiB

After

Width:  |  Height:  |  Size: 85 KiB

View File

Before

Width:  |  Height:  |  Size: 170 KiB

After

Width:  |  Height:  |  Size: 170 KiB

View File

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB

View File

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 136 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

Before

Width:  |  Height:  |  Size: 286 KiB

After

Width:  |  Height:  |  Size: 286 KiB