Commit 15ca8469 authored by 罗超's avatar 罗超

新增优惠券

parent c7c8ab67
...@@ -135,7 +135,7 @@ Vue.prototype.apiJavaPost = function(cmd, msg, successCall, faildCall) { ...@@ -135,7 +135,7 @@ Vue.prototype.apiJavaPost = function(cmd, msg, successCall, faildCall) {
var GroupId = 0; var GroupId = 0;
if (this.getLocalStorage() != null) { if (this.getLocalStorage() != null) {
token = this.getLocalStorage().token; token = this.getLocalStorage().token;
key = this.getLocalStorage().secretKey; key = '' //this.getLocalStorage().secretKey;
} }
if (localStorage.groupinfo && localStorage.groupinfo != 'undefined') { if (localStorage.groupinfo && localStorage.groupinfo != 'undefined') {
var groupJson = JSON.parse(localStorage.groupinfo); var groupJson = JSON.parse(localStorage.groupinfo);
......
<template> <template>
<q-card flat class="q-pa-md q-mt-lg"> <q-card flat class="q-pa-md q-mt-lg" v-if="coupons">
<div class="row items-center"> <div class="row items-center">
<div class="text-subtitle1 text-weight-bolder q-mb-md col"> <div class="text-subtitle1 text-weight-bolder q-mb-md col">
<span>優惠券</span> <span>優惠券</span>
<span class="text-weight-regular q-ml-sm text-body2">(可用優惠券 0 張)</span> <span class="text-weight-regular q-ml-sm text-body2">(可用優惠券 {{ coupons.length }} 張)</span>
</div> </div>
<q-toggle v-model="showDisable" label="顯示不可用優惠券" style="zoom:0.8;margin-top: -24px;" v-if="isExplends"/> <!-- <q-toggle v-model="showDisable" label="顯示不可用優惠券" style="zoom:0.8;margin-top: -24px;" v-if="isExplends"/> -->
<q-icon :name="isExplends?'keyboard_arrow_up':'keyboard_arrow_down'" @click="$event=>isExplends=!isExplends" size="32px" color="grey-9" class="q-ml-md cursor-pointer" style="margin-top:-10px;"/> <q-icon :name="isExplends?'keyboard_arrow_up':'keyboard_arrow_down'" @click="$event=>isExplends=!isExplends" size="32px" color="grey-9" class="q-ml-md cursor-pointer" style="margin-top:-10px;"/>
</div> </div>
<div v-if="isExplends"> <div v-if="isExplends">
<div class="row q-col-gutter-md"> <div class="row q-col-gutter-md">
<div :class="filedWidth"> <div :class="filedWidth" v-for="(x,i) in coupons" :key="i">
<div class="cursor-pointer"> <div class="cursor-pointer" :class="{'unUsed':currentPrice<x.useCondition}">
<div class="coupon-head"> <div class="coupon-head">
<div class="check-tools"> <div class="check-tools" v-if="currentPrice>=x.useCondition">
<q-checkbox v-model="chosenCouponId" :value="1" dense color="teal" /> {{ x.couponId }}
<q-checkbox v-model="chosenCouponId" :val="x.couponId" label="" dense color="teal" />
{{ chosenCouponId }}
</div> </div>
<div class="q-pa-lg q-mt-lg"> <div class="q-pa-lg q-mt-lg">
<div class="row items-center"> <div class="row items-center">
<div class="text-h4 text-weight-bold text-white col"> <div class="text-h4 text-weight-bold text-white col" v-if="x.couponsType==1">
{{ moneyFormat(500,2) }} {{ moneyFormat(x.denomination,2) }}
</div> </div>
<div class=" f12 text-white">滿 2000 可用</div> <div class="text-h4 text-weight-bold text-white col" v-if="x.couponsType==2">
{{ x.denomination }}
<span class="q-ml-sm text-weight-thin text-subtitle1"></span>
</div> </div>
<div class="q-mt-sm f12" style="color:#195954">有效期至:2023.02.30</div> <div class=" f12 text-white">滿 {{ x.useCondition }} 可用</div>
</div>
<div class="q-mt-sm f12" style="color:#195954">有效期至:{{ x.expirationDate}}</div>
</div> </div>
</div> </div>
<div class="q-px-lg q-py-md coupon-content"> <div class="q-px-lg q-py-md coupon-content">
...@@ -34,12 +40,12 @@ ...@@ -34,12 +40,12 @@
</div> </div>
<div class="row q-mt-sm"> <div class="row q-mt-sm">
<div class="col-5">使用品類:</div> <div class="col-5">使用品類:</div>
<div class="">多日遊行程適用</div> <div class="">{{ x.rangeName }}</div>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<div :class="filedWidth"> <!-- <div :class="filedWidth">
<div class="unUsed"> <div class="unUsed">
<div class="coupon-head"> <div class="coupon-head">
<div class="q-pa-lg q-mt-lg"> <div class="q-pa-lg q-mt-lg">
...@@ -63,9 +69,9 @@ ...@@ -63,9 +69,9 @@
</div> </div>
</div> </div>
</div> </div>
</div> -->
</div> </div>
</div> <div class="text-center q-mt-lg" v-if="coupons.length==0">
<div class="text-center q-mt-lg" v-if="1==2">
<p> <p>
<img src="~assets/sad.svg" style="width: 50px" /> <img src="~assets/sad.svg" style="width: 50px" />
</p> </p>
...@@ -76,8 +82,21 @@ ...@@ -76,8 +82,21 @@
</template> </template>
<script> <script>
import EnumHelper from 'src/utils/enumhelper';
import ProductTypeEnum from 'src/utils/producttypeenum';
import {date} from 'quasar'
export default { export default {
props:["goodsInfo"], props:{
productType:{
type:Number,
required:true
},
currentPrice:{
type:Number,
required:false,
default:0
}
},
computed: { computed: {
filedWidth() { filedWidth() {
return { return {
...@@ -90,13 +109,43 @@ export default { ...@@ -90,13 +109,43 @@ export default {
return { return {
showDisable:false, showDisable:false,
isExplends:false, isExplends:false,
chosenCouponId:false chosenCouponId:[],
couponsUseScope:1,
coupons:null
}; };
}, },
created() {
this.couponsUseScope = this.productType+1
this.getProductCouponHandler()
},
methods: { methods: {
changeDiscountHandler(){ changeDiscountHandler(x){
},
getProductCouponHandler(){
this.apiJavaPost(
"/api/b2b/user/getUserCanUseCouponList",
{
lineId:0,
lineteamId:0,
CouponsUseScope:this.couponsUseScope
},
res => {
this.coupons = res.data.data
if(this.coupons && this.coupons.length>0){
this.coupons.forEach(x=>{
x.rangeName = EnumHelper.ParseToEnum(ProductTypeEnum,this.couponsUseScope,'value').desc
x.expirationDate = date.formatDate(x.expirationDate,'YYYY.MM.DD')
})
this.isExplends = this.coupons.length>0
}else{
this.coupons = []
} }
},
null
);
},
}, },
} }
</script> </script>
......
...@@ -703,7 +703,7 @@ export default { ...@@ -703,7 +703,7 @@ export default {
this.$nextTick(() => { this.$nextTick(() => {
this.isPic = this.isPic =
document.URL.indexOf("localhost") != -1 || document.URL.indexOf("localhost") != -1 ||
document.URL.indexOf("t.oytour.com") != -1; document.URL.indexOf("www.oytour.com") != -1;
}); });
}, },
err => {} err => {}
......
...@@ -117,15 +117,18 @@ export default { ...@@ -117,15 +117,18 @@ export default {
}, },
created() { created() {
this.prices = this.priceList; this.prices = this.priceList;
console.log(this.prices)
this.init(); this.init();
}, },
methods: { methods: {
init() { init() {
this.createChosenDateHandler(); this.createChosenDateHandler();
let firstMonth = date.formatDate( let firstMonth = date.formatDate(
new Date(this.prices[0].startDate), new Date(this.prices[0].startDate),
"YYYY/MM" "YYYY/MM"
); );
console.log(firstMonth)
let current = this.months.findIndex((x) => x.monthValue == firstMonth) let current = this.months.findIndex((x) => x.monthValue == firstMonth)
this.currentMonth = current>-1?current:0; this.currentMonth = current>-1?current:0;
this.changeMonthHandler(); this.changeMonthHandler();
......
...@@ -505,9 +505,10 @@ export default { ...@@ -505,9 +505,10 @@ export default {
let order = { let order = {
configId:this.travel.id, configId:this.travel.id,
tcid:this.p.tcid, tcid:this.p.tcid,
startCityId:this.currentUnionCity?this.currentUnionCity.cityId:this.travel.startCityId, startCityId:this.currentUnionCity && this.currentUnionCity.cityId ?this.currentUnionCity.cityId:this.travel.startCityId,
orderInfo:this.chosenObj orderInfo:this.chosenObj
} }
let key = this.$md5(JSON.stringify(order)) let key = this.$md5(JSON.stringify(order))
let lineCars = localStorage.getItem('lineCars') let lineCars = localStorage.getItem('lineCars')
lineCars = lineCars?JSON.parse(lineCars):[] lineCars = lineCars?JSON.parse(lineCars):[]
......
...@@ -439,7 +439,7 @@ export default { ...@@ -439,7 +439,7 @@ export default {
} }
} }
this.$nextTick(()=>{ this.$nextTick(()=>{
this.isPic = document.URL.indexOf("localhost")!=-1||document.URL.indexOf("t.oytour.com")!=-1 this.isPic = document.URL.indexOf("localhost")!=-1||document.URL.indexOf("www.oytour.com")!=-1
}); });
}, },
(err) => {} (err) => {}
......
...@@ -306,7 +306,7 @@ ...@@ -306,7 +306,7 @@
/> />
</q-card> </q-card>
<coupon></coupon> <coupon v-if="price && price.tcid" :product-type="productType" :current-price="sumPrice"></coupon>
</div> </div>
<div <div
class="relative-position" class="relative-position"
...@@ -458,6 +458,8 @@ import coupon from "../../components/common/coupon.vue"; ...@@ -458,6 +458,8 @@ import coupon from "../../components/common/coupon.vue";
import NoneData from "src/components/common/noneData.vue"; import NoneData from "src/components/common/noneData.vue";
import auth from "src/components/common/auth.vue"; import auth from "src/components/common/auth.vue";
import {date} from 'quasar' import {date} from 'quasar'
import ProductTypeEnum from '../../utils/producttypeenum'
import EnumHelper from '../../utils/enumhelper'
export default { export default {
components: { components: {
coupon, coupon,
...@@ -546,7 +548,8 @@ export default { ...@@ -546,7 +548,8 @@ export default {
unionCity: null, unionCity: null,
sumPrice:0, sumPrice:0,
submiting:false, submiting:false,
CouponIds:[] CouponIds:[],
productType:0
}; };
}, },
computed: { computed: {
...@@ -564,6 +567,7 @@ export default { ...@@ -564,6 +567,7 @@ export default {
} }
}, },
created() { created() {
if (this.checkParamsHandler()) { if (this.checkParamsHandler()) {
this.initGuestHandler(); this.initGuestHandler();
this.getTripData(); this.getTripData();
...@@ -594,6 +598,8 @@ export default { ...@@ -594,6 +598,8 @@ export default {
} }
this.submiting=false this.submiting=false
}, },
submitOrderHandler(){ submitOrderHandler(){
let msg={ let msg={
OrderId:0, OrderId:0,
...@@ -702,7 +708,7 @@ export default { ...@@ -702,7 +708,7 @@ export default {
GoodsId:this.order.order.tcid, GoodsId:this.order.order.tcid,
GoodsName:this.trip.title, GoodsName:this.trip.title,
GoodsPic:this.trip.imgCover[0].Url, GoodsPic:this.trip.imgCover[0].Url,
GoodsType:this.price.teamType==0?2:(this.price.teamType==2?1:3), GoodsType:this.productType,
OrderMake:`${ this.unionCity && this.unionCity.goFlight? this.unionCity.goFlight.startDate :this.price.startDate}${this.unionCity?this.unionCity.cityName:this.trip.startCityName }出發 ${guestInfo}`, OrderMake:`${ this.unionCity && this.unionCity.goFlight? this.unionCity.goFlight.startDate :this.price.startDate}${this.unionCity?this.unionCity.cityName:this.trip.startCityName }出發 ${guestInfo}`,
TotalPrice:this.sumPrice, TotalPrice:this.sumPrice,
PreferentialPrice:this.chosenObj.discountPrice, PreferentialPrice:this.chosenObj.discountPrice,
...@@ -721,6 +727,9 @@ export default { ...@@ -721,6 +727,9 @@ export default {
} }
}) })
}, },
getProductTypeHandler(){
return (this.price.teamType==0?ProductTypeEnum.TEAM_TRIP:(this.price.teamType==2?ProductTypeEnum.ONE_DAY:ProductTypeEnum.UNIT_TRIP)).value
},
goPayHandler(pay){ goPayHandler(pay){
let key = this.$md5(JSON.stringify(pay)) let key = this.$md5(JSON.stringify(pay))
let pays = localStorage.getItem('pays') let pays = localStorage.getItem('pays')
...@@ -886,6 +895,7 @@ export default { ...@@ -886,6 +895,7 @@ export default {
}, },
getTripData() { getTripData() {
this.$q.loading.show(); this.$q.loading.show();
let msg = { let msg = {
cityId: this.order.order.startCityId, cityId: this.order.order.startCityId,
...@@ -904,8 +914,8 @@ export default { ...@@ -904,8 +914,8 @@ export default {
this.trip = r.data.data; this.trip = r.data.data;
this.trip.imgCover = JSON.parse(this.trip.imgCover); this.trip.imgCover = JSON.parse(this.trip.imgCover);
this.price = this.trip.priceList[0]; this.price = this.trip.currentPriceInfo;
if(this.order.order.startCityId!=this.trip.startCityId){ if(this.order.order.startCityId && this.order.order.startCityId!=this.trip.startCityId){
this.unionCity = this.price.unionCityList.find(x=>x.cityId == this.order.order.startCityId) this.unionCity = this.price.unionCityList.find(x=>x.cityId == this.order.order.startCityId)
if(this.unionCity.backFlight && this.unionCity.backFlight.addPrice){ if(this.unionCity.backFlight && this.unionCity.backFlight.addPrice){
this.price.originalB2CPrice+=this.unionCity.backFlight.addPrice this.price.originalB2CPrice+=this.unionCity.backFlight.addPrice
...@@ -915,8 +925,8 @@ export default { ...@@ -915,8 +925,8 @@ export default {
} }
} }
this.calcMoney() this.calcMoney()
this.productType=this.getProductTypeHandler()
} else { } else {
this.$q.notify({ this.$q.notify({
type: "negative", type: "negative",
......
const EnumHelper = {
ParseToEnum(TEnum, value, comparison = '') {
if (Object.isFrozen) {
let t = Object.values(TEnum)
console.log(t, Symbol(1) == 1)
let r = t.find(x => (comparison != '' && x[comparison] == value) || (comparison == '' && x == value))
return r
} else {
throw new Error("这不是一个枚举类型");
}
}
}
export default EnumHelper
\ No newline at end of file
const ProductTypeEnum = Object.freeze({
/**
* 一日游
*/
ONE_DAY: {
value: 1,
desc: '一日游产品'
},
/**
* 多日游
*/
TEAM_TRIP: {
value: 2,
desc: '多日游产品'
},
/**
* 小包团
*/
UNIT_TRIP: {
value: 3,
desc: '小包团产品'
},
/**
* 景点门票
*/
SCENIC_SPOT: {
value: 4,
desc: '景点门票产品'
},
/**
* 主题乐园
*/
THEME_PART: {
value: 5,
desc: '主题乐园门票'
},
/**
* 博物馆
*/
MUSEUM: {
value: 6,
desc: '博物馆门票'
},
/**
* 历史景点
*/
HISTORY: {
value: 7,
desc: '历史景点门票'
},
/**
* 温泉酒店
*/
HOT_SPRING: {
value: 8,
desc: '温泉酒店产品'
},
/**
* 星级酒店
*/
STAR_HOTEL: {
value: 9,
desc: '星级酒店产品'
},
/**
* 度假酒店
*/
RESORT_HOTEL: {
value: 10,
desc: '度假酒店产品'
},
/**
* 民宿
*/
HOMESTAY: {
value: 11,
desc: '民宿产品'
},
/**
* 包车
*/
CHARTER: {
value: 12,
desc: '包车产品'
},
/**
* 接机
*/
PICK_UP: {
value: 13,
desc: '接机产品'
},
/**
* 送机
*/
DROP_OFF: {
value: 14,
desc: '送机产品'
}
})
export default ProductTypeEnum
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment