订单管理所有模块以及商品管理BUG修改

zhc4dev
Gitea 2 years ago
parent 7f5093021e
commit abb2a02a5d
  1. 34
      ant-design-vue-jeecg/src/views/shopping/shopHome.vue

@ -88,8 +88,8 @@
</div>
<div class="box" v-for="(item, index) in clothList2" :key="index">
<img :src="item.imgUrl" alt="" />
<p class="box1">CLOTHING NAM</p>
<p class="box2">15分钟前定制</p>
<p class="box1">{{item.title}}</p>
<p class="box2">{{item.time}}</p>
</div>
</a-carousel>
<div class="more d-flex" style="padding-top: 20px">
@ -124,7 +124,7 @@
>
<img :src="item.imgUrl" alt="" />
<p class="title_6">
{{ item.title1 }}<span class="line">|</span>{{ item.title1 }}
{{ item.title1 }}<span class="line">|</span>{{ item.title2 }}
</p>
<div>
<el-tag type="warning" size="small">{{ item.tag1 }}</el-tag
@ -151,7 +151,7 @@
>
<img :src="item.imgUrl" alt="" />
<p>
{{ item.title1 }}<span class="line">|</span>{{ item.title1 }}
{{ item.title1 }}<span class="line">|</span>{{ item.title2 }}
</p>
<div>
<el-tag type="warning" size="small">{{ item.tag1 }}</el-tag
@ -178,7 +178,7 @@
>
<img :src="item.imgUrl" alt="" />
<p>
{{ item.title1 }}<span class="line">|</span>{{ item.title1 }}
{{ item.title1 }}<span class="line">|</span>{{ item.title2 }}
</p>
<div>
<el-tag type="warning" size="small">{{ item.tag1 }}</el-tag
@ -215,6 +215,8 @@
activeName: "first",
url: {
zxdz: "/zygoods/zyGoods/zxdz",
tjsp: "/zygoods/zyGoods/tjsp",
fzlx: "/zygoods/zyGoods/fzlx",
},
//
imgList: [
@ -630,11 +632,27 @@
this.vh = window.screen.availHeight - 100;
getAction(this.url.zxdz).then((res) => {
if (res.success) {
console.log(res.result);
this.clothList = res.result;
}else{
this.$message.error(res.message);
}
});
getAction(this.url.tjsp).then((res) => {
if (res.success) {
this.clothList2 = res.result;
}else{
this.$message.error(res.message);
}
});
getAction(this.url.fzlx).then((res) => {
if (res.success) {
console.log(res.result)
this.nanzhuang = res.result.nz;
this.nvzhuang = res.result.nvz;
this.tongzhuang = res.result.tz;
}else{
this.$message.error(res.message);
}
})
},
}
@ -863,18 +881,16 @@
padding-bottom: 10px;
}
.section5 .tabs .jz {
justify-content: flex-start;
justify-content: space-between;
flex-wrap: wrap;
}
.section5 .tabs .jz .item {
background-color: #fff;
width: 19%;
min-width: 270px;
flex-direction: column;
align-items: center;
padding-bottom: 30px;
margin-bottom: 30px;
margin-right: 11px;
}
.section5 .tabs .jz .item img {
width: 80%;

Loading…
Cancel
Save