会员中心添加首页按钮,pclogo改为阿里云地址,编辑折扣券没有传折扣值,
parent
f512caa81d
commit
75bff1edc4
|
@ -7,7 +7,6 @@
|
||||||
<script>
|
<script>
|
||||||
import {v4 as uuidv4} from 'uuid';
|
import {v4 as uuidv4} from 'uuid';
|
||||||
import storage from '@/plugins/storage';
|
import storage from '@/plugins/storage';
|
||||||
import {getLogo} from '@/api/common.js';
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
mounted () {
|
mounted () {
|
||||||
|
@ -16,16 +15,6 @@ export default {
|
||||||
uuid = uuidv4();
|
uuid = uuidv4();
|
||||||
storage.setItem('uuid', uuid);
|
storage.setItem('uuid', uuid);
|
||||||
}
|
}
|
||||||
if (!this.Cookies.getItem('logo')) {
|
|
||||||
setTimeout(() => {
|
|
||||||
getLogo().then(res => {
|
|
||||||
if (res.success) {
|
|
||||||
let logoObj = JSON.parse(res.result.settingValue)
|
|
||||||
this.Cookies.setItem('logo', logoObj.buyerSideLogo)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}, 1000)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<img
|
<img
|
||||||
:src="logoImg"
|
:src="$store.state.logoImg"
|
||||||
v-if="showLogo"
|
v-if="showLogo"
|
||||||
class="logo-img"
|
class="logo-img"
|
||||||
alt=""
|
alt=""
|
||||||
|
@ -37,7 +37,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {getLogo} from '@/api/common.js'
|
|
||||||
import {hotWords} from '@/api/goods.js'
|
import {hotWords} from '@/api/goods.js'
|
||||||
export default {
|
export default {
|
||||||
name: 'search',
|
name: 'search',
|
||||||
|
@ -62,7 +61,6 @@ export default {
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
searchData: '', // 搜索内容
|
searchData: '', // 搜索内容
|
||||||
logoImg: '', // pc端展示logo
|
|
||||||
promotionTags: [] // 热门搜索列表
|
promotionTags: [] // 热门搜索列表
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -82,18 +80,6 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
if (!this.Cookies.getItem('logo')) {
|
|
||||||
getLogo().then(res => {
|
|
||||||
if (res.success) {
|
|
||||||
let logoObj = JSON.parse(res.result.settingValue)
|
|
||||||
this.Cookies.setItem('logo', logoObj.buyerSideLogo)
|
|
||||||
this.logoImg = logoObj.buyerSideLogo
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
this.logoImg = this.Cookies.getItem('logo')
|
|
||||||
}
|
|
||||||
|
|
||||||
this.searchData = this.$route.query.keyword
|
this.searchData = this.$route.query.keyword
|
||||||
|
|
||||||
if (!this.hover) { // 首页顶部固定搜索栏不调用热词接口
|
if (!this.hover) { // 首页顶部固定搜索栏不调用热词接口
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="nav">
|
<div class="nav">
|
||||||
<ul class="location">
|
<ul class="location">
|
||||||
|
<li v-if="$route.path.includes('home')" style="margin-left:10px"><router-link to="/">首页</router-link></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="detail">
|
<ul class="detail">
|
||||||
<li class="first" v-show="!userInfo.username">
|
<li class="first" v-show="!userInfo.username">
|
||||||
|
|
|
@ -17,15 +17,15 @@ export default {
|
||||||
* @description api请求基础路径
|
* @description api请求基础路径
|
||||||
*/
|
*/
|
||||||
api_dev: {
|
api_dev: {
|
||||||
common: 'http://192.168.0.101:8890',
|
// common: 'http://192.168.0.101:8890',
|
||||||
buyer: 'http://192.168.0.101:8888',
|
// buyer: 'http://192.168.0.101:8888',
|
||||||
seller: 'http://192.168.0.101:8889',
|
// seller: 'http://192.168.0.101:8889',
|
||||||
manager: 'http://192.168.0.101:8887'
|
// manager: 'http://192.168.0.101:8887'
|
||||||
|
|
||||||
// common: 'https://common-api.pickmall.cn',
|
common: 'https://common-api.pickmall.cn',
|
||||||
// buyer: 'https://buyer-api.pickmall.cn',
|
buyer: 'https://buyer-api.pickmall.cn',
|
||||||
// seller: 'https://store-api.pickmall.cn',
|
seller: 'https://store-api.pickmall.cn',
|
||||||
// manager: 'https://admin-api.pickmall.cn'
|
manager: 'https://admin-api.pickmall.cn'
|
||||||
},
|
},
|
||||||
api_prod: {
|
api_prod: {
|
||||||
common: 'https://common-api.pickmall.cn',
|
common: 'https://common-api.pickmall.cn',
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="top-content" @click='$refs.verify.show = false'>
|
<div class="top-content" @click='$refs.verify.show = false'>
|
||||||
<div class="logo-box">
|
<div class="logo-box">
|
||||||
<img
|
<img
|
||||||
:src="logoImg"
|
:src="$store.state.logoImg"
|
||||||
@click="$router.push('/')"
|
@click="$router.push('/')"
|
||||||
/>
|
/>
|
||||||
<div>欢迎登录</div>
|
<div>欢迎登录</div>
|
||||||
|
@ -186,8 +186,7 @@ export default {
|
||||||
},
|
},
|
||||||
codeMsg: '发送验证码', // 验证码文字
|
codeMsg: '发送验证码', // 验证码文字
|
||||||
interval: null, // 定时器
|
interval: null, // 定时器
|
||||||
time: 60, // 倒计时
|
time: 60 // 倒计时
|
||||||
logoImg: '' // logo图片
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -332,7 +331,6 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
this.logoImg = this.Cookies.getItem('logo')
|
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
type (v) {
|
type (v) {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="logo-box">
|
<div class="logo-box">
|
||||||
<img
|
<img
|
||||||
width="150"
|
width="150"
|
||||||
:src="logoImg"
|
:src="$store.state.logoImg"
|
||||||
@click="$router.push('/')"
|
@click="$router.push('/')"
|
||||||
/>
|
/>
|
||||||
<div>注册</div>
|
<div>注册</div>
|
||||||
|
@ -135,8 +135,7 @@ export default {
|
||||||
verifyType: 'REGISTER', // 验证状态
|
verifyType: 'REGISTER', // 验证状态
|
||||||
codeMsg: '发送验证码', // 提示文字
|
codeMsg: '发送验证码', // 提示文字
|
||||||
interval: '', // 定时器
|
interval: '', // 定时器
|
||||||
time: 60, // 倒计时
|
time: 60 // 倒计时
|
||||||
logoImg: '' // logo图
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -208,8 +207,6 @@ export default {
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
this.$refs.formRegist.resetFields();
|
this.$refs.formRegist.resetFields();
|
||||||
this.logoImg = this.Cookies.getItem('logo')
|
|
||||||
console.log(window.innerHeight);
|
|
||||||
document.querySelector('.sign-up').style.height = window.innerHeight + 'px'
|
document.querySelector('.sign-up').style.height = window.innerHeight + 'px'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<!-- 顶部logo -->
|
<!-- 顶部logo -->
|
||||||
<div class="logo-box">
|
<div class="logo-box">
|
||||||
<img
|
<img
|
||||||
:src="logoImg" width='150'
|
:src="$store.state.logoImg" width='150'
|
||||||
@click="$router.push('/')"
|
@click="$router.push('/')"
|
||||||
/>
|
/>
|
||||||
<div>修改密码</div>
|
<div>修改密码</div>
|
||||||
|
@ -118,7 +118,6 @@ export default {
|
||||||
components: { Verify },
|
components: { Verify },
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
logoImg: '', // logo图
|
|
||||||
loading: false, // 加载状态
|
loading: false, // 加载状态
|
||||||
loading1: false, // 第二步加载状态
|
loading1: false, // 第二步加载状态
|
||||||
formFirst: { // 手机验证码表单
|
formFirst: { // 手机验证码表单
|
||||||
|
@ -243,7 +242,6 @@ export default {
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
this.$refs.formFirst.resetFields();
|
this.$refs.formFirst.resetFields();
|
||||||
this.logoImg = this.Cookies.getItem('logo')
|
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="width_1200 logo">
|
<div class="width_1200 logo">
|
||||||
<div>
|
<div>
|
||||||
<router-link to="/"
|
<router-link to="/"
|
||||||
><img :src="logoImg" alt="lili shop" title="lilishop"
|
><img :src="$store.state.logoImg" alt="lili shop" title="lilishop"
|
||||||
/></router-link>
|
/></router-link>
|
||||||
<div>结算页</div>
|
<div>结算页</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -347,23 +347,12 @@ export default {
|
||||||
moreAddr: false, // 更多地址
|
moreAddr: false, // 更多地址
|
||||||
canUseCouponNum: 0, // 可用优惠券数量
|
canUseCouponNum: 0, // 可用优惠券数量
|
||||||
couponList: [], // 可用优惠券列表
|
couponList: [], // 可用优惠券列表
|
||||||
logoImg: '', // 平台logo
|
|
||||||
usedCouponId: [], // 已使用优惠券id
|
usedCouponId: [], // 已使用优惠券id
|
||||||
selectedCoupon: {} // 已选优惠券对象
|
selectedCoupon: {} // 已选优惠券对象
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
this.init();
|
this.init();
|
||||||
if (!this.Cookies.getItem('logo')) {
|
|
||||||
getLogo().then((res) => {
|
|
||||||
if (res.success) {
|
|
||||||
let logoObj = JSON.parse(res.result.settingValue);
|
|
||||||
this.Cookies.setItem('logo', logoObj.buyerSideLogo);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this.logoImg = this.Cookies.getItem('logo');
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init () {
|
init () {
|
||||||
|
|
|
@ -11,7 +11,8 @@ export default new Vuex.Store({
|
||||||
state: {
|
state: {
|
||||||
category: [], // 全部分类
|
category: [], // 全部分类
|
||||||
navList: [],
|
navList: [],
|
||||||
cartNum: storage.getItem('cartNum') || 0
|
cartNum: storage.getItem('cartNum') || 0,
|
||||||
|
logoImg: 'https://lili-system.oss-cn-beijing.aliyuncs.com/logo.png'
|
||||||
},
|
},
|
||||||
getters,
|
getters,
|
||||||
actions,
|
actions,
|
||||||
|
|
|
@ -179,7 +179,10 @@ export const getFullDiscountList = params => {
|
||||||
export const getFullDiscountById = id => {
|
export const getFullDiscountById = id => {
|
||||||
return getRequest(`/promotion/fullDiscount/${id}`);
|
return getRequest(`/promotion/fullDiscount/${id}`);
|
||||||
};
|
};
|
||||||
|
// 开启、关闭满额活动
|
||||||
|
export const updateFullDiscount = (id, promotionStatus) => {
|
||||||
|
return putRequest(`/promotion/fullDiscount/status/${id}/${promotionStatus}`)
|
||||||
|
}
|
||||||
// 积分商品列表
|
// 积分商品列表
|
||||||
export const getPointsGoodsList = params => {
|
export const getPointsGoodsList = params => {
|
||||||
return getRequest(`/promotion/pointsGoods`, params);
|
return getRequest(`/promotion/pointsGoods`, params);
|
||||||
|
|
|
@ -17,14 +17,14 @@ export default {
|
||||||
* @description api请求基础路径
|
* @description api请求基础路径
|
||||||
*/
|
*/
|
||||||
api_dev: {
|
api_dev: {
|
||||||
// common: "https://common-api.pickmall.cn",
|
common: "https://common-api.pickmall.cn",
|
||||||
// buyer: "https://buyer-api.pickmall.cn",
|
buyer: "https://buyer-api.pickmall.cn",
|
||||||
// seller: "https://store-api.pickmall.cn",
|
seller: "https://store-api.pickmall.cn",
|
||||||
// manager: "https://admin-api.pickmall.cn"
|
manager: "https://admin-api.pickmall.cn"
|
||||||
common: 'http://192.168.0.101:8890',
|
// common: 'http://192.168.0.101:8890',
|
||||||
buyer: 'http://192.168.0.101:8888',
|
// buyer: 'http://192.168.0.101:8888',
|
||||||
seller: 'http://192.168.0.101:8889',
|
// seller: 'http://192.168.0.101:8889',
|
||||||
manager: 'http://192.168.0.101:8887'
|
// manager: 'http://192.168.0.101:8887'
|
||||||
},
|
},
|
||||||
api_prod: {
|
api_prod: {
|
||||||
common: "https://common-api.pickmall.cn",
|
common: "https://common-api.pickmall.cn",
|
||||||
|
|
|
@ -48,18 +48,6 @@ export const otherRouter = {
|
||||||
name: "category",
|
name: "category",
|
||||||
component: () => import("@/views/goods/goods-manage/category.vue")
|
component: () => import("@/views/goods/goods-manage/category.vue")
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "message",
|
|
||||||
title: "消息中心",
|
|
||||||
name: "message_index",
|
|
||||||
component: () => import("@/views/message/message.vue")
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "category",
|
|
||||||
title: "类型列表",
|
|
||||||
name: "category",
|
|
||||||
component: () => import("@/views/goods/goods-manage/category.vue")
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: "parameter",
|
path: "parameter",
|
||||||
title: "参数绑定",
|
title: "参数绑定",
|
||||||
|
|
|
@ -1,46 +1,42 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="search">
|
<div class="search">
|
||||||
<Card>
|
<Card>
|
||||||
<Row @keydown.enter.native="handleSearch">
|
<Form
|
||||||
<Form
|
ref="searchForm"
|
||||||
ref="searchForm"
|
@keydown.enter.native="handleSearch"
|
||||||
:model="searchForm"
|
:model="searchForm"
|
||||||
inline
|
inline
|
||||||
:label-width="70"
|
:label-width="70"
|
||||||
class="search-form"
|
class="search-form"
|
||||||
>
|
>
|
||||||
<Form-item label="商品名称" prop="goodsName">
|
<Form-item label="商品名称" prop="goodsName">
|
||||||
<Input
|
<Input
|
||||||
type="text"
|
type="text"
|
||||||
v-model="searchForm.goodsName"
|
v-model="searchForm.goodsName"
|
||||||
placeholder="请输入商品名称"
|
placeholder="请输入商品名称"
|
||||||
clearable
|
clearable
|
||||||
style="width: 200px"
|
style="width: 200px"
|
||||||
/>
|
/>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
<Form-item label="商品编号" prop="sn">
|
<Form-item label="商品编号" prop="sn">
|
||||||
<Input
|
<Input
|
||||||
type="text"
|
type="text"
|
||||||
v-model="searchForm.sn"
|
v-model="searchForm.sn"
|
||||||
placeholder="请输入商品编号"
|
placeholder="请输入商品编号"
|
||||||
clearable
|
clearable
|
||||||
style="width: 200px"
|
style="width: 200px"
|
||||||
/>
|
/>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
<Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search" >搜索</Button>
|
<Button @click="handleSearch" class="search-btn" type="primary" icon="ios-search" >搜索</Button>
|
||||||
</Form>
|
</Form>
|
||||||
</Row>
|
|
||||||
<Table
|
<Table
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
border
|
border
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:data="data"
|
:data="data"
|
||||||
ref="table"
|
ref="table"
|
||||||
sortable="custom"
|
class="mt_10"
|
||||||
@on-sort-change="changeSort"
|
|
||||||
@on-selection-change="changeSelect"
|
|
||||||
>
|
>
|
||||||
|
|
||||||
<!-- 商品栏目格式化 -->
|
<!-- 商品栏目格式化 -->
|
||||||
<template slot="goodsSlot" slot-scope="scope">
|
<template slot="goodsSlot" slot-scope="scope">
|
||||||
<div style="margin-top: 5px;height: 80px; display: flex;">
|
<div style="margin-top: 5px;height: 80px; display: flex;">
|
||||||
|
@ -85,7 +81,6 @@
|
||||||
return {
|
return {
|
||||||
id: "", //要操作的id
|
id: "", //要操作的id
|
||||||
loading: true, // 表单加载状态
|
loading: true, // 表单加载状态
|
||||||
modalType: 0, // 添加或编辑标识
|
|
||||||
searchForm: {
|
searchForm: {
|
||||||
// 搜索框初始化对象
|
// 搜索框初始化对象
|
||||||
pageNumber: 1, // 当前页数
|
pageNumber: 1, // 当前页数
|
||||||
|
@ -93,15 +88,9 @@
|
||||||
sort: "create_time", // 默认排序字段
|
sort: "create_time", // 默认排序字段
|
||||||
order: "desc", // 默认排序方式
|
order: "desc", // 默认排序方式
|
||||||
},
|
},
|
||||||
underForm: { // 下架原因
|
|
||||||
reason: "",
|
|
||||||
},
|
|
||||||
goodsAuditForm: { // 商品编辑表单
|
goodsAuditForm: { // 商品编辑表单
|
||||||
is_auth: 1,
|
is_auth: 1,
|
||||||
},
|
},
|
||||||
submitLoading: false, // 添加或编辑提交状态
|
|
||||||
selectList: [], // 多选数据
|
|
||||||
selectCount: 0, // 多选计数
|
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
title: "商品名称",
|
title: "商品名称",
|
||||||
|
@ -252,7 +241,6 @@
|
||||||
changePage(v) { // 改变页码
|
changePage(v) { // 改变页码
|
||||||
this.searchForm.pageNumber = v;
|
this.searchForm.pageNumber = v;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
this.clearSelectAll();
|
|
||||||
},
|
},
|
||||||
changePageSize(v) { // 改变每页数量
|
changePageSize(v) { // 改变每页数量
|
||||||
this.searchForm.pageSize = v;
|
this.searchForm.pageSize = v;
|
||||||
|
@ -263,21 +251,6 @@
|
||||||
this.searchForm.pageSize = 10;
|
this.searchForm.pageSize = 10;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
changeSort(e) { // 排序
|
|
||||||
this.searchForm.sort = e.key;
|
|
||||||
this.searchForm.order = e.order;
|
|
||||||
if (e.order === "normal") {
|
|
||||||
this.searchForm.order = "";
|
|
||||||
}
|
|
||||||
this.getDataList();
|
|
||||||
},
|
|
||||||
clearSelectAll() { // 取消全部选中
|
|
||||||
this.$refs.table.selectAll(false);
|
|
||||||
},
|
|
||||||
changeSelect(e) { // 选中一项
|
|
||||||
this.selectList = e;
|
|
||||||
this.selectCount = e.length;
|
|
||||||
},
|
|
||||||
getDataList() { // 获取列表数据
|
getDataList() { // 获取列表数据
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
// 带多条件搜索参数获取表单数据
|
// 带多条件搜索参数获取表单数据
|
||||||
|
@ -312,8 +285,6 @@
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
//查看商品详情
|
//查看商品详情
|
||||||
showDetail(v) {
|
showDetail(v) {
|
||||||
let id = v.id;
|
let id = v.id;
|
||||||
|
|
|
@ -1,381 +0,0 @@
|
||||||
/*选择商品品类*/
|
|
||||||
.content-goods-publish {
|
|
||||||
padding: 15px;
|
|
||||||
padding-bottom: 50px;
|
|
||||||
margin: 0 auto;
|
|
||||||
text-align: center;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
background: none repeat 0 0 #fff;
|
|
||||||
|
|
||||||
/*商品品类*/
|
|
||||||
.goods-category {
|
|
||||||
text-align: left;
|
|
||||||
padding: 10px;
|
|
||||||
background: #fafafa;
|
|
||||||
border: 1px solid #e6e6e6;
|
|
||||||
|
|
||||||
ul {
|
|
||||||
padding: 8px 4px 8px 8px;
|
|
||||||
list-style: none;
|
|
||||||
width: 300px;
|
|
||||||
background: none repeat 0 0 #fff;
|
|
||||||
border: 1px solid #e6e6e6;
|
|
||||||
display: inline-block;
|
|
||||||
letter-spacing: normal;
|
|
||||||
margin-right: 15px;
|
|
||||||
vertical-align: top;
|
|
||||||
word-spacing: normal;
|
|
||||||
|
|
||||||
li {
|
|
||||||
line-height: 20px;
|
|
||||||
padding: 5px;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #333;
|
|
||||||
font-size: 12px;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 当前品类被选中的样式 */
|
|
||||||
.activeClass {
|
|
||||||
background-color: #d9edf7;
|
|
||||||
border: 1px solid #bce8f1;
|
|
||||||
color: #3a87ad;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*!*当前选择的商品品类文字*!*/
|
|
||||||
.current-goods-category {
|
|
||||||
text-align: left;
|
|
||||||
padding: 10px;
|
|
||||||
width: 100%;
|
|
||||||
border: 1px solid #fbeed5;
|
|
||||||
color: #c09853;
|
|
||||||
background-color: #fcf8e3;
|
|
||||||
margin: 10px auto;
|
|
||||||
padding: 8px 35px 8px 14px;
|
|
||||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
||||||
font-size: 12px;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*编辑基本信息*/
|
|
||||||
.el-form {
|
|
||||||
padding-bottom: 80px;
|
|
||||||
|
|
||||||
.el-form-item {
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*平铺*/
|
|
||||||
div.base-info-item>div {
|
|
||||||
margin-left: 5%;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.base-info-item {
|
|
||||||
|
|
||||||
h4 {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
padding: 0 10px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
background-color: #f8f8f8;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #333;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 40px;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-item-view {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: flex-start;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding-left: 80px;
|
|
||||||
|
|
||||||
|
|
||||||
.layout {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
|
|
||||||
.sku-item-content {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: flex-start;
|
|
||||||
justify-content: center;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
.sku-item-content-name {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.shop-category-text {
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-item-view-bottom {
|
|
||||||
margin-bottom: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.item-goods-properts-row {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
word-break: break-all;
|
|
||||||
white-space: normal;
|
|
||||||
width: 300px;
|
|
||||||
height: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.item-goods-properts {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/** 审核信息-拒绝原因 */
|
|
||||||
.auth-info {
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
.el-form-item {
|
|
||||||
width: 30%;
|
|
||||||
min-width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.goods-name-width {
|
|
||||||
width: 50%;
|
|
||||||
min-width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.el-form-item__content {
|
|
||||||
margin-left: 120px;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.goods-group-manager {
|
|
||||||
padding-left: 7.5%;
|
|
||||||
text-align: left;
|
|
||||||
color: #999;
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*teatarea*/
|
|
||||||
/deep/ .el-textarea {
|
|
||||||
width: 150%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.seo-text {
|
|
||||||
width: 150%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*折叠面板*/
|
|
||||||
.el-collapse-item {
|
|
||||||
/deep/ .el-collapse-item__header {
|
|
||||||
text-align: left;
|
|
||||||
background-color: #f8f8f8;
|
|
||||||
padding: 0 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #333;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.el-form-item {
|
|
||||||
margin-left: 5%;
|
|
||||||
width: 25%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/deep/ .el-form-item__content {
|
|
||||||
margin-left: 120px;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.goods-group-manager {
|
|
||||||
padding-left: 12%;
|
|
||||||
text-align: left;
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
|
|
||||||
/deep/ .el-collapse-item__content {
|
|
||||||
padding: 10px 0;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*商品描述*/
|
|
||||||
.goods-intro {
|
|
||||||
line-height: 40;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 底部步骤 */
|
|
||||||
.footer {
|
|
||||||
width: 88.7%;
|
|
||||||
padding: 10px;
|
|
||||||
background-color: #ffc;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0px;
|
|
||||||
left: 10%;
|
|
||||||
text-align: center;
|
|
||||||
z-index: 9999;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*图片上传组件第一张图设置封面*/
|
|
||||||
.goods-images {
|
|
||||||
/deep/ li.el-upload-list__item:first-child {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
/deep/ li.el-upload-list__item:first-child:after {
|
|
||||||
content: "封";
|
|
||||||
color: #fff;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 12px;
|
|
||||||
position: absolute;
|
|
||||||
left: -15px;
|
|
||||||
top: -6px;
|
|
||||||
width: 40px;
|
|
||||||
height: 24px;
|
|
||||||
padding-top: 6px;
|
|
||||||
background: #13ce66;
|
|
||||||
text-align: center;
|
|
||||||
-webkit-transform: rotate(-45deg);
|
|
||||||
transform: rotate(-45deg);
|
|
||||||
-webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2);
|
|
||||||
box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.el-form-item__label {
|
|
||||||
word-break: break-all;
|
|
||||||
}
|
|
||||||
|
|
||||||
.step-view {
|
|
||||||
width: 33%;
|
|
||||||
height: 40px;
|
|
||||||
font-size: 19px;
|
|
||||||
text-align: center;
|
|
||||||
display: flex;
|
|
||||||
background-color: #fff;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.add-sku-btn {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sku-item:not(:first-child) {
|
|
||||||
margin-top: 10px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.sku-upload-list {
|
|
||||||
display: inline-block;
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 60px;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
border-radius: 4px;
|
|
||||||
overflow: hidden;
|
|
||||||
background: #fff;
|
|
||||||
position: relative;
|
|
||||||
box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.preview-picture {
|
|
||||||
width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
display: block;
|
|
||||||
// text-align: center;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
// justify-self: center;
|
|
||||||
// align-self: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.preview-picture img {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sku-upload-list img {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sku-upload-list-cover {
|
|
||||||
display: none;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
background: rgba(0, 0, 0, .6);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sku-upload-list:hover .sku-upload-list-cover {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sku-upload-list-cover i {
|
|
||||||
color: #fff;
|
|
||||||
font-size: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
margin: 0 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.demo-upload-list{
|
|
||||||
display: inline-block;
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 60px;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
border-radius: 4px;
|
|
||||||
overflow: hidden;
|
|
||||||
background: #fff;
|
|
||||||
position: relative;
|
|
||||||
box-shadow: 0 1px 1px rgba(0,0,0,.2);
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.demo-upload-list img{
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.demo-upload-list-cover{
|
|
||||||
display: none;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
background: rgba(0,0,0,.6);
|
|
||||||
}
|
|
||||||
.demo-upload-list:hover .demo-upload-list-cover{
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.demo-upload-list-cover i{
|
|
||||||
color: #fff;
|
|
||||||
font-size: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
margin: 0 2px;
|
|
||||||
}
|
|
|
@ -1,62 +1,35 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Form
|
<Form :label-width="120">
|
||||||
:label-width="120"
|
<Card>
|
||||||
>
|
|
||||||
<div class="content-goods-publish">
|
|
||||||
<div class="base-info-item">
|
<div class="base-info-item">
|
||||||
<h4>基本信息</h4>
|
<h4>基本信息</h4>
|
||||||
<div class="form-item-view">
|
<div class="form-item-view">
|
||||||
<FormItem label="商品分类">
|
<FormItem label="商品分类">
|
||||||
<span v-for="item in goods.categoryName"> {{ item }} > </span>
|
<span v-for="(item,index) in goods.categoryName" :key="index"> {{ item }} <i v-if="index !== (goods.categoryName.length-1)">></i> </span>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="商品名称" prop="goodsName">
|
<FormItem label="商品名称">
|
||||||
{{ goods.goodsName }}
|
{{ goods.goodsName }}
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|
||||||
<FormItem label="商品卖点" prop="sellingPoint">
|
<FormItem label="商品卖点">
|
||||||
{{ goods.sellingPoint }}
|
{{ goods.sellingPoint }}
|
||||||
</FormItem>
|
</FormItem>
|
||||||
</div>
|
</div>
|
||||||
<h4>商品交易信息</h4>
|
<h4>商品交易信息</h4>
|
||||||
<div class="form-item-view">
|
<div class="form-item-view">
|
||||||
<FormItem
|
<FormItem label="计量单位"> {{ goods.goodsUnit }}</FormItem>
|
||||||
class="form-item-view-el"
|
<FormItem label="销售模式">
|
||||||
label="计量单位"
|
|
||||||
prop="goodsUnit"
|
|
||||||
> {{ goods.goodsUnit }}
|
|
||||||
</FormItem>
|
|
||||||
<FormItem
|
|
||||||
class="form-item-view-el"
|
|
||||||
label="销售模式"
|
|
||||||
prop="salesModel"
|
|
||||||
>
|
|
||||||
{{ goods.salesModel === 'RETAIL' ? '零售型' : '批发型' }}
|
{{ goods.salesModel === 'RETAIL' ? '零售型' : '批发型' }}
|
||||||
</FormItem>
|
</FormItem>
|
||||||
</div>
|
</div>
|
||||||
<h4>商品规格及图片</h4>
|
<h4>商品规格及图片</h4>
|
||||||
<div class="form-item-view">
|
<div class="form-item-view">
|
||||||
<FormItem label="商品编号" prop="sn">
|
<FormItem label="商品编号"> {{ goods.sn }}</FormItem>
|
||||||
{{ goods.sn }}
|
<FormItem label="商品价格"> ¥{{ goods.price | unitPrice }} </FormItem>
|
||||||
</FormItem>
|
<FormItem label="市场价格"> ¥{{ goods.cost | unitPrice }} </FormItem>
|
||||||
<FormItem label="商品价格" prop="price">
|
<FormItem label="商品图片">
|
||||||
¥{{ goods.price | unitPrice }}
|
<div class="demo-upload-list" v-for="(item, __index) in goods.goodsGalleryList" :key="__index">
|
||||||
</FormItem>
|
|
||||||
<FormItem label="市场价格" prop="cost">
|
|
||||||
|
|
||||||
¥{{ goods.cost | unitPrice }}
|
|
||||||
</FormItem>
|
|
||||||
<FormItem
|
|
||||||
class="form-item-view-el"
|
|
||||||
label="商品图片"
|
|
||||||
prop="goodsGalleryFiles"
|
|
||||||
>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="demo-upload-list"
|
|
||||||
v-for="(item, __index) in goods.goodsGalleryList"
|
|
||||||
:key="__index"
|
|
||||||
>
|
|
||||||
<img :src="item"/>
|
<img :src="item"/>
|
||||||
<div class="demo-upload-list-cover">
|
<div class="demo-upload-list-cover">
|
||||||
<Icon
|
<Icon
|
||||||
|
@ -64,7 +37,6 @@
|
||||||
@click.native="handleViewGoodsPicture(item)"
|
@click.native="handleViewGoodsPicture(item)"
|
||||||
></Icon>
|
></Icon>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Modal title="View Image" v-model="goodsPictureVisible">
|
<Modal title="View Image" v-model="goodsPictureVisible">
|
||||||
<img
|
<img
|
||||||
:src="previewGoodsPicture"
|
:src="previewGoodsPicture"
|
||||||
|
@ -73,70 +45,50 @@
|
||||||
/>
|
/>
|
||||||
</Modal>
|
</Modal>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
<FormItem label="商品规格">
|
||||||
|
|
||||||
<FormItem
|
|
||||||
class="form-item-view-el"
|
|
||||||
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;height: 80px; display: flex;">
|
||||||
<div style="">
|
<div>
|
||||||
<img :src="scope.row.image" style="height: 60px;margin-top: 1px;width: 60px">
|
<img :src="scope.row.image" style="height: 60px;margin-top: 1px;width: 60px">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</Table>
|
</Table>
|
||||||
|
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<h4>商品详情描述</h4>
|
<h4>商品详情描述</h4>
|
||||||
<div class="form-item-view">
|
<div class="form-item-view">
|
||||||
<FormItem class="form-item-view-el" label="商品描述" prop="intro">
|
<FormItem label="商品描述">
|
||||||
<div v-html="goods.intro"></div>
|
<div v-html="goods.intro"></div>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem
|
<FormItem
|
||||||
class="form-item-view-el"
|
|
||||||
label="移动端描述"
|
label="移动端描述"
|
||||||
prop="skuList"
|
|
||||||
>
|
>
|
||||||
<div v-html="goods.mobileIntro"></div>
|
<div v-html="goods.mobileIntro"></div>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
</div>
|
</div>
|
||||||
<h4>商品物流信息</h4>
|
<h4>商品物流信息</h4>
|
||||||
<div class="form-item-view">
|
<div class="form-item-view">
|
||||||
<FormItem class="form-item-view-el" label="商品重量" prop="weight">
|
<FormItem label="商品重量">
|
||||||
<Input v-model="goods.weight">
|
<Input v-model="goods.weight">
|
||||||
<span slot="append">kg</span>
|
<span slot="append">kg</span>
|
||||||
</Input>
|
</Input>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</Card>
|
||||||
</Form>
|
</Form>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
import {getGoodsDetail} from "@/api/goods";
|
import {getGoodsDetail} from "@/api/goods";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
||||||
name: "goodsDetail",
|
name: "goodsDetail",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
goods: '', // 商品信息
|
goods: {}, // 商品信息
|
||||||
previewGoodsPicture: '', // 预览图片
|
previewGoodsPicture: '', // 预览图片
|
||||||
goodsPictureVisible: false, // 预览图片模态框
|
goodsPictureVisible: false, // 预览图片模态框
|
||||||
skuColumn: [ // 规格表头
|
skuColumn: [ // 规格表头
|
||||||
|
@ -149,7 +101,7 @@ export default {
|
||||||
key: 'sn'
|
key: 'sn'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '重量',
|
title: '重量(kg)',
|
||||||
key: 'weight'
|
key: 'weight'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -173,12 +125,12 @@ export default {
|
||||||
}
|
}
|
||||||
,
|
,
|
||||||
methods: {
|
methods: {
|
||||||
|
// 初始化数据,获取商品详情
|
||||||
initGoods(id) {
|
initGoods(id) {
|
||||||
getGoodsDetail(id).then(res => {
|
getGoodsDetail(id).then(res => {
|
||||||
this.goods = res.result;
|
this.goods = res.result;
|
||||||
let that = this
|
let that = this
|
||||||
res.result.skuList.forEach(function (sku, index, array) {
|
res.result.skuList.forEach(function (sku, index, array) {
|
||||||
console.log(sku)
|
|
||||||
that.skuData.push({
|
that.skuData.push({
|
||||||
'specs': sku.goodsName,
|
'specs': sku.goodsName,
|
||||||
'sn': sku.sn,
|
'sn': sku.sn,
|
||||||
|
@ -191,9 +143,8 @@ export default {
|
||||||
console.warn(this.skuData)
|
console.warn(this.skuData)
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
,
|
// 预览商品图片
|
||||||
|
|
||||||
handleViewGoodsPicture(url) {
|
handleViewGoodsPicture(url) {
|
||||||
this.previewGoodsPicture = url;
|
this.previewGoodsPicture = url;
|
||||||
this.goodsPictureVisible = true;
|
this.goodsPictureVisible = true;
|
||||||
|
@ -207,8 +158,61 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" soped>
|
<style lang="scss" soped>
|
||||||
@import "./goodsDetail.scss";
|
/*平铺*/
|
||||||
|
div.base-info-item {
|
||||||
|
h4 {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 0 10px;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 40px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-item-view {
|
||||||
|
padding-left: 80px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-upload-list{
|
||||||
|
display: inline-block;
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 60px;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-radius: 4px;
|
||||||
|
overflow: hidden;
|
||||||
|
background: #fff;
|
||||||
|
position: relative;
|
||||||
|
box-shadow: 0 1px 1px rgba(0,0,0,.2);
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
.demo-upload-list img{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.demo-upload-list-cover{
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
background: rgba(0,0,0,.6);
|
||||||
|
}
|
||||||
|
.demo-upload-list:hover .demo-upload-list-cover{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.demo-upload-list-cover i{
|
||||||
|
color: #fff;
|
||||||
|
font-size: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
margin: 0 2px;
|
||||||
|
}
|
||||||
.ivu-table table {
|
.ivu-table table {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,16 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="search">
|
<div class="search">
|
||||||
<Card>
|
<Card>
|
||||||
<Row @keydown.enter.native="handleSearch">
|
<Form ref="searchForm" @keydown.enter.native="handleSearch" :model="searchForm" inline :label-width="70" class="search-form">
|
||||||
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
|
<Form-item label="品牌名称">
|
||||||
<Form-item label="品牌名称" prop="name">
|
<Input type="text" v-model="searchForm.name" placeholder="请输入品牌名称" clearable style="width: 200px" />
|
||||||
<Input type="text" v-model="searchForm.name" placeholder="请输入品牌名称" clearable style="width: 200px" />
|
</Form-item>
|
||||||
</Form-item>
|
<Button @click="handleSearch" type="primary">搜索</Button>
|
||||||
|
</Form>
|
||||||
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
|
|
||||||
</Form>
|
|
||||||
</Row>
|
|
||||||
<Row class="operation padding-row">
|
<Row class="operation padding-row">
|
||||||
<Button @click="add" type="primary">添加</Button>
|
<Button @click="add" type="primary">添加</Button>
|
||||||
</Row>
|
</Row>
|
||||||
<Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom" @on-sort-change="changeSort" @on-selection-change="changeSelect"></Table>
|
<Table :loading="loading" border :columns="columns" :data="data" ref="table"></Table>
|
||||||
<Row type="flex" justify="end" class="mt_10">
|
<Row type="flex" justify="end" class="mt_10">
|
||||||
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" size="small"
|
<Page :current="searchForm.pageNumber" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]" size="small"
|
||||||
show-total show-elevator show-sizer></Page>
|
show-total show-elevator show-sizer></Page>
|
||||||
|
@ -30,8 +27,7 @@
|
||||||
</Form>
|
</Form>
|
||||||
<div slot="footer">
|
<div slot="footer">
|
||||||
<Button type="text" @click="modalVisible = false">取消</Button>
|
<Button type="text" @click="modalVisible = false">取消</Button>
|
||||||
<Button type="primary" :loading="submitLoading" @click="handleSubmit">提交
|
<Button type="primary" :loading="submitLoading" @click="handleSubmit">提交</Button>
|
||||||
</Button>
|
|
||||||
</div>
|
</div>
|
||||||
</Modal>
|
</Modal>
|
||||||
</div>
|
</div>
|
||||||
|
@ -50,7 +46,7 @@ import uploadPicInput from "@/views/my-components/lili/upload-pic-input";
|
||||||
export default {
|
export default {
|
||||||
name: "brand",
|
name: "brand",
|
||||||
components: {
|
components: {
|
||||||
uploadPicInput,
|
uploadPicInput
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -74,8 +70,6 @@ export default {
|
||||||
// 表单验证规则
|
// 表单验证规则
|
||||||
formValidate: {},
|
formValidate: {},
|
||||||
submitLoading: false, // 添加或编辑提交状态
|
submitLoading: false, // 添加或编辑提交状态
|
||||||
selectList: [], // 多选数据
|
|
||||||
selectCount: 0, // 多选计数
|
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
title: "品牌名称",
|
title: "品牌名称",
|
||||||
|
@ -237,51 +231,38 @@ export default {
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// 初始化数据
|
||||||
init() {
|
init() {
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
|
// 分页 改变页码
|
||||||
changePage(v) {
|
changePage(v) {
|
||||||
this.searchForm.pageNumber = v;
|
this.searchForm.pageNumber = v;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
this.clearSelectAll();
|
|
||||||
},
|
},
|
||||||
|
// 分页 改变页数
|
||||||
changePageSize(v) {
|
changePageSize(v) {
|
||||||
this.searchForm.pageSize = v;
|
this.searchForm.pageSize = v;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
|
// 搜索
|
||||||
handleSearch() {
|
handleSearch() {
|
||||||
this.searchForm.pageNumber = 1;
|
this.searchForm.pageNumber = 1;
|
||||||
this.searchForm.pageSize = 10;
|
this.searchForm.pageSize = 10;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
changeSort(e) {
|
// 获取数据
|
||||||
this.searchForm.sort = e.key;
|
|
||||||
this.searchForm.order = e.order;
|
|
||||||
if (e.order === "normal") {
|
|
||||||
this.searchForm.order = "";
|
|
||||||
}
|
|
||||||
this.getDataList();
|
|
||||||
},
|
|
||||||
clearSelectAll() {
|
|
||||||
this.$refs.table.selectAll(false);
|
|
||||||
},
|
|
||||||
changeSelect(e) {
|
|
||||||
this.selectList = e;
|
|
||||||
this.selectCount = e.length;
|
|
||||||
},
|
|
||||||
getDataList() {
|
getDataList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
// 带多条件搜索参数获取表单数据 请自行修改接口
|
|
||||||
getManagerBrandPage(this.searchForm).then((res) => {
|
getManagerBrandPage(this.searchForm).then((res) => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
console.warn(12);
|
|
||||||
this.data = res.result.records;
|
this.data = res.result.records;
|
||||||
this.total = res.result.total;
|
this.total = res.result.total;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 提交表单
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
this.$refs.form.validate((valid) => {
|
this.$refs.form.validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
|
@ -311,6 +292,7 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 添加
|
||||||
add() {
|
add() {
|
||||||
this.modalType = 0;
|
this.modalType = 0;
|
||||||
this.modalTitle = "添加";
|
this.modalTitle = "添加";
|
||||||
|
@ -318,6 +300,7 @@ export default {
|
||||||
delete this.form.id;
|
delete this.form.id;
|
||||||
this.modalVisible = true;
|
this.modalVisible = true;
|
||||||
},
|
},
|
||||||
|
// 编辑
|
||||||
edit(v) {
|
edit(v) {
|
||||||
this.modalType = 1;
|
this.modalType = 1;
|
||||||
this.modalTitle = "编辑";
|
this.modalTitle = "编辑";
|
||||||
|
@ -333,6 +316,7 @@ export default {
|
||||||
this.form = data;
|
this.form = data;
|
||||||
this.modalVisible = true;
|
this.modalVisible = true;
|
||||||
},
|
},
|
||||||
|
// 启用品牌
|
||||||
enable(v) {
|
enable(v) {
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "确认启用",
|
title: "确认启用",
|
||||||
|
@ -349,6 +333,7 @@ export default {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 禁用
|
||||||
disable(v) {
|
disable(v) {
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "确认禁用",
|
title: "确认禁用",
|
||||||
|
|
|
@ -1,111 +1,113 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="wrapper">
|
<div>
|
||||||
<div class="operation">
|
<Card>
|
||||||
<Button @click="addParent" icon="md-add">添加一级分类</Button>
|
<div class="mb_10">
|
||||||
</div>
|
<Button @click="addParent" icon="md-add">添加一级分类</Button>
|
||||||
<Table size="default" :load-data="handleLoadData" row-key="id" :loading="loading" :data="tableData" :columns="columns">
|
</div>
|
||||||
|
<Table :load-data="handleLoadData" row-key="id" :loading="loading" :data="tableData" :columns="columns">
|
||||||
|
<template slot="action" slot-scope="scope">
|
||||||
|
<Dropdown v-show="scope.row.level == 2" transfer="true" trigger="click">
|
||||||
|
<Button size="small">
|
||||||
|
绑定
|
||||||
|
<Icon type="ios-arrow-down"></Icon>
|
||||||
|
</Button>
|
||||||
|
<DropdownMenu slot="list">
|
||||||
|
<DropdownItem @click.native="brandOperation(scope.row)">编辑绑定品牌</DropdownItem>
|
||||||
|
<DropdownItem @click.native="specOperation(scope.row)">编辑绑定规格</DropdownItem>
|
||||||
|
<DropdownItem @click.native="parameterOperation(scope.row)">编辑绑定参数</DropdownItem>
|
||||||
|
</DropdownMenu>
|
||||||
|
</Dropdown>
|
||||||
|
|
||||||
<template slot="action" slot-scope="scope">
|
|
||||||
<Dropdown v-show="scope.row.level == 2" transfer="true" trigger="click">
|
<Dropdown transfer="true" trigger="click">
|
||||||
<Button size="small">
|
<Button size="small">
|
||||||
绑定
|
操作
|
||||||
<Icon type="ios-arrow-down"></Icon>
|
<Icon type="ios-arrow-down"></Icon>
|
||||||
|
</Button>
|
||||||
|
<DropdownMenu slot="list">
|
||||||
|
<DropdownItem @click.native="edit(scope.row)">编辑</DropdownItem>
|
||||||
|
<DropdownItem v-if="scope.row.deleteFlag == 1" @click.native="enable(scope.row)">启用</DropdownItem>
|
||||||
|
<DropdownItem v-if="scope.row.deleteFlag == 0" @click.native="disable(scope.row)">禁用</DropdownItem>
|
||||||
|
<DropdownItem @click.native="remove(scope.row)">删除</DropdownItem>
|
||||||
|
</DropdownMenu>
|
||||||
|
</Dropdown>
|
||||||
|
|
||||||
|
<Button v-show="scope.row.level != 2" type="primary" @click="addChildren(scope.row)" size="small" icon="md-add" style="margin-right: 5px">添加子分类
|
||||||
</Button>
|
</Button>
|
||||||
<DropdownMenu slot="list">
|
</template>
|
||||||
<DropdownItem @click.native="brandOperation(scope.row)">编辑绑定品牌</DropdownItem>
|
|
||||||
<DropdownItem @click.native="specOperation(scope.row)">编辑绑定规格</DropdownItem>
|
|
||||||
<DropdownItem @click.native="parameterOperation(scope.row)">编辑绑定参数</DropdownItem>
|
|
||||||
</DropdownMenu>
|
|
||||||
</Dropdown>
|
|
||||||
|
|
||||||
|
<template slot="commissionRate" slot-scope="scope">
|
||||||
<Dropdown transfer="true" trigger="click">
|
{{ scope.row.commissionRate }}%
|
||||||
<Button size="small">
|
</template>
|
||||||
操作
|
|
||||||
<Icon type="ios-arrow-down"></Icon>
|
|
||||||
</Button>
|
|
||||||
<DropdownMenu slot="list">
|
|
||||||
<DropdownItem @click.native="edit(scope.row)">编辑</DropdownItem>
|
|
||||||
<DropdownItem v-if="scope.row.deleteFlag == 1" @click.native="enable(scope.row)">启用</DropdownItem>
|
|
||||||
<DropdownItem v-if="scope.row.deleteFlag == 0" @click.native="disable(scope.row)">禁用</DropdownItem>
|
|
||||||
<DropdownItem @click.native="remove(scope.row)">删除</DropdownItem>
|
|
||||||
</DropdownMenu>
|
|
||||||
</Dropdown>
|
|
||||||
|
|
||||||
<Button v-show="scope.row.level != 2" type="primary" @click="addChildren(scope.row)" size="small" icon="md-add" style="margin-right: 5px">添加子分类
|
|
||||||
</Button>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template slot="commissionRate" slot-scope="scope">
|
<template slot="deleteFlag" slot-scope="{row}">
|
||||||
{{ scope.row.commissionRate }}%
|
<Tag :class="{'ml_10': row.deleteFlag}" :color="row.deleteFlag == false ? 'success' : 'error'">{{row.deleteFlag == false ? '正常启用' : '禁用'}}</Tag>
|
||||||
</template>
|
</template>
|
||||||
|
</Table>
|
||||||
|
|
||||||
<template slot="deleteFlag" slot-scope="{row}">
|
<Modal :title="modalTitle" v-model="modalVisible" :mask-closable="false" :width="500">
|
||||||
<Tag :class="{'ml_10': row.deleteFlag}" :color="row.deleteFlag == false ? 'success' : 'error'">{{row.deleteFlag == false ? '正常启用' : '禁用'}}</Tag>
|
<Form ref="form" :model="formAdd" :label-width="100" :rules="formValidate">
|
||||||
</template>
|
<div v-if="showParent">
|
||||||
</Table>
|
<FormItem label="上级分类" prop="parentId">
|
||||||
|
{{ parentTitle }}
|
||||||
<Modal :title="modalTitle" v-model="modalVisible" :mask-closable="false" :width="500">
|
<Input v-model="formAdd.parentId" clearable style="width: 100%; display: none" />
|
||||||
<Form ref="form" :model="formAdd" :label-width="100" :rules="formValidate">
|
</FormItem>
|
||||||
<div v-if="showParent">
|
</div>
|
||||||
<FormItem label="上级分类" prop="parentId">
|
<FormItem label="层级" prop="level" style="display: none">
|
||||||
{{ parentTitle }}
|
<Input v-model="formAdd.level" clearable style="width: 100%" />
|
||||||
<Input v-model="formAdd.parentId" clearable style="width: 100%; display: none" />
|
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
<FormItem label="分类名称" prop="name">
|
||||||
|
<Input v-model="formAdd.name" clearable style="width: 100%" />
|
||||||
|
</FormItem>
|
||||||
|
<FormItem label="分类图标" prop="image">
|
||||||
|
<upload-pic-input v-model="formAdd.image" style="width: 100%"></upload-pic-input>
|
||||||
|
</FormItem>
|
||||||
|
<FormItem label="排序值" prop="sortOrder" style="width: 345px">
|
||||||
|
<InputNumber v-model="formAdd.sortOrder"></InputNumber>
|
||||||
|
</FormItem>
|
||||||
|
<FormItem label="佣金比例(%)" prop="commissionRate" style="width: 345px">
|
||||||
|
<InputNumber v-model="formAdd.commissionRate"></InputNumber>
|
||||||
|
</FormItem>
|
||||||
|
<FormItem label="是否启用" prop="deleteFlag">
|
||||||
|
<i-switch size="large" v-model="formAdd.deleteFlag" :true-value="0" :false-value="1">
|
||||||
|
<span slot="open">启用</span>
|
||||||
|
<span slot="close">禁用</span>
|
||||||
|
</i-switch>
|
||||||
|
</FormItem>
|
||||||
|
</Form>
|
||||||
|
<div slot="footer">
|
||||||
|
<Button type="text" @click="modalVisible = false">取消</Button>
|
||||||
|
<Button type="primary" :loading="submitLoading" @click="Submit">提交</Button>
|
||||||
</div>
|
</div>
|
||||||
<FormItem label="层级" prop="level" style="display: none">
|
</Modal>
|
||||||
<Input v-model="formAdd.level" clearable style="width: 100%" />
|
|
||||||
</FormItem>
|
|
||||||
<FormItem label="分类名称" prop="name">
|
|
||||||
<Input v-model="formAdd.name" clearable style="width: 100%" />
|
|
||||||
</FormItem>
|
|
||||||
<FormItem label="分类图标" prop="image">
|
|
||||||
<upload-pic-input v-model="formAdd.image" style="width: 100%"></upload-pic-input>
|
|
||||||
</FormItem>
|
|
||||||
<FormItem label="排序值" prop="sortOrder" style="width: 345px">
|
|
||||||
<InputNumber v-model="formAdd.sortOrder"></InputNumber>
|
|
||||||
</FormItem>
|
|
||||||
<FormItem label="佣金比例(%)" prop="commissionRate" style="width: 345px">
|
|
||||||
<InputNumber v-model="formAdd.commissionRate"></InputNumber>
|
|
||||||
</FormItem>
|
|
||||||
<FormItem label="是否启用" prop="deleteFlag">
|
|
||||||
<i-switch size="large" v-model="formAdd.deleteFlag" :true-value="0" :false-value="1">
|
|
||||||
<span slot="open">启用</span>
|
|
||||||
<span slot="close">禁用</span>
|
|
||||||
</i-switch>
|
|
||||||
</FormItem>
|
|
||||||
</Form>
|
|
||||||
<div slot="footer">
|
|
||||||
<Button type="text" @click="modalVisible = false">取消</Button>
|
|
||||||
<Button type="primary" :loading="submitLoading" @click="Submit">提交</Button>
|
|
||||||
</div>
|
|
||||||
</Modal>
|
|
||||||
|
|
||||||
<Modal :title="modalBrandTitle" v-model="modalBrandVisible" :mask-closable="false" :width="500">
|
<Modal :title="modalBrandTitle" v-model="modalBrandVisible" :mask-closable="false" :width="500">
|
||||||
<Form ref="brandForm" :model="brandForm" :label-width="100">
|
<Form ref="brandForm" :model="brandForm" :label-width="100">
|
||||||
<Select v-model="brandForm.categoryBrands" multiple>
|
<Select v-model="brandForm.categoryBrands" multiple>
|
||||||
<Option v-for="item in brandWay" :value="item.id" :key="item.id">{{ item.name }}</Option>
|
<Option v-for="item in brandWay" :value="item.id" :key="item.id">{{ item.name }}</Option>
|
||||||
|
|
||||||
</Select>
|
</Select>
|
||||||
</Form>
|
</Form>
|
||||||
<div slot="footer">
|
<div slot="footer">
|
||||||
<Button type="text" @click="modalBrandVisible = false">取消</Button>
|
<Button type="text" @click="modalBrandVisible = false">取消</Button>
|
||||||
<Button type="primary" :loading="submitLoading" @click="saveCategoryBrand">提交</Button>
|
<Button type="primary" :loading="submitLoading" @click="saveCategoryBrand">提交</Button>
|
||||||
</div>
|
</div>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|
||||||
|
<Modal :title="modalSpecTitle" v-model="modalSpecVisible" :mask-closable="false" :width="500">
|
||||||
|
<Form ref="specForm" :model="specForm" :label-width="100">
|
||||||
|
<Select v-model="specForm.categorySpecs" multiple>
|
||||||
|
<Option v-for="item in specifications" :value="item.id" :key="item.id" :label="item.specName">
|
||||||
|
</Option>
|
||||||
|
</Select>
|
||||||
|
</Form>
|
||||||
|
<div slot="footer">
|
||||||
|
<Button type="text" @click="modalSpecVisible = false">取消</Button>
|
||||||
|
<Button type="primary" :loading="submitLoading" @click="saveCategorySpec">提交</Button>
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
|
</Card>
|
||||||
|
|
||||||
<Modal :title="modalSpecTitle" v-model="modalSpecVisible" :mask-closable="false" :width="500">
|
|
||||||
<Form ref="specForm" :model="specForm" :label-width="100">
|
|
||||||
<Select v-model="specForm.categorySpecs" multiple>
|
|
||||||
<Option v-for="item in specifications" :value="item.id" :key="item.id" :label="item.specName">
|
|
||||||
</Option>
|
|
||||||
</Select>
|
|
||||||
</Form>
|
|
||||||
<div slot="footer">
|
|
||||||
<Button type="text" @click="modalSpecVisible = false">取消</Button>
|
|
||||||
<Button type="primary" :loading="submitLoading" @click="saveCategorySpec">提交</Button>
|
|
||||||
</div>
|
|
||||||
</Modal>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
@ -126,22 +128,18 @@ import {
|
||||||
import uploadPicInput from "@/views/my-components/lili/upload-pic-input";
|
import uploadPicInput from "@/views/my-components/lili/upload-pic-input";
|
||||||
import {regular} from "@/utils";
|
import {regular} from "@/utils";
|
||||||
export default {
|
export default {
|
||||||
name: "lili-components",
|
name: "goods-category",
|
||||||
components: {
|
components: {
|
||||||
uploadPicInput,
|
uploadPicInput
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
categoryList: [], // 分类列表
|
categoryList: [], // 分类列表
|
||||||
sortCate: "", //筛选的数据
|
|
||||||
loading: false, // 加载状态
|
loading: false, // 加载状态
|
||||||
selectCount: 0, // 选择数量
|
|
||||||
brands: [], //品牌集合
|
brands: [], //品牌集合
|
||||||
specifications: [], //规格集合
|
specifications: [], //规格集合
|
||||||
categoryId: "", // 分类id
|
categoryId: "", // 分类id
|
||||||
category_brands: [], //已经选择的品牌
|
|
||||||
categorySpecs: [], //已经选择的规格
|
categorySpecs: [], //已经选择的规格
|
||||||
expandLevel: 1, // 展开层级
|
|
||||||
modalType: 0, // 添加或编辑标识
|
modalType: 0, // 添加或编辑标识
|
||||||
modalVisible: false, // 添加或编辑显示
|
modalVisible: false, // 添加或编辑显示
|
||||||
modalBrandVisible: false, //品牌关联编辑显示
|
modalBrandVisible: false, //品牌关联编辑显示
|
||||||
|
@ -149,8 +147,8 @@ export default {
|
||||||
modalTitle: "", // 添加或编辑标题
|
modalTitle: "", // 添加或编辑标题
|
||||||
showParent: false, // 是否展示上级菜单
|
showParent: false, // 是否展示上级菜单
|
||||||
parentTitle: "", // 父级菜单名称
|
parentTitle: "", // 父级菜单名称
|
||||||
modalBrandTitle: "",
|
modalBrandTitle: "", // 品牌弹窗标题
|
||||||
modalSpecTitle: "",
|
modalSpecTitle: "", // 规格弹窗标题
|
||||||
formAdd: {
|
formAdd: {
|
||||||
// 添加或编辑表单对象初始化数据
|
// 添加或编辑表单对象初始化数据
|
||||||
parentId: "",
|
parentId: "",
|
||||||
|
@ -165,7 +163,7 @@ export default {
|
||||||
categoryBrands: [],
|
categoryBrands: [],
|
||||||
},
|
},
|
||||||
brandWay: "", //请求绑定品牌的信息
|
brandWay: "", //请求绑定品牌的信息
|
||||||
specForm: {},
|
specForm: {}, // 规格数据
|
||||||
// 表单验证规则
|
// 表单验证规则
|
||||||
formValidate: {
|
formValidate: {
|
||||||
commissionRate: [
|
commissionRate: [
|
||||||
|
@ -197,22 +195,13 @@ export default {
|
||||||
slot: "action",
|
slot: "action",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
tableData: [],
|
tableData: [], // 表格数据
|
||||||
categoryIndex: 0,
|
categoryIndex: 0, // 分类id
|
||||||
checkedCategoryChildren: "", //选中的分类子级
|
checkedCategoryChildren: "", //选中的分类子级
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// changeSortCate(val) {
|
// 初始化数据
|
||||||
// let way = this.categoryList.find((item, index) => {
|
|
||||||
// if (item.name == val) {
|
|
||||||
// this.categoryIndex = index;
|
|
||||||
// console.log((this.categoryIndex = index));
|
|
||||||
// return item.name == val;
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
// this.tableData = [way];
|
|
||||||
// },
|
|
||||||
init() {
|
init() {
|
||||||
this.getAllList(0);
|
this.getAllList(0);
|
||||||
this.getBrandList();
|
this.getBrandList();
|
||||||
|
@ -239,7 +228,6 @@ export default {
|
||||||
this.categoryId = v.id;
|
this.categoryId = v.id;
|
||||||
this.modalBrandTitle = "品牌关联";
|
this.modalBrandTitle = "品牌关联";
|
||||||
this.brandForm.categoryBrands = res.result.map((item) => item.id);
|
this.brandForm.categoryBrands = res.result.map((item) => item.id);
|
||||||
// this.brandWay = {...res.result}
|
|
||||||
this.modalBrandVisible = true;
|
this.modalBrandVisible = true;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -272,27 +260,22 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 编辑绑定参数
|
||||||
parameterOperation(v) {
|
parameterOperation(v) {
|
||||||
this.$router.push({ name: "parameter", query: { id: v.id } });
|
this.$router.push({ name: "parameter", query: { id: v.id } });
|
||||||
},
|
},
|
||||||
refresh() {
|
// 添加子分类
|
||||||
this.loading = true;
|
|
||||||
let that = this;
|
|
||||||
setTimeout(function () {
|
|
||||||
that.loading = false;
|
|
||||||
}, 1000);
|
|
||||||
},
|
|
||||||
addChildren(v) {
|
addChildren(v) {
|
||||||
this.modalType = 0;
|
this.modalType = 0;
|
||||||
this.modalTitle = "添加子分类";
|
this.modalTitle = "添加子分类";
|
||||||
this.parentTitle = v.name;
|
this.parentTitle = v.name;
|
||||||
this.formAdd.level = eval(v.level + "+1");
|
this.formAdd.level = eval(v.level + "+1");
|
||||||
this.showParent = true;
|
this.showParent = true;
|
||||||
// this.$refs.form.resetFields();
|
|
||||||
delete this.formAdd.id;
|
delete this.formAdd.id;
|
||||||
this.formAdd.parentId = v.id;
|
this.formAdd.parentId = v.id;
|
||||||
this.modalVisible = true;
|
this.modalVisible = true;
|
||||||
},
|
},
|
||||||
|
// 编辑分类
|
||||||
edit(v) {
|
edit(v) {
|
||||||
this.modalType = 1;
|
this.modalType = 1;
|
||||||
this.modalTitle = "编辑";
|
this.modalTitle = "编辑";
|
||||||
|
@ -307,6 +290,7 @@ export default {
|
||||||
this.showParent = false;
|
this.showParent = false;
|
||||||
this.modalVisible = true;
|
this.modalVisible = true;
|
||||||
},
|
},
|
||||||
|
// 添加一级分类
|
||||||
addParent() {
|
addParent() {
|
||||||
this.modalType = 0;
|
this.modalType = 0;
|
||||||
this.modalTitle = "添加一级分类";
|
this.modalTitle = "添加一级分类";
|
||||||
|
@ -317,6 +301,7 @@ export default {
|
||||||
this.formAdd.parentId = 0;
|
this.formAdd.parentId = 0;
|
||||||
this.modalVisible = true;
|
this.modalVisible = true;
|
||||||
},
|
},
|
||||||
|
// 提交
|
||||||
Submit() {
|
Submit() {
|
||||||
this.$refs.form.validate((valid) => {
|
this.$refs.form.validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
|
@ -348,10 +333,10 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 删除分类
|
||||||
remove(v) {
|
remove(v) {
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "确认删除",
|
title: "确认删除",
|
||||||
// 记得确认修改此处
|
|
||||||
content: "您确认要删除 " + v.name + " ?",
|
content: "您确认要删除 " + v.name + " ?",
|
||||||
loading: true,
|
loading: true,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
|
@ -407,7 +392,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// 获取分类数据
|
||||||
getAllList(parent_id) {
|
getAllList(parent_id) {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
getCategoryTree(parent_id).then((res) => {
|
getCategoryTree(parent_id).then((res) => {
|
||||||
|
@ -427,6 +412,7 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 启用分类
|
||||||
enable(v) {
|
enable(v) {
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "确认启用",
|
title: "确认启用",
|
||||||
|
@ -448,6 +434,7 @@ export default {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 禁用分类
|
||||||
disable(v) {
|
disable(v) {
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "确认禁用",
|
title: "确认禁用",
|
||||||
|
@ -476,14 +463,4 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.wrapper {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background: #fff;
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.operation {
|
|
||||||
margin-bottom: 2vh;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -116,7 +116,6 @@ import {
|
||||||
} from "@/api/goods";
|
} from "@/api/goods";
|
||||||
export default {
|
export default {
|
||||||
name: "categoryParams",
|
name: "categoryParams",
|
||||||
components: {},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
/** 分类ID */
|
/** 分类ID */
|
||||||
|
@ -127,19 +126,17 @@ export default {
|
||||||
modalType: 0,
|
modalType: 0,
|
||||||
/** 添加或编辑标题 */
|
/** 添加或编辑标题 */
|
||||||
modalTitle: "",
|
modalTitle: "",
|
||||||
modalTitle1: "",
|
|
||||||
/** 参数添加或编辑弹出框 */
|
/** 参数添加或编辑弹出框 */
|
||||||
dialogParamsVisible: false,
|
dialogParamsVisible: false,
|
||||||
/** 参数组添加或编辑弹出框 */
|
/** 参数组添加或编辑弹出框 */
|
||||||
dialogParamsGroupVisible: false,
|
dialogParamsGroupVisible: false,
|
||||||
/** 参数ID **/
|
|
||||||
paramId: "",
|
|
||||||
//参数表单
|
//参数表单
|
||||||
paramForm: {},
|
paramForm: {},
|
||||||
/** 参数值 **/
|
/** 参数值 **/
|
||||||
ops:{
|
ops:{
|
||||||
options: []
|
options: []
|
||||||
},
|
},
|
||||||
|
// 参数表单
|
||||||
paramGroupForm: {},
|
paramGroupForm: {},
|
||||||
/** 添加、编辑参数 规格 */
|
/** 添加、编辑参数 规格 */
|
||||||
formValidate: {
|
formValidate: {
|
||||||
|
@ -161,6 +158,7 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
// 初始化数据
|
||||||
init() {
|
init() {
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
|
@ -207,6 +205,7 @@ export default {
|
||||||
this.modalTitle = "修改参数组";
|
this.modalTitle = "修改参数组";
|
||||||
this.dialogParamsGroupVisible = true;
|
this.dialogParamsGroupVisible = true;
|
||||||
},
|
},
|
||||||
|
// 添加参数
|
||||||
handleAddParamsGroup() {
|
handleAddParamsGroup() {
|
||||||
this.paramGroupForm = {
|
this.paramGroupForm = {
|
||||||
|
|
||||||
|
@ -279,6 +278,7 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 获取分类列表
|
||||||
getDataList() {
|
getDataList() {
|
||||||
getCategoryParamsListData(this.categoryId).then((res) => {
|
getCategoryParamsListData(this.categoryId).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
|
|
@ -1,27 +1,25 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="search">
|
<div class="search">
|
||||||
<Card>
|
<Card>
|
||||||
<Row @keydown.enter.native="handleSearch">
|
<Form
|
||||||
<Form
|
@keydown.enter.native="handleSearch"
|
||||||
ref="searchForm"
|
ref="searchForm"
|
||||||
:model="searchForm"
|
:model="searchForm"
|
||||||
inline
|
inline
|
||||||
:label-width="70"
|
:label-width="70"
|
||||||
class="search-form"
|
class="search-form"
|
||||||
>
|
>
|
||||||
<Form-item label="规格名称" prop="specName">
|
<Form-item label="规格名称" prop="specName">
|
||||||
<Input
|
<Input
|
||||||
type="text"
|
type="text"
|
||||||
v-model="searchForm.specName"
|
v-model="searchForm.specName"
|
||||||
placeholder="请输入规格名称"
|
placeholder="请输入规格名称"
|
||||||
clearable
|
clearable
|
||||||
style="width: 200px"
|
style="width: 200px"
|
||||||
/>
|
/>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
|
<Button @click="handleSearch" type="primary" class="search-btn">搜索</Button>
|
||||||
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
|
</Form>
|
||||||
</Form>
|
|
||||||
</Row>
|
|
||||||
<Row class="operation padding-row">
|
<Row class="operation padding-row">
|
||||||
<Button @click="add" type="primary">添加</Button>
|
<Button @click="add" type="primary">添加</Button>
|
||||||
<Button @click="delAll">批量删除</Button>
|
<Button @click="delAll">批量删除</Button>
|
||||||
|
@ -58,7 +56,7 @@
|
||||||
:mask-closable="false"
|
:mask-closable="false"
|
||||||
:width="500"
|
:width="500"
|
||||||
>
|
>
|
||||||
<Form ref="form" :model="form" :label-width="100" :rules="formValidate">
|
<Form ref="form" :model="form" :label-width="100">
|
||||||
<FormItem label="规格名称" prop="specName">
|
<FormItem label="规格名称" prop="specName">
|
||||||
<Input v-model="form.specName" maxlength="30" clearable style="width: 100%"/>
|
<Input v-model="form.specName" maxlength="30" clearable style="width: 100%"/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
@ -73,11 +71,7 @@
|
||||||
popper-class="spec-values-popper"
|
popper-class="spec-values-popper"
|
||||||
style="width: 100%; text-align: left; margin-right: 10px"
|
style="width: 100%; text-align: left; margin-right: 10px"
|
||||||
>
|
>
|
||||||
<Option
|
<Option v-for="item in specValue" :value="item" :label="item" :key="item">
|
||||||
v-for="item in specValue"
|
|
||||||
:value="item"
|
|
||||||
:label="item"
|
|
||||||
>
|
|
||||||
</Option>
|
</Option>
|
||||||
</Select>
|
</Select>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
@ -110,7 +104,6 @@ export default {
|
||||||
modalType: 0, // 添加或编辑标识
|
modalType: 0, // 添加或编辑标识
|
||||||
modalVisible: false, // 添加或编辑显示
|
modalVisible: false, // 添加或编辑显示
|
||||||
modalTitle: "", // 添加或编辑标题
|
modalTitle: "", // 添加或编辑标题
|
||||||
specTitle: "", // 添加或编辑规格值
|
|
||||||
searchForm: {
|
searchForm: {
|
||||||
// 搜索框初始化对象
|
// 搜索框初始化对象
|
||||||
pageNumber: 1, // 当前页数
|
pageNumber: 1, // 当前页数
|
||||||
|
@ -125,8 +118,6 @@ export default {
|
||||||
},
|
},
|
||||||
/** 编辑规格值 */
|
/** 编辑规格值 */
|
||||||
specValue: [],
|
specValue: [],
|
||||||
// 表单验证规则
|
|
||||||
formValidate: {},
|
|
||||||
submitLoading: false, // 添加或编辑提交状态
|
submitLoading: false, // 添加或编辑提交状态
|
||||||
selectList: [], // 多选数据
|
selectList: [], // 多选数据
|
||||||
selectCount: 0, // 多选计数
|
selectCount: 0, // 多选计数
|
||||||
|
@ -320,10 +311,10 @@ export default {
|
||||||
}
|
}
|
||||||
this.modalVisible = true;
|
this.modalVisible = true;
|
||||||
},
|
},
|
||||||
|
// 删除规格
|
||||||
remove(v) {
|
remove(v) {
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "确认删除",
|
title: "确认删除",
|
||||||
// 记得确认修改此处
|
|
||||||
content: "您确认要删除 " + v.specName + " ?",
|
content: "您确认要删除 " + v.specName + " ?",
|
||||||
loading: true,
|
loading: true,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
|
@ -338,6 +329,7 @@ export default {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 批量删除
|
||||||
delAll() {
|
delAll() {
|
||||||
if (this.selectCount <= 0) {
|
if (this.selectCount <= 0) {
|
||||||
this.$Message.warning("您还未选择要删除的数据");
|
this.$Message.warning("您还未选择要删除的数据");
|
||||||
|
|
|
@ -1,48 +0,0 @@
|
||||||
.left-container {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right-container {
|
|
||||||
float: left;
|
|
||||||
margin-left: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.img {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
img {
|
|
||||||
vertical-align: middle;
|
|
||||||
border-style: none;
|
|
||||||
}
|
|
||||||
.product {
|
|
||||||
width: 140px;
|
|
||||||
height: 160px;
|
|
||||||
border: 1px solid #d9d9d9;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
.show{
|
|
||||||
label{
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
margin-top: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
font-size: 12px;
|
|
||||||
color: #666;
|
|
||||||
margin-top: 4px;
|
|
||||||
display: block;
|
|
||||||
float: left;
|
|
||||||
margin-right: 2px;
|
|
||||||
}
|
|
||||||
.border-b {
|
|
||||||
border-bottom: 1px solid #e9e9e9;
|
|
||||||
width: 500px;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
margin-top: 12px;
|
|
||||||
}
|
|
||||||
.div-height{
|
|
||||||
line-height: 25px;
|
|
||||||
}
|
|
|
@ -1,8 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="search">
|
<div>
|
||||||
<Card>
|
<Card>
|
||||||
<Row @keydown.enter.native="handleSearch">
|
<Row>
|
||||||
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
|
<Form ref="searchForm" :model="searchForm" @keydown.enter.native="handleSearch" inline :label-width="70" class="search-form">
|
||||||
<Form-item label="会员名称" prop="memberName">
|
<Form-item label="会员名称" prop="memberName">
|
||||||
<Input type="text" v-model="searchForm.memberName" placeholder="请输入会员名称" clearable style="width: 200px"/>
|
<Input type="text" v-model="searchForm.memberName" placeholder="请输入会员名称" clearable style="width: 200px"/>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
|
@ -350,5 +350,52 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import "./index.scss";
|
.left-container {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-container {
|
||||||
|
float: left;
|
||||||
|
margin-left: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
vertical-align: middle;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
.product {
|
||||||
|
width: 140px;
|
||||||
|
height: 160px;
|
||||||
|
border: 1px solid #d9d9d9;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
.show{
|
||||||
|
label{
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #666;
|
||||||
|
margin-top: 4px;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
margin-right: 2px;
|
||||||
|
}
|
||||||
|
.border-b {
|
||||||
|
border-bottom: 1px solid #e9e9e9;
|
||||||
|
width: 500px;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
.div-height{
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -11,13 +11,13 @@
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
:maxlength="maxlength"
|
:maxlength="maxlength"
|
||||||
>
|
>
|
||||||
<Poptip slot="append" transfer trigger="hover" title="图片预览" placement="right" width="350">
|
<Poptip slot="append" transfer trigger="hover" title="图片预览" placement="right">
|
||||||
<Icon type="md-eye" class="see-icon" />
|
<Icon type="md-eye" class="see-icon" />
|
||||||
<div slot="content">
|
<div slot="content">
|
||||||
<img :src="currentValue" alt="该资源不存在" style="width: 100%;margin: 0 auto;display: block;" />
|
<img :src="currentValue" alt="该资源不存在" style="width: 100%;margin: 0 auto;display: block;" />
|
||||||
<a @click="viewImage=true" style="margin-top:5px;text-align:right;display:block">查看大图</a>
|
<a @click="viewImage=true" style="margin-top:5px;text-align:right;display:block">查看大图</a>
|
||||||
</div>
|
</div>
|
||||||
</Poptip>
|
</Poptip>
|
||||||
</Input>
|
</Input>
|
||||||
|
|
||||||
<Upload
|
<Upload
|
||||||
|
@ -54,7 +54,10 @@ export default {
|
||||||
name: "uploadPicInput",
|
name: "uploadPicInput",
|
||||||
props: {
|
props: {
|
||||||
value: String,
|
value: String,
|
||||||
size: String,
|
size: {
|
||||||
|
default: 'default',
|
||||||
|
type: String
|
||||||
|
},
|
||||||
placeholder: {
|
placeholder: {
|
||||||
type: String,
|
type: String,
|
||||||
default: "图片链接"
|
default: "图片链接"
|
||||||
|
@ -91,11 +94,13 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
// 初始化
|
||||||
init() {
|
init() {
|
||||||
this.accessToken = {
|
this.accessToken = {
|
||||||
accessToken: this.getStore("accessToken")
|
accessToken: this.getStore("accessToken")
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
// 格式校验
|
||||||
handleFormatError(file) {
|
handleFormatError(file) {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.$Notice.warning({
|
this.$Notice.warning({
|
||||||
|
@ -106,6 +111,7 @@ export default {
|
||||||
" ’格式不正确, 请选择 .jpg .jpeg .png .gif .bmp格式文件"
|
" ’格式不正确, 请选择 .jpg .jpeg .png .gif .bmp格式文件"
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 大小校验
|
||||||
handleMaxSize(file) {
|
handleMaxSize(file) {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.$Notice.warning({
|
this.$Notice.warning({
|
||||||
|
@ -113,10 +119,12 @@ export default {
|
||||||
desc: "所选文件‘ " + file.name + " ’大小过大, 不得超过 " + this.maxSize + "M."
|
desc: "所选文件‘ " + file.name + " ’大小过大, 不得超过 " + this.maxSize + "M."
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 上传前
|
||||||
beforeUpload() {
|
beforeUpload() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
|
// 上传成功
|
||||||
handleSuccess(res, file) {
|
handleSuccess(res, file) {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
@ -127,15 +135,18 @@ export default {
|
||||||
this.$Message.error(res.message);
|
this.$Message.error(res.message);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// 上传失败
|
||||||
handleError(error, file, fileList) {
|
handleError(error, file, fileList) {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.$Message.error(error.toString());
|
this.$Message.error(error.toString());
|
||||||
},
|
},
|
||||||
|
// 上传成功回显
|
||||||
handleChange(v) {
|
handleChange(v) {
|
||||||
this.$emit("input", this.currentValue);
|
this.$emit("input", this.currentValue);
|
||||||
this.$emit("on-change", this.currentValue);
|
this.$emit("on-change", this.currentValue);
|
||||||
this.$attrs.rollback && this.$attrs.rollback()
|
this.$attrs.rollback && this.$attrs.rollback()
|
||||||
},
|
},
|
||||||
|
// 初始值
|
||||||
setCurrentValue(value) {
|
setCurrentValue(value) {
|
||||||
if (value === this.currentValue) {
|
if (value === this.currentValue) {
|
||||||
return;
|
return;
|
||||||
|
@ -158,9 +169,6 @@ export default {
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.see-icon {
|
.see-icon {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-left: -32px;
|
|
||||||
margin-top: 3px;
|
|
||||||
padding: 7px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:data="data"
|
:data="data"
|
||||||
ref="table"
|
ref="table"
|
||||||
|
class="mt_10"
|
||||||
sortable="custom"
|
sortable="custom"
|
||||||
>
|
>
|
||||||
<template slot-scope="{ row }" slot="applyEndTime">
|
<template slot-scope="{ row }" slot="applyEndTime">
|
||||||
|
@ -64,15 +65,27 @@
|
||||||
</template>
|
</template>
|
||||||
<template slot-scope="{ row }" slot="action">
|
<template slot-scope="{ row }" slot="action">
|
||||||
<div>
|
<div>
|
||||||
<Button type="success" size="small" @click="view(row)"
|
<Button type="info" size="small" @click="view(row)">查看</Button>
|
||||||
>查看</Button
|
<Button
|
||||||
>
|
type="error"
|
||||||
|
v-if="row.promotionStatus === 'START'"
|
||||||
|
style="margin-left:5px"
|
||||||
|
size="small"
|
||||||
|
@click="openOrClose(row)"
|
||||||
|
>关闭</Button>
|
||||||
|
<Button
|
||||||
|
type="success"
|
||||||
|
v-if="row.promotionStatus === 'CLOSE' || row.promotionStatus === 'NEW'"
|
||||||
|
style="margin-left:5px"
|
||||||
|
size="small"
|
||||||
|
@click="openOrClose(row)"
|
||||||
|
>开启</Button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</Table>
|
</Table>
|
||||||
<Row type="flex" justify="end" class="page operation">
|
<Row type="flex" justify="end" class="page operation">
|
||||||
<Page
|
<Page
|
||||||
:current="searchForm.pageNumber + 1"
|
:current="searchForm.pageNumber"
|
||||||
:total="total"
|
:total="total"
|
||||||
:page-size="searchForm.pageSize"
|
:page-size="searchForm.pageSize"
|
||||||
@on-change="changePage"
|
@on-change="changePage"
|
||||||
|
@ -88,14 +101,14 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getFullDiscountList } from "@/api/promotion.js";
|
import { getFullDiscountList, updateFullDiscount } from "@/api/promotion.js";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
loading: false, // 表单加载状态
|
loading: false, // 表单加载状态
|
||||||
searchForm: { // 请求参数
|
searchForm: { // 请求参数
|
||||||
pageNumber: 0,
|
pageNumber: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
sort: "startTime",
|
sort: "startTime",
|
||||||
order: "desc",
|
order: "desc",
|
||||||
|
@ -163,7 +176,7 @@ export default {
|
||||||
title: "操作",
|
title: "操作",
|
||||||
slot: "action",
|
slot: "action",
|
||||||
align: "center",
|
align: "center",
|
||||||
width: 100,
|
width: 140,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
data: [], // 列表数据
|
data: [], // 列表数据
|
||||||
|
@ -173,9 +186,34 @@ export default {
|
||||||
init() {
|
init() {
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
|
// 开启或关闭活动
|
||||||
|
openOrClose (row) {
|
||||||
|
let name = '开启'
|
||||||
|
let status = 'START'
|
||||||
|
if (row.promotionStatus === 'START') {
|
||||||
|
name = '关闭'
|
||||||
|
status = 'CLOSE'
|
||||||
|
}
|
||||||
|
this.$Modal.confirm({
|
||||||
|
title: "提示",
|
||||||
|
// 记得确认修改此处
|
||||||
|
content: `确认${name}此活动吗?需要一定时间才能生效,请耐心等待`,
|
||||||
|
loading: true,
|
||||||
|
onOk: () => {
|
||||||
|
// 删除
|
||||||
|
updateFullDiscount(row.id, status).then((res) => {
|
||||||
|
this.$Modal.remove();
|
||||||
|
if (res.success) {
|
||||||
|
this.$Message.success(`${name}成功`);
|
||||||
|
this.getDataList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
changePage(v) {
|
changePage(v) {
|
||||||
// 改变页数
|
// 改变页数
|
||||||
this.searchForm.pageNumber = v - 1;
|
this.searchForm.pageNumber = v;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
changePageSize(v) {
|
changePageSize(v) {
|
||||||
|
@ -185,7 +223,7 @@ export default {
|
||||||
},
|
},
|
||||||
handleSearch() {
|
handleSearch() {
|
||||||
// 搜索
|
// 搜索
|
||||||
this.searchForm.pageNumber = 0;
|
this.searchForm.pageNumber = 1;
|
||||||
this.searchForm.pageSize = 10;
|
this.searchForm.pageSize = 10;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
|
@ -210,6 +248,7 @@ export default {
|
||||||
// 查看
|
// 查看
|
||||||
this.$router.push({ name: "full-cut-detail", query: { id: row.id } });
|
this.$router.push({ name: "full-cut-detail", query: { id: row.id } });
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.init();
|
this.init();
|
||||||
|
|
|
@ -175,3 +175,7 @@ export const getFullDiscountById = (id) => {
|
||||||
export const delFullDiscount = (id) => {
|
export const delFullDiscount = (id) => {
|
||||||
return deleteRequest(`/promotion/fullDiscount/${id}`)
|
return deleteRequest(`/promotion/fullDiscount/${id}`)
|
||||||
}
|
}
|
||||||
|
// 开启、关闭满减活动
|
||||||
|
export const updateFullDiscount = (id, promotionStatus) => {
|
||||||
|
return putRequest(`/promotion/fullDiscount/status/${id}/${promotionStatus}`)
|
||||||
|
}
|
||||||
|
|
|
@ -233,6 +233,7 @@ util.openNewPage = function (vm, name, argu, query) {
|
||||||
if (query) {
|
if (query) {
|
||||||
tag.query = query;
|
tag.query = query;
|
||||||
}
|
}
|
||||||
|
console.log(tag);
|
||||||
vm.$store.commit('increateTag', tag);
|
vm.$store.commit('increateTag', tag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ const app = {
|
||||||
navList: [], // 顶部菜单
|
navList: [], // 顶部菜单
|
||||||
currNav: "", // 当前顶部菜单name
|
currNav: "", // 当前顶部菜单name
|
||||||
currNavTitle: "", // 当前顶部菜单标题
|
currNavTitle: "", // 当前顶部菜单标题
|
||||||
cachePage: [],
|
cachePage: [], // 缓存的页面
|
||||||
lang: '',
|
lang: '',
|
||||||
isFullScreen: false,
|
isFullScreen: false,
|
||||||
openedSubmenuArr: [], // 要展开的菜单数组
|
openedSubmenuArr: [], // 要展开的菜单数组
|
||||||
|
@ -93,6 +93,7 @@ const app = {
|
||||||
state.cachePage.splice(index, 1);
|
state.cachePage.splice(index, 1);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
localStorage.cachePage = JSON.stringify(state.cachePage);
|
||||||
},
|
},
|
||||||
initCachepage(state) {
|
initCachepage(state) {
|
||||||
if (localStorage.cachePage) {
|
if (localStorage.cachePage) {
|
||||||
|
@ -120,6 +121,7 @@ const app = {
|
||||||
clearAllTags(state) {
|
clearAllTags(state) {
|
||||||
state.storeOpenedList.splice(1);
|
state.storeOpenedList.splice(1);
|
||||||
state.cachePage.length = 0;
|
state.cachePage.length = 0;
|
||||||
|
localStorage.cachePage = '';
|
||||||
localStorage.storeOpenedList = JSON.stringify(state.storeOpenedList);
|
localStorage.storeOpenedList = JSON.stringify(state.storeOpenedList);
|
||||||
},
|
},
|
||||||
clearOtherTags(state, vm) {
|
clearOtherTags(state, vm) {
|
||||||
|
@ -140,6 +142,7 @@ const app = {
|
||||||
return item == currentName;
|
return item == currentName;
|
||||||
});
|
});
|
||||||
state.cachePage = newCachepage;
|
state.cachePage = newCachepage;
|
||||||
|
localStorage.cachePage = JSON.stringify(state.cachePage);
|
||||||
localStorage.storeOpenedList = JSON.stringify(state.storeOpenedList);
|
localStorage.storeOpenedList = JSON.stringify(state.storeOpenedList);
|
||||||
},
|
},
|
||||||
setOpenedList(state) {
|
setOpenedList(state) {
|
||||||
|
@ -165,6 +168,7 @@ const app = {
|
||||||
setMessageCount(state, count) {
|
setMessageCount(state, count) {
|
||||||
state.messageCount = count;
|
state.messageCount = count;
|
||||||
},
|
},
|
||||||
|
// 新增页签
|
||||||
increateTag(state, tagObj) {
|
increateTag(state, tagObj) {
|
||||||
if (!Util.oneOf(tagObj.name, state.dontCache)) {
|
if (!Util.oneOf(tagObj.name, state.dontCache)) {
|
||||||
state.cachePage.push(tagObj.name);
|
state.cachePage.push(tagObj.name);
|
||||||
|
|
|
@ -11,15 +11,15 @@
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
:maxlength="maxlength"
|
:maxlength="maxlength"
|
||||||
>
|
>
|
||||||
<Button slot="append" icon="md-eye"></Button>
|
<Poptip slot="append" transfer trigger="hover" title="图片预览" placement="right">
|
||||||
|
<Icon type="md-eye" class="see-icon" />
|
||||||
|
<div slot="content">
|
||||||
|
<img :src="currentValue" alt="该资源不存在" style="width: 100%;margin: 0 auto;display: block;" />
|
||||||
|
<a @click="viewImage=true" style="margin-top:5px;text-align:right;display:block">查看大图</a>
|
||||||
|
</div>
|
||||||
|
</Poptip>
|
||||||
</Input>
|
</Input>
|
||||||
<Poptip transfer trigger="hover" title="图片预览" placement="right" width="350">
|
|
||||||
<Icon type="md-eye" class="see-icon" />
|
|
||||||
<div slot="content">
|
|
||||||
<img :src="currentValue" alt="该资源不存在" style="width: 100%;margin: 0 auto;display: block;" />
|
|
||||||
<a @click="viewImage=true" style="margin-top:5px;text-align:right;display:block">查看大图</a>
|
|
||||||
</div>
|
|
||||||
</Poptip>
|
|
||||||
<Upload
|
<Upload
|
||||||
:action="uploadFileUrl"
|
:action="uploadFileUrl"
|
||||||
:headers="accessToken"
|
:headers="accessToken"
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
ref="up"
|
ref="up"
|
||||||
class="upload"
|
class="upload"
|
||||||
>
|
>
|
||||||
<Button :loading="loading" :size="size" :disabled="disabled" :icon="icon">上传图片</Button>
|
<Button :loading="loading" :size="size" :disabled="disabled">上传图片</Button>
|
||||||
</Upload>
|
</Upload>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -166,9 +166,6 @@ export default {
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.see-icon {
|
.see-icon {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-left: -32px;
|
|
||||||
margin-top: 3px;
|
|
||||||
padding: 7px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -351,7 +351,6 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
// 编辑
|
// 编辑
|
||||||
delete params.consumeLimit;
|
delete params.consumeLimit;
|
||||||
delete params.couponDiscount;
|
|
||||||
delete params.updateTime;
|
delete params.updateTime;
|
||||||
|
|
||||||
editShopCoupon(params).then((res) => {
|
editShopCoupon(params).then((res) => {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="full-cut">
|
<div class="search">
|
||||||
<Card>
|
<Card>
|
||||||
<Form
|
<Form
|
||||||
ref="searchForm"
|
ref="searchForm"
|
||||||
|
@ -73,25 +73,38 @@
|
||||||
v-if="row.promotionStatus == 'NEW'"
|
v-if="row.promotionStatus == 'NEW'"
|
||||||
size="small"
|
size="small"
|
||||||
@click="edit(row)"
|
@click="edit(row)"
|
||||||
>编辑</Button
|
>编辑</Button>
|
||||||
>
|
<Button type="info" v-else size="small" @click="edit(row)">查看</Button>
|
||||||
<Button type="success" v-else size="small" @click="edit(row)"
|
<Button
|
||||||
>查看</Button
|
type="success"
|
||||||
>
|
v-if="row.promotionStatus === 'START'"
|
||||||
|
ghost
|
||||||
|
style="margin-left:5px"
|
||||||
|
size="small"
|
||||||
|
@click="openOrClose(row)"
|
||||||
|
>关闭</Button>
|
||||||
|
<Button
|
||||||
|
type="success"
|
||||||
|
v-if="row.promotionStatus === 'CLOSE' || row.promotionStatus === 'NEW'"
|
||||||
|
ghost
|
||||||
|
style="margin-left:5px"
|
||||||
|
size="small"
|
||||||
|
@click="openOrClose(row)"
|
||||||
|
>开启</Button>
|
||||||
<Button
|
<Button
|
||||||
type="error"
|
type="error"
|
||||||
:disabled="row.promotionStatus == 'START'"
|
:disabled="row.promotionStatus == 'START'"
|
||||||
ghost
|
ghost
|
||||||
|
style="margin-left:5px"
|
||||||
size="small"
|
size="small"
|
||||||
@click="del(row)"
|
@click="del(row)"
|
||||||
>删除</Button
|
>删除</Button>
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</Table>
|
</Table>
|
||||||
<Row type="flex" justify="end" class="page operation">
|
<Row type="flex" justify="end" class="page operation">
|
||||||
<Page
|
<Page
|
||||||
:current="searchForm.pageNumber + 1"
|
:current="searchForm.pageNumber"
|
||||||
:total="total"
|
:total="total"
|
||||||
:page-size="searchForm.pageSize"
|
:page-size="searchForm.pageSize"
|
||||||
@on-change="changePage"
|
@on-change="changePage"
|
||||||
|
@ -107,14 +120,14 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getFullDiscountList, delFullDiscount } from "@/api/promotion.js";
|
import { getFullDiscountList, delFullDiscount, updateFullDiscount } from "@/api/promotion.js";
|
||||||
export default {
|
export default {
|
||||||
name: 'full-cut',
|
name: 'full-cut',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
loading: false, // 表单加载状态
|
loading: false, // 表单加载状态
|
||||||
searchForm: { // 列表请求参数
|
searchForm: { // 列表请求参数
|
||||||
pageNumber: 0,
|
pageNumber: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
sort: "startTime",
|
sort: "startTime",
|
||||||
order: "desc",
|
order: "desc",
|
||||||
|
@ -194,7 +207,7 @@ export default {
|
||||||
},
|
},
|
||||||
// 改变页数
|
// 改变页数
|
||||||
changePage(v) {
|
changePage(v) {
|
||||||
this.searchForm.pageNumber = v - 1;
|
this.searchForm.pageNumber = v;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
// 改变页码
|
// 改变页码
|
||||||
|
@ -204,7 +217,7 @@ export default {
|
||||||
},
|
},
|
||||||
// 搜索
|
// 搜索
|
||||||
handleSearch() {
|
handleSearch() {
|
||||||
this.searchForm.pageNumber = 0;
|
this.searchForm.pageNumber = 1;
|
||||||
this.searchForm.pageSize = 10;
|
this.searchForm.pageSize = 10;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
|
@ -212,7 +225,7 @@ export default {
|
||||||
handleReset() {
|
handleReset() {
|
||||||
this.selectDate = ''
|
this.selectDate = ''
|
||||||
this.searchForm = {}
|
this.searchForm = {}
|
||||||
this.searchForm.pageNumber = 0;
|
this.searchForm.pageNumber = 1;
|
||||||
this.searchForm.pageSize = 10;
|
this.searchForm.pageSize = 10;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
|
@ -239,6 +252,31 @@ export default {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 开启或关闭活动
|
||||||
|
openOrClose (row) {
|
||||||
|
let name = '开启'
|
||||||
|
let status = 'START'
|
||||||
|
if (row.promotionStatus === 'START') {
|
||||||
|
name = '关闭'
|
||||||
|
status = 'CLOSE'
|
||||||
|
}
|
||||||
|
this.$Modal.confirm({
|
||||||
|
title: "提示",
|
||||||
|
// 记得确认修改此处
|
||||||
|
content: `确认${name}此活动吗?需要一定时间才能生效,请耐心等待`,
|
||||||
|
loading: true,
|
||||||
|
onOk: () => {
|
||||||
|
// 删除
|
||||||
|
updateFullDiscount(row.id, status).then((res) => {
|
||||||
|
this.$Modal.remove();
|
||||||
|
if (res.success) {
|
||||||
|
this.$Message.success(`${name}成功`);
|
||||||
|
this.getDataList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
// 获取列表数据
|
// 获取列表数据
|
||||||
getDataList() {
|
getDataList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Card>
|
<Card>
|
||||||
<Form ref="form" :model="form" :label-width="120" :rules="formRule">
|
<Form ref="form" :model="form" :label-width="120" :rules="formRule" class="search-form">
|
||||||
<div class="base-info-item">
|
<div class="base-info-item">
|
||||||
<h4>基本信息</h4>
|
<h4>基本信息</h4>
|
||||||
<div class="form-item-view">
|
<div class="form-item-view">
|
||||||
|
@ -100,17 +100,17 @@
|
||||||
:disabled="form.promotionStatus != 'NEW'"
|
:disabled="form.promotionStatus != 'NEW'"
|
||||||
v-model="form.isFreeFreight"
|
v-model="form.isFreeFreight"
|
||||||
>免邮费</Checkbox
|
>免邮费</Checkbox
|
||||||
>
|
>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
:disabled="form.promotionStatus != 'NEW'"
|
:disabled="form.promotionStatus != 'NEW'"
|
||||||
v-model="form.isCoupon"
|
v-model="form.isCoupon"
|
||||||
>送优惠券</Checkbox
|
>送优惠券</Checkbox
|
||||||
>
|
>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
:disabled="form.promotionStatus != 'NEW'"
|
:disabled="form.promotionStatus != 'NEW'"
|
||||||
v-model="form.isGift"
|
v-model="form.isGift"
|
||||||
>送赠品</Checkbox
|
>送赠品</Checkbox
|
||||||
>
|
>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
:disabled="form.promotionStatus != 'NEW'"
|
:disabled="form.promotionStatus != 'NEW'"
|
||||||
v-if="JSON.parse(getStore('userInfo')).selfOperated"
|
v-if="JSON.parse(getStore('userInfo')).selfOperated"
|
||||||
|
|
Loading…
Reference in New Issue