更改样式与功能

This commit is contained in:
952108534@qq.com 2022-01-19 19:36:42 +08:00
parent a38c7b6ba9
commit b1822e57a3
4 changed files with 108 additions and 66 deletions

View File

@ -32,6 +32,53 @@ ul li ol li em strong i {
.usercontentshow{ .usercontentshow{
position: relative; position: relative;
.rc-productcat {
display: flex;
align-items: center;
flex-wrap: nowrap;
ol{
display: flex;
align-items: center;
flex-flow: row;
.ts-standard-btn{
width: 7.87rem;
height: 2.25rem;
background: #FFFFFF;
border-radius: 6.25rem;
background: none;
display: flex;
align-items: center;
justify-content: center;
margin-left: 1rem;
color: #999999;
img {
height: 1rem;
}
span {
margin-left: 0.18rem;
}
}
}
.userrccat{
width: 32%;
height: 34px;
background: #ffffff;
border-radius: 100px;
display: flex;
align-items: center;
justify-content: center;
margin-left: 0;
font-size: 14px;
span {
margin-left: 3px;
}
img {
width: 24px;
height: 16px;
}
border: 2px solid #E2001A;
}
}
.userrccat{ .userrccat{
width: 32%; width: 32%;
height: 34px; height: 34px;
@ -101,48 +148,7 @@ ul li ol li em strong i {
height: 617px; height: 617px;
background: white; background: white;
z-index: 999; z-index: 999;
.rc-productcat {
display: flex;
align-items: center;
flex-wrap: nowrap;
.rc-cat {
width: 32%;
height: 34px;
background: #ffffff;
border-radius: 100px;
display: flex;
align-items: center;
justify-content: center;
margin-left: 0;
font-size: 14px;
span {
margin-left: 3px;
}
img {
width: 24px;
height: 16px;
}
}
.userrccat{
width: 32%;
height: 34px;
background: #ffffff;
border-radius: 100px;
display: flex;
align-items: center;
justify-content: center;
margin-left: 0;
font-size: 14px;
span {
margin-left: 3px;
}
img {
width: 24px;
height: 16px;
}
border: 2px solid #E2001A;
}
}
} }
@ -227,6 +233,7 @@ ul li ol li em strong i {
justify-content: center; justify-content: center;
font-size: .14rem; font-size: .14rem;
margin-right:.2rem; margin-right:.2rem;
margin-left: 16px;
span { span {
margin-left: 3px; margin-left: 3px;
} }
@ -336,6 +343,7 @@ ul li ol li em strong i {
} }
.online{ .online{
width:100%; width:100%;
margin-top: 17px;
&.bold{ &.bold{
height:0.5rem; height:0.5rem;
margin-top: 5rem; margin-top: 5rem;
@ -493,7 +501,7 @@ border-radius: 30px;
margin-left: 16px; margin-left: 16px;
} }
span { span {
margin-left: 0px; margin-left: 4px;
} }
img { img {
width: 24px; width: 24px;
@ -550,9 +558,9 @@ border-radius: 30px;
} }
*/ */
.ts-scrollable-container{ .ts-scrollable-container{
overflow-y: hidden;
overflow-x: clip;
width: 100%; width: 100%;
margin-top: 18px;
h2{ h2{
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -54,6 +54,9 @@ ul li ol li em strong i {
box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.1); box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.1);
height: 80px; height: 80px;
align-items: center; align-items: center;
position: absolute;
bottom: 0;
padding:0 20px 0 20px;
span span
{ {
width: 160px; width: 160px;
@ -176,6 +179,9 @@ strong{
// 我想搜 // 我想搜
.usercontentshow{ .usercontentshow{
position: relative; position: relative;
.rc-column{
padding-bottom: 0;
}
.rc-productcat { .rc-productcat {
display: flex; display: flex;
align-items: center; align-items: center;
@ -203,6 +209,9 @@ span {
margin-left: 0.18rem; margin-left: 0.18rem;
} }
} }
li:first-child{
margin-left: 0;
}
} }
//筛选 //筛选
.userselect{ .userselect{
@ -283,6 +292,7 @@ border-radius: 100px;
.rc-bottom{ .rc-bottom{
position: fixed; position: fixed;
background: white; background: white;
height: 617px;
bottom: 0; bottom: 0;
left: 0; left: 0;
z-index: 9; z-index: 9;

View File

@ -11,17 +11,19 @@
<div class="usercontentshow" ref="usercontent"> <div class="usercontentshow" ref="usercontent">
<div class="rc-product ts-scrollable-container"> <div class="rc-product ts-scrollable-container">
<div class="rc-productcat ts-scrollable"> <div class="rc-productcat ts-scrollable">
<div <ol>
class="rc-cat" <li
v-for="(item, index) in userproduct" v-for="(item, index) in userproduct"
:key="index" :key="index"
ref="userclicks" @click="selectGoods(item, index)"
@click="selectGoods(item, index)" :class="activeIndex == index ? 'active' : 'unactive'"
:class="activeIndex == index ? 'active' : 'unactive'" class="ts-standard-btn"
> ref="userstandard"
<img :src="item.catimage" alt="" /> >
<span>{{ item.title }}</span> <img :src="item.catimage" alt="" />
</div> <span>{{ item.title }}</span>
</li>
</ol>
</div> </div>
</div> </div>
<div class="online rc-md-up"></div> <div class="online rc-md-up"></div>
@ -297,11 +299,13 @@
<em>确认</em> <em>确认</em>
</div> </div>
</el-dialog> </el-dialog>
<MyFooter></MyFooter>
</div> </div>
</template> </template>
<script> <script>
import Myheader from "~/components/header.vue"; import Myheader from "~/components/header.vue";
import MyFooter from '~/components/rc-footer.vue'
import { import {
userstype, userstype,
biaome, biaome,
@ -314,7 +318,7 @@ export default {
value: "", value: "",
isLoading: true, isLoading: true,
userstype: [], userstype: [],
activeIndex: "0", activeIndex: "-1",
allacindex: 0, allacindex: 0,
userishwo: true, userishwo: true,
userishwo1: true, userishwo1: true,
@ -504,16 +508,20 @@ export default {
}, },
components: { components: {
Myheader, Myheader,
MyFooter
}, },
mounted() { mounted() {
let stype = this.$route.query.stype; let stype = this.$route.query.stype;
this.$nextTick(() => {
this.$refs.userstandard[0].style.margin = 0 + "px";
});
this.userst(); this.userst();
this.activeIndex = stype; // this.activeIndex = stype;
if (stype !== "" && stype !== undefined) { // if (stype !== "" && stype !== undefined) {
this.onmessage(stype); // this.onmessage(stype);
} else { // } else {
this.usetmessage(); // this.usetmessage();
} // }
}, },
methods: { methods: {
async usersearch(stype, usertype) { async usersearch(stype, usertype) {
@ -743,6 +751,9 @@ export default {
this.activeIndexa = index; this.activeIndexa = index;
}, },
selectage(item, index) { selectage(item, index) {
if(this.activeIndex=='-1'){
this.activeIndex=0;
}
let tagUsedAge = {}; let tagUsedAge = {};
this.activeIndexc = index; this.activeIndexc = index;
this.userishwo1 = !this.userishwo1; this.userishwo1 = !this.userishwo1;
@ -766,6 +777,9 @@ export default {
}, },
selectagc(item, index) { selectagc(item, index) {
// let tagFunction = {}; // let tagFunction = {};
if(this.activeIndex=='-1'){
this.activeIndex=0;
}
this.activeIndexd = index; this.activeIndexd = index;
this.userishwo2 = !this.userishwo2; this.userishwo2 = !this.userishwo2;
if (item.checked == false) { if (item.checked == false) {
@ -796,6 +810,9 @@ export default {
this.usersearch(this.userserachlist, this.activeIndex1); this.usersearch(this.userserachlist, this.activeIndex1);
}, },
selectagd(item, index) { selectagd(item, index) {
if(this.activeIndex=='-1'){
this.activeIndex=0;
}
let tagBreed = {}; let tagBreed = {};
this.activeIndexe = index; this.activeIndexe = index;
this.userishwo3 = !this.userishwo3; this.userishwo3 = !this.userishwo3;
@ -818,6 +835,9 @@ export default {
this.usersearch(this.userserachlist, this.activeIndex1); this.usersearch(this.userserachlist, this.activeIndex1);
}, },
selectproduct(item, index) { selectproduct(item, index) {
if(this.activeIndex=='-1'){
this.activeIndex=0;
}
this.activeIndexb = index; this.activeIndexb = index;
// console.log(this.userishwo=!this.userishwo) // console.log(this.userishwo=!this.userishwo)
if (item.checked == false) { if (item.checked == false) {

View File

@ -219,12 +219,13 @@
</li> </li>
</ol> </ol>
</div> </div>
<div class="rc-button">
</div>
</div>
<div class="rc-button">
<span @click="openclose()">取消</span> <span @click="openclose()">取消</span>
<em @click="openclose()">确认</em> <em @click="openclose()">确认</em>
</div> </div>
</div>
</div>
</div> </div>
</div> </div>
<el-dialog :visible.sync="dialogInfo1" hegight="700px" v-if="!isadrond"> <el-dialog :visible.sync="dialogInfo1" hegight="700px" v-if="!isadrond">
@ -312,11 +313,13 @@
</el-dialog> </el-dialog>
</div> </div>
<!-- rc-main end --> <!-- rc-main end -->
<MyFooter></MyFooter>
</div> </div>
</template> </template>
<script> <script>
import Myheader from "~/components/header.vue"; import Myheader from "~/components/header.vue";
import MyFooter from '~/components/rc-footer.vue'
import { biaome, userstype, searchchanpin } from "../../ajax/getData"; import { biaome, userstype, searchchanpin } from "../../ajax/getData";
export default { export default {
data() { data() {
@ -520,6 +523,7 @@ export default {
}, },
components: { components: {
Myheader, Myheader,
MyFooter
}, },
mounted() { mounted() {
this.usetmessage(); this.usetmessage();