Merge branch 'master' of gitee.com:beijing_hongye_huicheng/lilishop-ui

master
misworga831 2023-09-19 09:37:04 +08:00
commit 8666254ffe
10 changed files with 61 additions and 30 deletions

View File

@ -72,14 +72,24 @@
</Modal> </Modal>
</div> </div>
</FormItem> </FormItem>
<FormItem label="商品视频">
<video
v-if="goods.goodsVideo"
controls
class="player"
:src="goods.goodsVideo"
/>
</FormItem>
<FormItem label="商品规格"> <FormItem label="商品规格">
<Table :columns="skuColumn" :data="skuData"> <Table :columns="skuColumn" :data="skuData">
<template slot="showImage" slot-scope="scope"> <template slot="showImage" slot-scope="scope">
<div style="margin-top: 5px; height: 80px; display: flex"> <div style="margin-top: 5px; display: flex">
<div> <div>
<img <img
:src="scope.row.image" v-for="(item,index) in scope.row.image"
style="height: 60px; margin-top: 1px; width: 60px" :key="index"
:src="item"
style="height: 60px; margin:10px; width: 60px"
/> />
</div> </div>
</div> </div>
@ -191,7 +201,8 @@ export default {
weight: sku.weight, weight: sku.weight,
cost: sku.cost, cost: sku.cost,
price:sku.price, price:sku.price,
image: sku.thumbnail, image: sku.goodsGalleryList,
quantity:sku.quantity
}); });
}); });
if (res.result.salesModel === "WHOLESALE" && res.result.wholesaleList) { if (res.result.salesModel === "WHOLESALE" && res.result.wholesaleList) {
@ -214,9 +225,12 @@ export default {
{ {
title: "价格", title: "价格",
key: "price", key: "price",
render: (h, params) => { render: (h, params) => {v
return h("priceColorScheme", {props:{value:params.row.price,color:this.$mainColor}} ); return h("priceColorScheme", {props:{alue:params.row.price,color:this.$mainColor}} );
}, },
},{
title: "库存",
key: "quantity",
} }
); );
} }

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="search"> <div class="search">
<Card> <Card>
<Form ref="searchForm" @keydown.enter.native="handleSearch" :model="searchForm" inline :label-width="70" <Form ref="searchForm" @submit.native.prevent @keydown.enter.native="handleSearch" :model="searchForm" inline :label-width="70"
class="search-form"> class="search-form">
<Form-item label="品牌名称"> <Form-item label="品牌名称">
<Input type="text" v-model="searchForm.name" placeholder="请输入品牌名称" clearable style="width: 200px"/> <Input type="text" v-model="searchForm.name" placeholder="请输入品牌名称" clearable style="width: 200px"/>

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="search"> <div class="search">
<Card> <Card>
<Form @keydown.enter.native="handleSearch" ref="searchForm" :model="searchForm" inline :label-width="70" <Form @submit.native.prevent @keydown.enter.native="handleSearch" ref="searchForm" :model="searchForm" inline :label-width="70"
class="search-form"> class="search-form">
<Form-item label="规格名称" prop="specName"> <Form-item label="规格名称" prop="specName">
<Input type="text" v-model="searchForm.specName" placeholder="请输入规格名称" clearable style="width: 200px" /> <Input type="text" v-model="searchForm.specName" placeholder="请输入规格名称" clearable style="width: 200px" />

View File

@ -151,7 +151,7 @@
<img :src="complaintInfo.goodsImage" height="60px"> <img :src="complaintInfo.goodsImage" height="60px">
</dt> </dt>
<dd> <dd>
<a>{{complaintInfo.goodsName}}</a><br> <a @click="linkTo(complaintInfo.goodsId, complaintInfo.skuId)">{{complaintInfo.goodsName}}</a><br>
<span>{{complaintInfo.goodsPrice}} * {{complaintInfo.num}}(数量)</span> <span>{{complaintInfo.goodsPrice}} * {{complaintInfo.num}}(数量)</span>
</dd> </dd>
</dl> </dl>

View File

@ -566,10 +566,11 @@ export default {
onOk: () => { onOk: () => {
let ids = []; let ids = [];
this.selectedGoods.forEach(function (e) { this.selectedGoods.forEach(function (e) {
ids.push(e.id); ids.push(e.skuId);
}); });
this.form.promotionGoodsList = this.form.promotionGoodsList.filter((item) => { this.form.promotionGoodsList = this.form.promotionGoodsList.filter((item) => {
return !ids.includes(item.id); return !ids.includes(item.skuId);
}); });
}, },
}); });

View File

@ -199,6 +199,7 @@
<Icon type="ios-cloud-upload" size="102" style="color: #3399ff"></Icon> <Icon type="ios-cloud-upload" size="102" style="color: #3399ff"></Icon>
<h2>选择或拖拽文件上传</h2> <h2>选择或拖拽文件上传</h2>
</div> </div>
<Spin fix v-if="spinShow"></Spin>
</Upload> </Upload>
<Button @click="exportGoods" type="text" style="color: red">下载导入模板</Button> <Button @click="exportGoods" type="text" style="color: red">下载导入模板</Button>
</div> </div>
@ -222,13 +223,14 @@ import {
} from "@/api/goods"; } from "@/api/goods";
import { baseUrl } from "@/libs/axios.js"; import { baseUrl } from "@/libs/axios.js";
import * as API_Shop from "@/api/shops"; import * as API_Shop from "@/api/shops";
import Cookies from "js-cookie";
import {uploadGoodsExcel} from "../../../api/goods"; import {uploadGoodsExcel} from "../../../api/goods";
export default { export default {
name: "goods", name: "goods",
data() { data() {
return { return {
spinShow:false,
accessToken: {}, // token accessToken: {}, // token
importModal: false, importModal: false,
action: baseUrl + "/goods/import/import", // action: baseUrl + "/goods/import/import", //
@ -546,15 +548,11 @@ export default {
async upload() { async upload() {
let fd = new FormData(); let fd = new FormData();
fd.append("files", this.file); fd.append("files", this.file);
this.spinShow = false
let res = await uploadGoodsExcel(fd); let res = await uploadGoodsExcel(fd);
if (res.success) { if (res.success) {
this.stepList.map((item) => { this.spinShow = true
item.checked = false;
this.$Message.success("导入成功") this.$Message.success("导入成功")
this.importModal = false
});
this.stepList[2].checked = true;
} }
}, },
openImportGoods(){ openImportGoods(){

View File

@ -277,9 +277,14 @@ export default {
this.getDataList(); this.getDataList();
}, },
handleReset() { handleReset() {
this.searchForm = {}; this.searchForm = {
//
pageNumber: 1, //
pageSize: 10, //
sort: "startTime", //
order: "desc", //
};
this.selectDate = ""; this.selectDate = "";
this.searchForm.pageNumber = 1;
this.getDataList(); this.getDataList();
}, },
clearSelectAll() { clearSelectAll() {

View File

@ -168,9 +168,13 @@ export default {
// //
handleReset () { handleReset () {
this.selectDate = ""; this.selectDate = "";
this.searchForm = {}; this.searchForm = {
this.searchForm.pageNumber = 1; //
this.searchForm.pageSize = 10; pageNumber: 1, //
pageSize: 10, //
sort: "startTime", //
order: "desc", //
};
this.getDataList(); this.getDataList();
}, },
// //

View File

@ -205,10 +205,15 @@ export default {
}, },
// //
handleReset() { handleReset() {
this.searchForm = {}; this.searchForm = {
//
pageNumber: 0, //
pageSize: 10, //
sort: "startTime",
order: "desc", //
};
this.selectDate = ""; this.selectDate = "";
this.searchForm.pageNumber = 0;
this.searchForm.pageSize = 10;
this.getDataList(); this.getDataList();
}, },
// //

View File

@ -145,10 +145,14 @@ export default {
}, },
// //
handleReset () { handleReset () {
this.searchForm = {}; this.searchForm = {
//
pageNumber: 1, //
pageSize: 10, //
sort: "startTime",
order: "desc", //
};
this.selectDate = ""; this.selectDate = "";
this.searchForm.pageNumber = 1;
this.searchForm.pageSize = 10;
this.getDataList(); this.getDataList();
}, },
// //