部分bug修改

master
mabo 2021-07-05 17:53:23 +08:00
parent cc1afed902
commit fc393ecd64
6 changed files with 31 additions and 29 deletions

View File

@ -29,6 +29,9 @@
{{ skuDetail.goodsName }}
</p>
</div>
<div class="sell-point">
{{skuDetail.sellingPoint}}
</div>
<!-- 限时秒杀 -->
<Promotion v-if="promotionMap['SECKILL']" :time="promotionMap['SECKILL'].endTime"></Promotion>
<!-- 商品详细 价格优惠券促销 -->
@ -655,5 +658,10 @@ export default {
}
}
}
.sell-point {
font-size: 12px;
color: red;
margin-bottom: 5px;
}
/******************商品图片及购买详情结束******************/
</style>

View File

@ -92,7 +92,7 @@
<span class="ml_10">{{item.groupName}}</span>
<table class="mb_10" cellpadding='0' border="1" cellspacing="0" >
<tr v-for="param in item.goodsParamsItemDTOList" :key="param.paramId">
<td style="text-align:right">{{param.paramName}}</td><td>{{param.paramValue}}</td>
<td style="text-align: center">{{param.paramName}}</td><td>{{param.paramValue}}</td>
</tr>
</table>
</div>
@ -492,14 +492,14 @@ table{
border-color:#efefef;
color: #999;
min-width: 30%;
margin-left: 10px;
margin-left: 30px;
font-size: 12px;
tr{
td:nth-child(1){
min-width: 70px;
width: 100px;
}
td:nth-child(2){
padding-left: 10px;
padding-left: 20px;
}
}
td{
@ -508,7 +508,6 @@ table{
}
.goods-params {
display: flex;
align-items: center;
border-bottom: 1px solid #eee;
margin-left: 30px;
span{color:#999}

View File

@ -5,11 +5,8 @@
<div v-if="list.length">
<template v-for="(item) in list">
<div class="goodsItem" :key="item.skuId">
<div class="goodsImg hover-pointer">
<img
:src="params.type === 'GOODS'? item.image : item.logo"
alt=""
/>
<div class="goodsImg hover-pointer" v-if="params.type === 'GOODS'">
<img :src="item.image" />
</div>
<div class="goodsTitle hover-pointer">
{{params.type === 'GOODS'? item.goodsName : item.storeName}}

View File

@ -17,14 +17,14 @@ export default {
* @description api请求基础路径
*/
api_dev: {
// common: "https://common-api.pickmall.cn",
// buyer: "https://buyer-api.pickmall.cn",
// seller: "https://store-api.pickmall.cn",
// manager: "https://admin-api.pickmall.cn"
common: 'http://192.168.0.109:8890',
buyer: 'http://192.168.0.109:8888',
seller: 'http://192.168.0.109:8889',
manager: 'http://192.168.0.109:8887'
common: "https://common-api.pickmall.cn",
buyer: "https://buyer-api.pickmall.cn",
seller: "https://store-api.pickmall.cn",
manager: "https://admin-api.pickmall.cn"
// common: 'http://192.168.0.105:8890',
// buyer: 'http://192.168.0.105:8888',
// seller: 'http://192.168.0.105:8889',
// manager: 'http://192.168.0.105:8887'
},
api_prod: {
common: "https://common-api.pickmall.cn",

View File

@ -141,12 +141,14 @@
this.modalVisible = true;
},
edit(v) {
console.log(v);
this.modalType = 1;
this.modalTitle = "编辑";
this.formAdd.id = v.id;
this.formAdd.articleCategoryName = v.articleCategoryName;
this.formAdd.level = v.level;
this.formAdd.parentId = v.parentId;
this.formAdd.sort = v.sort;
this.showParent = false;
this.modalVisible = true;
},

View File

@ -167,7 +167,6 @@
<Icon type="ios-camera" size="20"></Icon>
</div>
</Upload>
<!-- <upload-pic-thumb v-model="baseInfoForm.goodsGalleryFiles" :multiple="true"></upload-pic-thumb> -->
<Modal title="View Image" v-model="goodsPictureVisible">
<img :src="previewGoodsPicture" v-if="goodsPictureVisible" style="width: 100%"/>
@ -227,7 +226,7 @@
.ivu-table-overflowX {
overflow-x: hidden;
}
" :span-method="handleSpan">
">
<template slot-scope="{ row }" slot="sn">
<Input v-model="row.sn" placeholder="请输入货号" @on-change="updateSkuTable(row, 'sn')"/>
</template>
@ -886,6 +885,7 @@ export default {
this.baseInfoForm.goodsGalleryFiles.filter((i) => i.url !== file.url);
},
updateSkuPicture() {
this.baseInfoForm.regeneratorSkuFlag = true;
let _index = this.selectedSku._index;
this.skuTableData[_index] = this.selectedSku;
},
@ -900,11 +900,10 @@ export default {
this.previewPicture = file.url;
}
},
handleSuccessGoodsPicture(res, file) {
if (file.response) {
file.url = file.response.result;
this.baseInfoForm.goodsGalleryFiles.push(file);
}
handleSuccessGoodsPicture(res, file, fileList) {
console.log(res, file, fileList);
file.url = res.result;
this.baseInfoForm.goodsGalleryFiles = fileList;
},
handleFormatError(file) {
this.$Notice.warning({
@ -1365,13 +1364,10 @@ export default {
}
}
},
//
handleSpan({row, column, rowIndex, columnIndex}) {
},
/** 数据改变之后 抛出数据 */
updateSkuTable(row, item) {
let index = row._index;
this.baseInfoForm.regeneratorSkuFlag = true;
// this.skuTableData[index][item] = row[item];
/** 进行自定义校验 判断是否是数字(小数也能通过)重量 */
if (item === "weight") {