买家优惠券页面调整,订单导出添加参数,订单详情样式调整
parent
75bff1edc4
commit
6351bdb633
|
@ -1,110 +0,0 @@
|
||||||
<template>
|
|
||||||
<div class="wrapper">
|
|
||||||
<empty v-if="list.length==0" />
|
|
||||||
<ul class="coupon-list" v-else>
|
|
||||||
<li v-for="(item, index) in list" class="coupon-item" :key="index">
|
|
||||||
<div class="c-left">
|
|
||||||
<div>
|
|
||||||
<span v-if="item.couponType === 'PRICE'" class="fontsize_12 global_color">¥<span class="price">{{item.price | unitPrice}}</span></span>
|
|
||||||
<span v-if="item.couponType === 'DISCOUNT'" class="fontsize_12 global_color"><span class="price">{{item.couponDiscount}}</span>折</span>
|
|
||||||
<span class="describe">满{{item.consumeThreshold}}元可用</span>
|
|
||||||
</div>
|
|
||||||
<p>使用范围:{{useScope(item.scopeType, item.storeName)}}</p>
|
|
||||||
<p>有效期:{{item.endTime}}</p>
|
|
||||||
</div>
|
|
||||||
<b></b>
|
|
||||||
<a class="c-right" @click="go(item)">立即使用</a>
|
|
||||||
<i class="circle-top"></i>
|
|
||||||
<i class="circle-bottom"></i>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<Page :total="total" @on-change="changePageNum"
|
|
||||||
v-if="list.length && total > params.pageNumber"
|
|
||||||
class="pageration"
|
|
||||||
@on-page-size-change="changePageSize"
|
|
||||||
:page-size="params.pageSize"
|
|
||||||
show-sizer>
|
|
||||||
</Page>
|
|
||||||
<Spin v-if="loading" fix></Spin>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { memberCouponList } from '@/api/member.js';
|
|
||||||
export default {
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
loading: false, // 列表加载状态
|
|
||||||
params: { // 请求参数
|
|
||||||
pageNumber: 1,
|
|
||||||
pageSize: 10
|
|
||||||
},
|
|
||||||
total: 0, // 优惠券总数
|
|
||||||
list: [] // 优惠券列表
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
getList () { // 获取优惠券列表
|
|
||||||
this.loading = true
|
|
||||||
memberCouponList(this.params).then(res => {
|
|
||||||
this.loading = false
|
|
||||||
if (res.success) {
|
|
||||||
this.list = res.result.records
|
|
||||||
this.total = res.result.total
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
|
|
||||||
go (item) { // 根据使用条件跳转商品列表页面
|
|
||||||
if (item.storeId !== 'platform') {
|
|
||||||
this.$router.push({path: '/merchant', query: {id: item.storeId}})
|
|
||||||
} else {
|
|
||||||
if (item.scopeType === 'PORTION_GOODS_CATEGORY') {
|
|
||||||
this.$router.push({path: '/goodsList', query: {categoryId: item.scopeId}})
|
|
||||||
} else {
|
|
||||||
this.$router.push({path: '/goodsList'})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
changePageNum (val) { // 分页改变页码
|
|
||||||
this.params.pageNumber = val;
|
|
||||||
this.getList()
|
|
||||||
},
|
|
||||||
|
|
||||||
changePageSize (val) { // 分页改变页数
|
|
||||||
this.pageNumber = 1;
|
|
||||||
this.params.pageSize = val;
|
|
||||||
this.getList()
|
|
||||||
},
|
|
||||||
|
|
||||||
useScope (type, storeName) { // 根据字段返回 优惠券适用范围
|
|
||||||
let shop = '平台';
|
|
||||||
let goods = '全部商品'
|
|
||||||
if (storeName !== 'platform') shop = storeName
|
|
||||||
switch (type) {
|
|
||||||
case 'ALL':
|
|
||||||
goods = '全部商品'
|
|
||||||
break;
|
|
||||||
case 'PORTION_GOODS':
|
|
||||||
goods = '部分商品'
|
|
||||||
break;
|
|
||||||
case 'PORTION_GOODS_CATEGORY':
|
|
||||||
goods = '部分分类商品'
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return `${shop}${goods}可用`
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mounted () {
|
|
||||||
this.getList()
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped lang="scss">
|
|
||||||
@import '../../assets/styles/coupon.scss';
|
|
||||||
.pageration {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -4,7 +4,7 @@
|
||||||
<!-- LOGO 搜索 -->
|
<!-- LOGO 搜索 -->
|
||||||
<div class="width_1200 logo">
|
<div class="width_1200 logo">
|
||||||
<div>
|
<div>
|
||||||
<router-link to="/"><img :src="logoImg" alt="lili shop" title="lilishop" /></router-link>
|
<router-link to="/"><img :src="$store.state.logoImg" alt="lili shop" title="lilishop" /></router-link>
|
||||||
<div>
|
<div>
|
||||||
购物车(<span>{{ goodsTotal }}</span>)
|
购物车(<span>{{ goodsTotal }}</span>)
|
||||||
</div>
|
</div>
|
||||||
|
@ -136,26 +136,25 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Promotion from "@/components/goodsDetail/Promotion";
|
import Promotion from '@/components/goodsDetail/Promotion';
|
||||||
import Search from "@/components/Search";
|
import Search from '@/components/Search';
|
||||||
import ShowLikeGoods from "@/components/like";
|
import ShowLikeGoods from '@/components/like';
|
||||||
import * as APICart from "@/api/cart";
|
import * as APICart from '@/api/cart';
|
||||||
import * as APIMember from "@/api/member";
|
import * as APIMember from '@/api/member';
|
||||||
import { getLogo } from "@/api/common.js";
|
import { getLogo } from '@/api/common.js';
|
||||||
export default {
|
export default {
|
||||||
name: "Cart",
|
name: 'Cart',
|
||||||
beforeRouteEnter(to, from, next) {
|
beforeRouteEnter (to, from, next) {
|
||||||
window.scrollTo(0, 0);
|
window.scrollTo(0, 0);
|
||||||
next();
|
next();
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
Search,
|
Search,
|
||||||
ShowLikeGoods,
|
ShowLikeGoods,
|
||||||
Promotion,
|
Promotion
|
||||||
},
|
},
|
||||||
data() {
|
data () {
|
||||||
return {
|
return {
|
||||||
logoImg: "", // logo图
|
|
||||||
couponAvailable: false, // 展示优惠券
|
couponAvailable: false, // 展示优惠券
|
||||||
stepIndex: 0, // 当前处于哪一步,购物车==0,填写订单信息==1,成功提交订单==2
|
stepIndex: 0, // 当前处于哪一步,购物车==0,填写订单信息==1,成功提交订单==2
|
||||||
goodsTotal: 1, // 商品数量
|
goodsTotal: 1, // 商品数量
|
||||||
|
@ -165,45 +164,45 @@ export default {
|
||||||
cartList: [], // 购物车列表
|
cartList: [], // 购物车列表
|
||||||
couponList: [], // 优惠券列表
|
couponList: [], // 优惠券列表
|
||||||
priceDetailDTO: {}, // 价格明细
|
priceDetailDTO: {}, // 价格明细
|
||||||
skuList: [], // sku列表
|
skuList: [] // sku列表
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
methods: {
|
methods: {
|
||||||
// 跳转商品详情
|
// 跳转商品详情
|
||||||
goGoodsDetail(skuId, goodsId) {
|
goGoodsDetail (skuId, goodsId) {
|
||||||
let routeUrl = this.$router.resolve({
|
let routeUrl = this.$router.resolve({
|
||||||
path: "/goodsDetail",
|
path: '/goodsDetail',
|
||||||
query: { skuId, goodsId },
|
query: { skuId, goodsId }
|
||||||
});
|
});
|
||||||
window.open(routeUrl.href, "_blank");
|
window.open(routeUrl.href, '_blank');
|
||||||
},
|
},
|
||||||
// 跳转店铺首页
|
// 跳转店铺首页
|
||||||
goShopPage(id) {
|
goShopPage (id) {
|
||||||
let routeUrl = this.$router.resolve({
|
let routeUrl = this.$router.resolve({
|
||||||
path: "/Merchant",
|
path: '/Merchant',
|
||||||
query: { id },
|
query: { id }
|
||||||
});
|
});
|
||||||
window.open(routeUrl.href, "_blank");
|
window.open(routeUrl.href, '_blank');
|
||||||
},
|
},
|
||||||
// 收藏商品
|
// 收藏商品
|
||||||
collectGoods(id) {
|
collectGoods (id) {
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "收藏",
|
title: '收藏',
|
||||||
content: "<p>商品收藏后可在个人中心我的收藏查看</p>",
|
content: '<p>商品收藏后可在个人中心我的收藏查看</p>',
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
APIMember.collectGoods("GOODS", id).then((res) => {
|
APIMember.collectGoods('GOODS', id).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$Message.success("收藏商品成功");
|
this.$Message.success('收藏商品成功');
|
||||||
this.getCartList();
|
this.getCartList();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onCancel: () => {},
|
onCancel: () => {}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 删除商品
|
// 删除商品
|
||||||
delGoods(id) {
|
delGoods (id) {
|
||||||
const idArr = [];
|
const idArr = [];
|
||||||
if (!id) {
|
if (!id) {
|
||||||
const list = this.cartList;
|
const list = this.cartList;
|
||||||
|
@ -216,50 +215,50 @@ export default {
|
||||||
idArr.push(id);
|
idArr.push(id);
|
||||||
}
|
}
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "删除",
|
title: '删除',
|
||||||
content: "<p>确定要删除该商品吗?</p>",
|
content: '<p>确定要删除该商品吗?</p>',
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
APICart.delCartGoods({ skuIds: idArr.toString() }).then((res) => {
|
APICart.delCartGoods({ skuIds: idArr.toString() }).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$Message.success("删除成功");
|
this.$Message.success('删除成功');
|
||||||
this.getCartList();
|
this.getCartList();
|
||||||
} else {
|
} else {
|
||||||
this.$Message.error(res.message);
|
this.$Message.error(res.message);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
clearCart() {
|
clearCart () {
|
||||||
// 清空购物车
|
// 清空购物车
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "提示",
|
title: '提示',
|
||||||
content: "<p>确定要清空购物车吗?清空后不可恢复</p>",
|
content: '<p>确定要清空购物车吗?清空后不可恢复</p>',
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
APICart.clearCart().then((res) => {
|
APICart.clearCart().then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$Message.success("清空购物车成功");
|
this.$Message.success('清空购物车成功');
|
||||||
this.getCartList();
|
this.getCartList();
|
||||||
} else {
|
} else {
|
||||||
this.$Message.error(res.message);
|
this.$Message.error(res.message);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 跳转支付页面
|
// 跳转支付页面
|
||||||
pay() {
|
pay () {
|
||||||
if (this.checkedNum) {
|
if (this.checkedNum) {
|
||||||
this.$router.push({ path: "/pay", query: { way: "CART" } });
|
this.$router.push({ path: '/pay', query: { way: 'CART' } });
|
||||||
} else {
|
} else {
|
||||||
this.$Message.warning("请至少选择一件商品");
|
this.$Message.warning('请至少选择一件商品');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 展示优惠券
|
// 展示优惠券
|
||||||
showCoupon(storeId, index) {
|
showCoupon (storeId, index) {
|
||||||
this.couponAvailable = index;
|
this.couponAvailable = index;
|
||||||
},
|
},
|
||||||
changeNum(val, id) {
|
changeNum (val, id) {
|
||||||
// 设置购买数量
|
// 设置购买数量
|
||||||
console.log(val, id);
|
console.log(val, id);
|
||||||
APICart.setCartGoodsNum({ skuId: id, num: val }).then((res) => {
|
APICart.setCartGoodsNum({ skuId: id, num: val }).then((res) => {
|
||||||
|
@ -269,13 +268,13 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
async changeChecked(status, type, id) {
|
async changeChecked (status, type, id) {
|
||||||
// 设置商品选中状态
|
// 设置商品选中状态
|
||||||
const check = status ? 1 : 0;
|
const check = status ? 1 : 0;
|
||||||
if (type === "all") {
|
if (type === 'all') {
|
||||||
// 全选
|
// 全选
|
||||||
await APICart.setCheckedAll({ checked: check });
|
await APICart.setCheckedAll({ checked: check });
|
||||||
} else if (type === "shop") {
|
} else if (type === 'shop') {
|
||||||
// 选中店铺所有商品
|
// 选中店铺所有商品
|
||||||
await APICart.setCheckedSeller({ checked: check, storeId: id });
|
await APICart.setCheckedSeller({ checked: check, storeId: id });
|
||||||
} else {
|
} else {
|
||||||
|
@ -286,17 +285,17 @@ export default {
|
||||||
this.getCartList();
|
this.getCartList();
|
||||||
},
|
},
|
||||||
|
|
||||||
async receiveShopCoupon(item) {
|
async receiveShopCoupon (item) {
|
||||||
// 领取优惠券
|
// 领取优惠券
|
||||||
let res = await APIMember.receiveCoupon(item.id);
|
let res = await APIMember.receiveCoupon(item.id);
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$set(item, "disabled", true);
|
this.$set(item, 'disabled', true);
|
||||||
this.$Message.success("领取成功");
|
this.$Message.success('领取成功');
|
||||||
} else {
|
} else {
|
||||||
this.$Message.error(res.message);
|
this.$Message.error(res.message);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async getCartList() {
|
async getCartList () {
|
||||||
// 购物车列表
|
// 购物车列表
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
try {
|
try {
|
||||||
|
@ -326,25 +325,15 @@ export default {
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted () {
|
||||||
this.getCartList();
|
this.getCartList();
|
||||||
APICart.cartCount().then((res) => {
|
APICart.cartCount().then((res) => {
|
||||||
// 购物车商品数量
|
// 购物车商品数量
|
||||||
if (res.success) this.goodsTotal = res.result;
|
if (res.success) this.goodsTotal = res.result;
|
||||||
});
|
});
|
||||||
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");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@
|
||||||
<Input v-model="form.bankAccountNumber" type="text" placeholder="请输入银行账号" style="width:260px" />
|
<Input v-model="form.bankAccountNumber" type="text" placeholder="请输入银行账号" style="width:260px" />
|
||||||
</FormItem>
|
</FormItem>
|
||||||
</template>
|
</template>
|
||||||
<FormItem label="返回方式">
|
<FormItem label="返回方式" v-if="form.serviceType === 'RETURN_GOODS'">
|
||||||
<div>快递至第三方卖家</div>
|
<div>快递至第三方卖家</div>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem>
|
<FormItem>
|
||||||
|
|
|
@ -1,32 +1,137 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<card _Title="优惠券列表" />
|
<card _Title="优惠券列表" :_Tabs="statusNameList" @_Change="change" />
|
||||||
<Coupon/>
|
<empty v-if="list.length==0" />
|
||||||
|
<ul class="coupon-list" v-else>
|
||||||
|
<li v-for="(item, index) in list" class="coupon-item" :key="index">
|
||||||
|
<div class="c-left">
|
||||||
|
<div>
|
||||||
|
<span v-if="item.couponType === 'PRICE'" class="fontsize_12 global_color">¥<span class="price">{{item.price | unitPrice}}</span></span>
|
||||||
|
<span v-if="item.couponType === 'DISCOUNT'" class="fontsize_12 global_color"><span class="price">{{item.discount}}</span>折</span>
|
||||||
|
<span class="describe">满{{item.consumeThreshold}}元可用</span>
|
||||||
|
</div>
|
||||||
|
<p>使用范围:{{useScope(item.scopeType, item.storeName)}}</p>
|
||||||
|
<p>有效期:{{item.endTime}}</p>
|
||||||
|
</div>
|
||||||
|
<b></b>
|
||||||
|
<a class="c-right" @click="go(item)">立即使用</a>
|
||||||
|
<i class="circle-top"></i>
|
||||||
|
<i class="circle-bottom"></i>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<Page :total="total" @on-change="changePageNum"
|
||||||
|
v-if="list.length && total > params.pageNumber"
|
||||||
|
class="pageration"
|
||||||
|
@on-page-size-change="changePageSize"
|
||||||
|
:page-size="params.pageSize"
|
||||||
|
show-sizer>
|
||||||
|
</Page>
|
||||||
|
<Spin v-if="loading" fix></Spin>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Coupon from '@/components/coupon/Coupon.vue'
|
import { memberCouponList } from '@/api/member.js';
|
||||||
export default {
|
export default {
|
||||||
name: 'Coupons',
|
name: 'Coupons',
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
couponsList: [ // 优惠券状态
|
statusNameList: [ // 优惠券状态
|
||||||
'未使用',
|
'未使用',
|
||||||
'已使用',
|
'已使用',
|
||||||
'已过期',
|
'已过期'
|
||||||
'即将到期'
|
],
|
||||||
]
|
statusList: ['NEW', 'USED', 'EXPIRE'],
|
||||||
|
loading: false, // 列表加载状态
|
||||||
|
params: { // 请求参数
|
||||||
|
pageNumber: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
memberCouponStatus: 'NEW'
|
||||||
|
},
|
||||||
|
total: 0, // 优惠券总数
|
||||||
|
list: [] // 优惠券列表
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getList () { // 获取优惠券列表
|
||||||
|
this.loading = true
|
||||||
|
memberCouponList(this.params).then(res => {
|
||||||
|
this.loading = false
|
||||||
|
if (res.success) {
|
||||||
|
this.list = res.result.records
|
||||||
|
this.total = res.result.total
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 切换优惠券状态
|
||||||
|
change (index) {
|
||||||
|
this.params.memberCouponStatus = this.statusList[index]
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
go (item) { // 根据使用条件跳转商品列表页面
|
||||||
|
if (item.storeId !== 'platform') {
|
||||||
|
this.$router.push({path: '/merchant', query: {id: item.storeId}})
|
||||||
|
} else {
|
||||||
|
if (item.scopeType === 'PORTION_GOODS_CATEGORY') {
|
||||||
|
this.$router.push({path: '/goodsList', query: {categoryId: item.scopeId}})
|
||||||
|
} else {
|
||||||
|
this.$router.push({path: '/goodsList'})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
changePageNum (val) { // 分页改变页码
|
||||||
|
this.params.pageNumber = val;
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
|
||||||
|
changePageSize (val) { // 分页改变页数
|
||||||
|
this.pageNumber = 1;
|
||||||
|
this.params.pageSize = val;
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
|
||||||
|
useScope (type, storeName) { // 根据字段返回 优惠券适用范围
|
||||||
|
let shop = '平台';
|
||||||
|
let goods = '全部商品'
|
||||||
|
if (storeName !== 'platform') shop = storeName
|
||||||
|
switch (type) {
|
||||||
|
case 'ALL':
|
||||||
|
goods = '全部商品'
|
||||||
|
break;
|
||||||
|
case 'PORTION_GOODS':
|
||||||
|
goods = '部分商品'
|
||||||
|
break;
|
||||||
|
case 'PORTION_GOODS_CATEGORY':
|
||||||
|
goods = '部分分类商品'
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return `${shop}${goods}可用`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {Coupon},
|
|
||||||
mounted () {
|
mounted () {
|
||||||
|
this.getList()
|
||||||
},
|
}
|
||||||
methods: {}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
@import '../../../assets/styles/coupon.scss';
|
||||||
|
.coupon-item{
|
||||||
|
height: 125px;
|
||||||
|
.c-left{
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
.c-right{
|
||||||
|
padding: 20px 16px;
|
||||||
|
width: 43px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
i {
|
||||||
|
right: 34px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.pageration {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -190,7 +190,7 @@
|
||||||
<span
|
<span
|
||||||
v-if="item.couponType === 'DISCOUNT'"
|
v-if="item.couponType === 'DISCOUNT'"
|
||||||
class="fontsize_12 global_color"
|
class="fontsize_12 global_color"
|
||||||
><span class="price">{{ item.couponDiscount }}</span
|
><span class="price">{{ item.discount }}</span
|
||||||
>折</span
|
>折</span
|
||||||
>
|
>
|
||||||
<span class="describe"
|
<span class="describe"
|
||||||
|
|
|
@ -18,14 +18,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",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="search">
|
<div class="search">
|
||||||
<Card style="height: 60px">
|
<Card style="height: 60px">
|
||||||
<div style="">
|
<div>
|
||||||
<Button
|
<Button
|
||||||
v-if="allowOperation.editPrice"
|
v-if="allowOperation.editPrice"
|
||||||
@click="modifyPrice"
|
@click="modifyPrice"
|
||||||
|
@ -30,127 +30,124 @@
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
<Card style="height: 400px" class="mt_10">
|
<Card class="mt_10">
|
||||||
<div style="width: 30%; float: left; margin-left: 20px">
|
<Row>
|
||||||
<div class="div-item">
|
<Col span="12">
|
||||||
<div class="div-item-left">订单号:</div>
|
|
||||||
<div class="div-item-right">{{ orderInfo.order.sn }}</div>
|
|
||||||
</div>
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">订单来源:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{ orderInfo.order.clientType | clientTypeWay }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">订单状态:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{ orderInfo.orderStatusValue }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">下单时间:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{ orderInfo.order.createTime }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="width: 30%; float: left; margin-left: 20px">
|
|
||||||
<div class="div-item" v-if="orderInfo.order.needReceipt == false">
|
|
||||||
<div class="div-item-left">发票信息:</div>
|
|
||||||
<div class="div-item-right">暂无发票信息</div>
|
|
||||||
</div>
|
|
||||||
<template v-if="orderInfo.order.needReceipt == true && orderInfo.receipt">
|
|
||||||
<div class="div-item">
|
<div class="div-item">
|
||||||
<div class="div-item-left">发票抬头:</div>
|
<div class="div-item-left">订单号:</div>
|
||||||
|
<div class="div-item-right">{{ orderInfo.order.sn }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">订单来源:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{ orderInfo.order.clientType | clientTypeWay }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">订单状态:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{ orderInfo.orderStatusValue }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">下单时间:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{ orderInfo.order.createTime }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="div-item" v-if="orderInfo.order.needReceipt == false">
|
||||||
|
<div class="div-item-left">发票信息:</div>
|
||||||
|
<div class="div-item-right">暂无发票信息</div>
|
||||||
|
</div>
|
||||||
|
<template v-if="orderInfo.order.needReceipt == true && orderInfo.receipt">
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">发票抬头:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{
|
||||||
|
orderInfo.receipt.receiptTitle
|
||||||
|
? orderInfo.receipt.receiptTitle
|
||||||
|
: "暂无"
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="div-item" v-if="orderInfo.receipt.taxpayerId">
|
||||||
|
<div class="div-item-left">发票税号:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{
|
||||||
|
orderInfo.receipt.taxpayerId
|
||||||
|
? orderInfo.receipt.taxpayerId
|
||||||
|
: "暂无"
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">发票内容:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{
|
||||||
|
orderInfo.receipt.receiptContent
|
||||||
|
? orderInfo.receipt.receiptContent
|
||||||
|
: "暂无"
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">发票金额:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
<span v-if="orderInfo.receipt.receiptPrice">¥</span
|
||||||
|
>{{
|
||||||
|
orderInfo.receipt.receiptPrice
|
||||||
|
? orderInfo.receipt.receiptPrice
|
||||||
|
: "暂无" | unitPrice
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">是否开票:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{ orderInfo.receipt.receiptStatus == 0 ? "未开" : "已开" }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Col>
|
||||||
|
<Col span="12">
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">收货信息:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{ orderInfo.order.consigneeName }}
|
||||||
|
{{ orderInfo.order.consigneeMobile }}
|
||||||
|
{{ orderInfo.order.consigneeAddressPath }}
|
||||||
|
{{ orderInfo.order.consigneeDetail }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">支付方式:</div>
|
||||||
|
<div class="div-item-right">
|
||||||
|
{{ orderInfo.paymentMethodValue }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="div-item">
|
||||||
|
<div class="div-item-left">买家留言:</div>
|
||||||
|
<div class="div-item-right">{{ orderInfo.order.remark }}</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="div-item" v-if="orderInfo.order.orderType != 'VIRTUAL'">
|
||||||
|
<div class="div-item-left">配送方式:</div>
|
||||||
<div class="div-item-right">
|
<div class="div-item-right">
|
||||||
{{
|
{{
|
||||||
orderInfo.receipt.receiptTitle
|
orderInfo.deliveryMethodValue
|
||||||
? orderInfo.receipt.receiptTitle
|
? orderInfo.deliveryMethodValue
|
||||||
: "暂无"
|
: "暂无配送方式"
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</Col>
|
||||||
<div class="div-item" v-if="orderInfo.receipt.taxpayerId">
|
</Row>
|
||||||
<div class="div-item-left">发票税号:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{
|
|
||||||
orderInfo.receipt.taxpayerId
|
|
||||||
? orderInfo.receipt.taxpayerId
|
|
||||||
: "暂无"
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">发票内容:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{
|
|
||||||
orderInfo.receipt.receiptContent
|
|
||||||
? orderInfo.receipt.receiptContent
|
|
||||||
: "暂无"
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">发票金额:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
<span v-if="orderInfo.receipt.receiptPrice">¥</span
|
|
||||||
>{{
|
|
||||||
orderInfo.receipt.receiptPrice
|
|
||||||
? orderInfo.receipt.receiptPrice
|
|
||||||
: "暂无" | unitPrice
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">是否开票:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{ orderInfo.receipt.receiptStatus == 0 ? "未开" : "已开" }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div style="width: 36%; float: left">
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">收货信息:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{ orderInfo.order.consigneeName }}
|
|
||||||
{{ orderInfo.order.consigneeMobile }}
|
|
||||||
{{ orderInfo.order.consigneeAddressPath }}
|
|
||||||
{{ orderInfo.order.consigneeDetail }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">支付方式:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{ orderInfo.paymentMethodValue }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="div-item">
|
|
||||||
<div class="div-item-left">买家留言:</div>
|
|
||||||
<div class="div-item-right">{{ orderInfo.order.remark }}</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="div-item" v-if="orderInfo.order.orderType != 'VIRTUAL'">
|
|
||||||
<div class="div-item-left">配送方式:</div>
|
|
||||||
<div class="div-item-right">
|
|
||||||
{{
|
|
||||||
orderInfo.deliveryMethodValue
|
|
||||||
? orderInfo.deliveryMethodValue
|
|
||||||
: "暂无配送方式"
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
<Card class="mt_10">
|
<Card class="mt_10">
|
||||||
|
|
|
@ -53,7 +53,6 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import * as API_Order from "@/api/order";
|
import * as API_Order from "@/api/order";
|
||||||
import { verificationCode } from "@/api/order";
|
|
||||||
import JsonExcel from "vue-json-excel";
|
import JsonExcel from "vue-json-excel";
|
||||||
import Cookies from "js-cookie";
|
import Cookies from "js-cookie";
|
||||||
export default {
|
export default {
|
||||||
|
@ -186,6 +185,12 @@ export default {
|
||||||
'收货人': 'consigneeName',
|
'收货人': 'consigneeName',
|
||||||
'收货人联系电话': 'consigneeMobile',
|
'收货人联系电话': 'consigneeMobile',
|
||||||
'收货地址': 'consigneeAddress',
|
'收货地址': 'consigneeAddress',
|
||||||
|
'商品名称': 'goodsName',
|
||||||
|
'商品价格': 'goodsPrice',
|
||||||
|
'订单金额': 'flowPrice',
|
||||||
|
'商品数量': 'num',
|
||||||
|
'店铺名称': 'storeName',
|
||||||
|
'创建时间': 'createTime'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -275,6 +280,8 @@ export default {
|
||||||
res.result[i].index = i+1;
|
res.result[i].index = i+1;
|
||||||
res.result[i].consigneeAddress =
|
res.result[i].consigneeAddress =
|
||||||
res.result[i].consigneeAddressPath.replace(/,/g, "") + res.result[i].consigneeDetail
|
res.result[i].consigneeAddressPath.replace(/,/g, "") + res.result[i].consigneeDetail
|
||||||
|
res.result[i].goodsPrice = this.$options.filters.unitPrice(res.result[i].goodsPrice,'¥')
|
||||||
|
res.result[i].flowPrice = this.$options.filters.unitPrice(res.result[i].flowPrice,'¥')
|
||||||
}
|
}
|
||||||
return res.result
|
return res.result
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -27,12 +27,12 @@
|
||||||
</Row>
|
</Row>
|
||||||
<Table class="mt_10" :loading="loading" border :columns="columns" :data="data" ref="table" @on-selection-change="changeSelect">
|
<Table class="mt_10" :loading="loading" border :columns="columns" :data="data" ref="table" @on-selection-change="changeSelect">
|
||||||
<template slot-scope="{ row }" slot="action">
|
<template slot-scope="{ row }" slot="action">
|
||||||
<Button v-if="row.promotionStatus === 'NEW' || row.promotionStatus === 'CLOSE'" type="info" size="small" style="margin-right: 10px" @click="edit(row)">编辑</Button>
|
<Button v-if="row.promotionStatus === 'NEW' || row.promotionStatus === 'CLOSE'" type="info" size="small" style="margin-right: 5px" @click="edit(row)">编辑</Button>
|
||||||
<Button v-if="row.promotionStatus !== 'CLOSE'" type="error" size="small" @click="remove(row)">下架</Button>
|
<Button v-if="row.promotionStatus !== 'CLOSE'" type="error" size="small" @click="remove(row)">下架</Button>
|
||||||
</template>
|
</template>
|
||||||
</Table>
|
</Table>
|
||||||
<Row type="flex" justify="end" class="page">
|
<Row type="flex" justify="end" class="page">
|
||||||
<Page :current="searchForm.pageNumber + 1" :total="total" :page-size="searchForm.pageSize" @on-change="changePage" @on-page-size-change="changePageSize" :page-size-opts="[10, 20, 50]"
|
<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>
|
size="small" show-total show-elevator show-sizer></Page>
|
||||||
</Row>
|
</Row>
|
||||||
</Card>
|
</Card>
|
||||||
|
@ -49,7 +49,7 @@ export default {
|
||||||
loading: true, // 表单加载状态
|
loading: true, // 表单加载状态
|
||||||
searchForm: {
|
searchForm: {
|
||||||
// 搜索框初始化对象
|
// 搜索框初始化对象
|
||||||
pageNumber: 0, // 当前页数
|
pageNumber: 1, // 当前页数
|
||||||
pageSize: 10, // 页面大小
|
pageSize: 10, // 页面大小
|
||||||
sort: "startTime", // 默认排序字段
|
sort: "startTime", // 默认排序字段
|
||||||
order: "desc", // 默认排序方式
|
order: "desc", // 默认排序方式
|
||||||
|
@ -135,7 +135,7 @@ export default {
|
||||||
title: "活动时间",
|
title: "活动时间",
|
||||||
|
|
||||||
render: (h, params) => {
|
render: (h, params) => {
|
||||||
if (params.row.getType === "ACTIVITY") {
|
if (params.row.rangeDayType !== "FIXEDTIME") {
|
||||||
return h("div", "长期有效");
|
return h("div", "长期有效");
|
||||||
} else {
|
} else {
|
||||||
return h("div", {
|
return h("div", {
|
||||||
|
@ -208,7 +208,7 @@ export default {
|
||||||
this.$router.push({ name: "platform-coupon-info", query: { id: v.id } });
|
this.$router.push({ name: "platform-coupon-info", query: { id: v.id } });
|
||||||
},
|
},
|
||||||
changePage(v) {
|
changePage(v) {
|
||||||
this.searchForm.pageNumber = v - 1;
|
this.searchForm.pageNumber = v;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
this.clearSelectAll();
|
this.clearSelectAll();
|
||||||
},
|
},
|
||||||
|
@ -217,13 +217,13 @@ export default {
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
handleSearch() {
|
handleSearch() {
|
||||||
this.searchForm.pageNumber = 0;
|
this.searchForm.pageNumber = 1;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
handleReset() {
|
handleReset() {
|
||||||
this.searchForm = {};
|
this.searchForm = {};
|
||||||
this.selectDate = "";
|
this.selectDate = "";
|
||||||
this.searchForm.pageNumber = 0;
|
this.searchForm.pageNumber = 1;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
},
|
},
|
||||||
clearSelectAll() {
|
clearSelectAll() {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Card>
|
<Card>
|
||||||
<Form ref="form" :model="form" :label-width="120" :rules="formRule" class="search-form">
|
<Form ref="form" :model="form" :label-width="120" :rules="formRule">
|
||||||
<div class="base-info-item">
|
<div class="base-info-item">
|
||||||
<h4>基本信息</h4>
|
<h4>基本信息</h4>
|
||||||
<div class="form-item-view">
|
<div class="form-item-view">
|
||||||
|
@ -389,6 +389,7 @@ export default {
|
||||||
getDetail() {
|
getDetail() {
|
||||||
// 获取活动详情
|
// 获取活动详情
|
||||||
getFullDiscountById(this.id).then((res) => {
|
getFullDiscountById(this.id).then((res) => {
|
||||||
|
console.log(res);
|
||||||
let data = res.result;
|
let data = res.result;
|
||||||
if (data.number == -1) {
|
if (data.number == -1) {
|
||||||
data.promotionGoodsList = [];
|
data.promotionGoodsList = [];
|
||||||
|
@ -400,7 +401,7 @@ export default {
|
||||||
data.discountType = "isFullMinus";
|
data.discountType = "isFullMinus";
|
||||||
delete data.isFullMinus;
|
delete data.isFullMinus;
|
||||||
} else {
|
} else {
|
||||||
data.discountType = "isFullMinus";
|
data.discountType = "isFullRate";
|
||||||
delete data.isFullRate;
|
delete data.isFullRate;
|
||||||
}
|
}
|
||||||
data.rangeTime = [];
|
data.rangeTime = [];
|
||||||
|
|
Loading…
Reference in New Issue