Commit 3c03c3bf authored by Zheng Shang Jun's avatar Zheng Shang Jun

bug修改1

parent 75fc03cf
...@@ -92,11 +92,11 @@ export default { ...@@ -92,11 +92,11 @@ export default {
methods: { methods: {
// 搜索按钮 // 搜索按钮
searchCli() { searchCli() {
this.$router.push("/pages/home/search"); this.$Router.push("/pages/home/search");
}, },
// 每日更新跳转 // 每日更新跳转
headTab() { headTab() {
this.$router.push("/pages/brands/everyDay"); this.$Router.push("/pages/brands/everyDay");
}, },
//更新 //更新
update() { update() {
...@@ -178,12 +178,10 @@ export default { ...@@ -178,12 +178,10 @@ export default {
.imgList { .imgList {
overflow-x: auto; overflow-x: auto;
white-space: nowrap; white-space: nowrap;
display: flex;
image { image {
width: 240rpx; width: 240rpx;
height: 160rpx; height: 160rpx;
border-radius: 5px; border-radius: 10rpx;
padding-left: 20.3rpx; padding-left: 20.3rpx;
} }
} }
......
<template> <template>
<view class="whole"> <view class="whole">
<view class="hots" v-for="(item, index) in recordsList" :key="index"> <view class="hots" v-for="(item, index) in recordsList" :key="index">
<!-- <image
class="indexhot"
:src="`${imgUrl}${item.originalImageCode}`"
@click="tabdetail(item)"
mode="aspectFill"
></image> -->
<image <image
class="indexhot" class="indexhot"
:src="item.imags" :src="`${imgUrl}${item.originalImageCode}`"
@click="tabdetail(item)" @click="tabdetail(item)"
mode="aspectFill" mode="aspectFill"
></image> ></image>
...@@ -73,7 +67,7 @@ export default { ...@@ -73,7 +67,7 @@ export default {
}, },
// 跳转到详情 // 跳转到详情
tabdetail(item) { tabdetail(item) {
this.$router.push("/pages/brands/detail?id=" + item.id); this.$Router.push("/pages/brands/detail?id=" + item.id);
}, },
//收藏款式接口 //收藏款式接口
collectionFn(item) { collectionFn(item) {
......
...@@ -112,7 +112,7 @@ export default { ...@@ -112,7 +112,7 @@ export default {
// 采样按钮 // 采样按钮
samplingFn() { samplingFn() {
this.show = true; this.show = true;
this.supplierFn(this.$route.query.id); this.supplierFn(this.$Route.query.id);
}, },
// 取消 // 取消
cancel() { cancel() {
...@@ -179,8 +179,9 @@ $main-color: #fff; ...@@ -179,8 +179,9 @@ $main-color: #fff;
} }
.sampling { .sampling {
position: fixed; position: fixed;
left: 0;
bottom: 0; bottom: 0;
width: 750rpx; width: 100%;
height: 100rpx; height: 100rpx;
background: #ffffff; background: #ffffff;
box-shadow: 0px -2px 3px 0px rgba(178, 182, 214, 0.1); box-shadow: 0px -2px 3px 0px rgba(178, 182, 214, 0.1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment