Commit b8155891 by 肖康

x

parent 7173538e
Showing with 174 additions and 215 deletions
<template> <template>
<div id="app"> <div id="app">
<keep-alive exclude="newsDetail"> <keep-alive exclude="newsDetail,pointchange">
<router-view class="router-view"></router-view> <router-view class="router-view"></router-view>
</keep-alive> </keep-alive>
</div> </div>
......
...@@ -93,6 +93,27 @@ Services.wxaccess(params).then((res) => { ...@@ -93,6 +93,27 @@ Services.wxaccess(params).then((res) => {
} }
}); });
//路由进入前
//路由页面回跳处理 mate里面参数 back:true 开启登录态回跳
router.beforeEach((to, from, next) => {
const title = to.meta && to.meta.title;
if (title) {
document.title = title;
}
//页面回跳
var backurl_g=to.meta.back||""
if(backurl_g){
var loginpta=Util.isLogin()?true:false;
if(!loginpta){
window.location.href='/v3/login?referer='+encodeURIComponent(window.location.href)
}else{
next();
}
}else{
next();
}
});
new Vue({ new Vue({
router, router,
store, store,
......
...@@ -82,7 +82,8 @@ const routes=[ ...@@ -82,7 +82,8 @@ const routes=[
name:'Pointchange', name:'Pointchange',
component: Pointchange, component: Pointchange,
meta: { meta: {
title: '兑换成功' title: '兑换成功',
back:true
} }
}, },
...@@ -120,13 +121,7 @@ routes.forEach(route => { ...@@ -120,13 +121,7 @@ routes.forEach(route => {
const router = new Router({routes}); const router = new Router({routes});
router.beforeEach((to, from, next) => {
const title = to.meta && to.meta.title;
if (title) {
document.title = title;
}
next();
});
export { export {
router router
......
...@@ -22,7 +22,7 @@ const state = { ...@@ -22,7 +22,7 @@ const state = {
const mutations = { const mutations = {
getPointPrize(state, payload){ getPointPrize(state, payload){
var list_=payload.data||[]; var list_=payload.data||[];
console.log(list_)
if(list_.length>0){ if(list_.length>0){
//重新排列数据 //重新排列数据
var data_={},prise_type=[],prise_type_text=[],prise_type_list=[],prize_sort_arr=[]; var data_={},prise_type=[],prise_type_text=[],prise_type_list=[],prize_sort_arr=[];
...@@ -43,7 +43,7 @@ const mutations = { ...@@ -43,7 +43,7 @@ const mutations = {
} }
prise_type_list=prise_type_list.sort(Util.compare('prise_type',1)) prise_type_list=prise_type_list.sort(Util.compare('prise_type',1))
state.navlist=prise_type_list; state.navlist=prise_type_list;
console.log(state.navlist)
state.listdata=list_ state.listdata=list_
} }
} }
...@@ -144,7 +144,7 @@ const actions = { ...@@ -144,7 +144,7 @@ const actions = {
let data = res.data; let data = res.data;
if (data.errcode == 0) { if (data.errcode == 0) {
var point_exchange_id_=data.data.point_exchange_id; var point_exchange_id_=data.data.point_exchange_id;
window.location.href='/v3/pointchange?point_exchange_id='+point_exchange_id_+'&prize_type='+data.data.prize_type window.location.href='/h5/view/#/pointchange?point_exchange_id='+point_exchange_id_+'&prize_type='+data.data.prize_type
}else{ }else{
Toast({ Toast({
message: data.errmsg, message: data.errmsg,
...@@ -155,11 +155,6 @@ const actions = { ...@@ -155,11 +155,6 @@ const actions = {
state.loading = false; state.loading = false;
}); });
}, },
} }
const getters = {} const getters = {}
......
import Vue from 'vue'
import {Toast} from 'vant';
import Util from "../../../util";
import {services as Services} from '../../../api/index'
var qs = require('qs');
Vue.use(Toast);
const state = {
loading:false,
prize_info:"",
prize_types:"",
address_id:"",
address_info:"",
adressApiState:false//是否开启获取默认地址
}
const mutations = {
}
const actions = {
getUserPointExchangeDetail({commit},payload){
state.loading=true;
var params = {
point_exchange_id:payload.point_exchange_id
}
Services.getUserPointExchangeDetail(qs.stringify(params)).then((res) => {
state.loading=false;
let data = res.data;
if (data.errcode == 0) {
state.prize_info=data.data.prize_info;
state.prize_types=data.data.prize_info.prize_type;
if(data.address_info){
state.address_info=data.address_info;
state.address_id=data.data.prize_info.address_id
}else{
state.adressApiState=true;
}
}
}).catch(function (err) {
state.loading = false;
});
},
recvlist({commit},payload){
Services.recvlist().then((res) => {
let data = res.data;
if (data.err_code == 0) {
var users=data.data||[];
if(users.length>0){
for(var i=0;i<users.length;i++){
if(users[i].is_default==1){
state.address_info=users[i];
state.address_id=users[i].address_id
}
}
}
}
})
},
}
const getters = {}
export default {
state,
mutations,
actions,
getters
}
...@@ -9,6 +9,7 @@ import newsdetail from './modules/news/detail' ...@@ -9,6 +9,7 @@ import newsdetail from './modules/news/detail'
import seo from './modules/seo/index' import seo from './modules/seo/index'
import findthing from './modules/findthing/index' import findthing from './modules/findthing/index'
import pointmall from './modules/pointmall/index' import pointmall from './modules/pointmall/index'
import pointchange from './modules/pointmall/pointchange'
Vue.use(Vuex) Vue.use(Vuex)
export default new Vuex.Store({ export default new Vuex.Store({
...@@ -21,6 +22,7 @@ export default new Vuex.Store({ ...@@ -21,6 +22,7 @@ export default new Vuex.Store({
newsdetail, newsdetail,
seo, seo,
findthing, findthing,
pointmall pointmall,
pointchange
} }
}) })
...@@ -120,6 +120,15 @@ export default { ...@@ -120,6 +120,15 @@ export default {
}, },
/** /**
* * * *
* 需要登录态的页面强行跳到登录页面然后回跳回来
* *
* /
*/
loginBack:function(){
},
/**
* *
* 数组排序 * 数组排序
* * * *
* / * /
......
...@@ -146,6 +146,7 @@ ...@@ -146,6 +146,7 @@
} }
}, },
created(){ created(){
this.loginstate(); this.loginstate();
}, },
methods: { methods: {
......
<template> <template>
<div class="pointer-detail"> <div class="pointer-detail">
<Header title="积分明细"></Header> <Header title="兑换成功"></Header>
<img class="change-head-img" src="https://static.ichunt.com/dist/res/m/images/change_success.png" alt="猎芯网"/> <img class="change-head-img" src="https://static.ichunt.com/dist/res/m/images/change_success.png" alt="猎芯网"/>
<div class="tip-success-change">恭喜您成功兑换 <b></b> 一份</div> <div class="tip-success-change">恭喜您成功兑换 <b></b> 一份</div>
<!--虚拟--> <!--虚拟-->
<div class="box-change box-xn" style="display:none"> <div class="box-change box-xn" v-if="prize_type==3">
<div class="change-rule-tip">我们将于兑换后两个工作日内,把使用规则以短信形式发给您!</div> <div class="change-rule-tip">我们将于兑换后两个工作日内,把使用规则以短信形式发给您!</div>
<div class="check-change-tip">您也可以前往兑换记录进行查看!</div> <div class="check-change-tip">您也可以前往兑换记录进行查看!</div>
<a class="go-change" href="/v3/user/exchange">去查看</a> <a class="go-change" href="/h5/view/#/exchange">去查看</a>
</div> </div>
<!--优惠券--> <!--优惠券-->
<div class="box-change box-yhq" style="display:none"> <div class="box-change box-yhq" v-if="prize_type==2">
<div class="check-change-tip">您也可以前往兑换记录进行查看!</div> <div class="check-change-tip">您也可以前往兑换记录进行查看!</div>
<a class="go-change" href="/v3/user/exchange">去查看</a> <a class="go-change" href="/h5/view/#/exchange">去查看</a>
</div> </div>
<!--实物--> <!--实物-->
<div class="box-change box-sw" > <div class="box-change box-sw" v-if="prize_type==1">
<div class="point-addersstip">我们将邮寄到如下地址:</div> <div class="point-addersstip">我们将邮寄到如下地址:</div>
<div class="point-adderss-box"> <div class="point-adderss-box">
<!--<div class="no-point-address">当前无收件人信息,请录入收件人信息!</div>--> <!--<div class="no-point-address">当前无收件人信息,请录入收件人信息!</div>-->
...@@ -28,14 +28,57 @@ ...@@ -28,14 +28,57 @@
</div> </div>
</div> </div>
<a href="#" class="address-link">更换地址</a> <a href="#" class="address-link">更换地址</a>
<a class="go-change" href="/v3/user/exchange">去查看</a> <a class="go-change" href="/h5/view/#/exchange">去查看</a>
</div> </div>
<van-loading type="spinner" color="#000" class="loading-background" v-if="loading"/>
</div> </div>
</template> </template>
<script> <script>
import Vue from 'vue';
import {mapState} from 'vuex'
import {Loading} from 'vant';
import Header from '@/views/common/Header.vue'; import Header from '@/views/common/Header.vue';
Vue.use(Loading)
export default { export default {
name:"pointchange", name:"pointchange",
data(){
return{
prize_type:this.$route.query.prize_type
}
},
computed:{
...mapState({
loading: state => state.pointchange.loading,
prize_info:state=>state.pointchange.prize_info,
prize_types:state=>state.pointchange.prize_types,
adressApiState:state=>state.pointchange.adressApiState,
address_info:state=>state.pointchange.address_info,
})
},
created(){
this.getPrizeInfo();
},
methods:{
getPrizeInfo(){
this.$store.dispatch({
type: 'getUserPointExchangeDetail',
point_exchange_id:this.$route.query.point_exchange_id
})
}
},
watch:{
prize_types(val){
this.prize_type=val;
},
adressApiState(val){
if(val){
this.$store.dispatch({
type: 'recvlist'
})
}
}
},
components:{Header} components:{Header}
} }
</script> </script>
......
This diff could not be displayed because it is too large.
{"h":"0e5375dbe2135a266673","c":{"9":true}}
\ No newline at end of file
{"h":"c7199d238757c5efbee2","c":{"0":false}}
\ No newline at end of file
{"h":"e00d73523b7804905cf3","c":{"9":true}}
\ No newline at end of file
{"h":"130c1f260c9631e6db2b","c":{"0":false,"11":true,"app":true}}
\ No newline at end of file
{"h":"2e274859c5d66e6ea168","c":{"app":true}}
\ No newline at end of file
{"h":"06701cfc96c9bf7745dc","c":{"1":false}}
\ No newline at end of file
{"h":"774acc4c4fe9642d0dee","c":{"app":true}}
\ No newline at end of file
{"h":"c4c7b234820a867c0a4b","c":{"app":true}}
\ No newline at end of file
{"h":"dd7b822d69d9c818c1c6","c":{"1":false}}
\ No newline at end of file
{"h":"5a96bfd2d10eeaba391f","c":{"9":true}}
\ No newline at end of file
{"h":"01ef027660e4ca85dc8c","c":{"9":true}}
\ No newline at end of file
{"h":"dc5dd15b9caa3a7eb6b3","c":{"app":true}}
\ No newline at end of file
{"h":"f7693c1f894f62b610b7","c":{"1":false}}
\ No newline at end of file
{"h":"c9ec77302b84c3b09703","c":{"0":false}}
\ No newline at end of file
{"h":"a7ad07775b92b61050dd","c":{"0":false}}
\ No newline at end of file
{"h":"3ab77da5f67e0a1cc794","c":{"1":false}}
\ No newline at end of file
{"h":"4a362e35d40f83510ca1","c":{"9":true}}
\ No newline at end of file
{"h":"1e071862cf69eaec3fe5","c":{"app":true}}
\ No newline at end of file
{"h":"ae791d90dc90496368a7","c":{"app":true}}
\ No newline at end of file
{"h":"4ecbb56c92a6f2a3f215","c":{"0":false}}
\ No newline at end of file
{"h":"3ce79944ef9da8056000","c":{"9":true}}
\ No newline at end of file
{"h":"39960899efbc1f23b7f2","c":{"app":true}}
\ No newline at end of file
{"h":"c3c0461c1e30f5d6ffb2","c":{"app":true}}
\ No newline at end of file
{"h":"e119d9a8372afddc0c56","c":{}}
\ No newline at end of file
{"h":"aacd405bd54ca3cabcba","c":{"app":true}}
\ No newline at end of file
{"h":"659a8a3db008151dc65a","c":{"1":false}}
\ No newline at end of file
{"h":"d9f2d7c2818a904aa58e","c":{"1":false}}
\ No newline at end of file
{"h":"7e905c7ab12877f89368","c":{"0":false}}
\ No newline at end of file
{"h":"75917627373b3fa1d5fd","c":{"9":true}}
\ No newline at end of file
{"h":"00f672138dd634225327","c":{"1":false}}
\ No newline at end of file
This diff could not be displayed because it is too large.
webpackHotUpdate(11,{
/***/ "./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_babel-loader@8.0.5@babel-loader/lib/index.js!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointDetail.vue?vue&type=script&lang=js&":
false,
/***/ "./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"30bfde94-vue-loader-template\"}!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/templateLoader.js?!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointDetail.vue?vue&type=template&id=591a776c&scoped=true&":
false,
/***/ "./node_modules/_css-loader@1.0.1@css-loader/index.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@3.0.0@postcss-loader/src/index.js?!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointDetail.vue?vue&type=style&index=0&id=591a776c&scoped=true&lang=css&":
false,
/***/ "./node_modules/_vue-style-loader@4.1.2@vue-style-loader/index.js?!./node_modules/_css-loader@1.0.1@css-loader/index.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@3.0.0@postcss-loader/src/index.js?!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointDetail.vue?vue&type=style&index=0&id=591a776c&scoped=true&lang=css&":
false,
/***/ "./src/views/pointmall/pointDetail.vue":
false,
/***/ "./src/views/pointmall/pointDetail.vue?vue&type=script&lang=js&":
false,
/***/ "./src/views/pointmall/pointDetail.vue?vue&type=style&index=0&id=591a776c&scoped=true&lang=css&":
false,
/***/ "./src/views/pointmall/pointDetail.vue?vue&type=template&id=591a776c&scoped=true&":
false
})
\ No newline at end of file
{"h":"12737fbb7218965d13d7","c":{"app":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
{"h":"374cc140b5888d04de36","c":{"app":true}}
\ No newline at end of file
{"h":"0435b324156f94660ed2","c":{"0":false}}
\ No newline at end of file
{"h":"a468454c23d70143fd43","c":{"14":true}}
\ No newline at end of file
webpackHotUpdate(14,{
/***/ "./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_babel-loader@8.0.5@babel-loader/lib/index.js!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointchange.vue?vue&type=script&lang=js&":
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options!./src/views/pointmall/pointchange.vue?vue&type=script&lang=js& ***!
\********************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n//\n//\n//\n//\n//\n//\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: \"pointchange\",\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_0__[\"default\"]\n }\n});//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvX2NhY2hlLWxvYWRlckAyLjAuMUBjYWNoZS1sb2FkZXIvZGlzdC9janMuanM/IS4vbm9kZV9tb2R1bGVzL19iYWJlbC1sb2FkZXJAOC4wLjVAYmFiZWwtbG9hZGVyL2xpYi9pbmRleC5qcyEuL25vZGVfbW9kdWxlcy9fY2FjaGUtbG9hZGVyQDIuMC4xQGNhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvX3Z1ZS1sb2FkZXJAMTUuNi40QHZ1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuL3NyYy92aWV3cy9wb2ludG1hbGwvcG9pbnRjaGFuZ2UudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy9wb2ludGNoYW5nZS52dWU/NDBhMiJdLCJzb3VyY2VzQ29udGVudCI6WyI8dGVtcGxhdGU+XHJcbiAgICA8ZGl2IGNsYXNzPVwicG9pbnRlci1kZXRhaWxcIj5cclxuICAgICAgICA8SGVhZGVyIHRpdGxlPVwi56ev5YiG5piO57uGXCI+PC9IZWFkZXI+XHJcbiAgICAgICBcclxuICAgIDwvZGl2PlxyXG48L3RlbXBsYXRlPlxyXG48c2NyaXB0PlxyXG4gICAgaW1wb3J0IEhlYWRlciBmcm9tICdAL3ZpZXdzL2NvbW1vbi9IZWFkZXIudnVlJztcclxuICAgIGV4cG9ydCBkZWZhdWx0IHtcclxuICAgICAgICBuYW1lOlwicG9pbnRjaGFuZ2VcIixcclxuICAgICAgICBjb21wb25lbnRzOntIZWFkZXJ9XHJcbiAgICB9XHJcbjwvc2NyaXB0PlxyXG5cclxuPHN0eWxlIHNjb3BlZD5cclxuICAgIEBpbXBvcnQgXCIuLi8uLi9hc3NldHMvY3NzL3BvaW50bWFsbC9wb2ludERldGFpbC5jc3NcIjtcclxuPC9zdHlsZT5cclxuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7OztBQU9BO0FBQ0E7QUFDQTtBQUNBO0FBQUE7QUFBQTtBQUZBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_babel-loader@8.0.5@babel-loader/lib/index.js!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointchange.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"30bfde94-vue-loader-template\"}!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/templateLoader.js?!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointchange.vue?vue&type=template&id=be0a61aa&scoped=true&":
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"30bfde94-vue-loader-template"}!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options!./src/views/pointmall/pointchange.vue?vue&type=template&id=be0a61aa&scoped=true& ***!
\***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"pointer-detail\" },\n [_c(\"Header\", { attrs: { title: \"积分明细\" } })],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvX2NhY2hlLWxvYWRlckAyLjAuMUBjYWNoZS1sb2FkZXIvZGlzdC9janMuanM/e1wiY2FjaGVEaXJlY3RvcnlcIjpcIm5vZGVfbW9kdWxlcy8uY2FjaGUvdnVlLWxvYWRlclwiLFwiY2FjaGVJZGVudGlmaWVyXCI6XCIzMGJmZGU5NC12dWUtbG9hZGVyLXRlbXBsYXRlXCJ9IS4vbm9kZV9tb2R1bGVzL192dWUtbG9hZGVyQDE1LjYuNEB2dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3RlbXBsYXRlTG9hZGVyLmpzPyEuL25vZGVfbW9kdWxlcy9fY2FjaGUtbG9hZGVyQDIuMC4xQGNhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvX3Z1ZS1sb2FkZXJAMTUuNi40QHZ1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuL3NyYy92aWV3cy9wb2ludG1hbGwvcG9pbnRjaGFuZ2UudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPWJlMGE2MWFhJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9wb2ludG1hbGwvcG9pbnRjaGFuZ2UudnVlPzU0YTgiXSwic291cmNlc0NvbnRlbnQiOlsidmFyIHJlbmRlciA9IGZ1bmN0aW9uKCkge1xuICB2YXIgX3ZtID0gdGhpc1xuICB2YXIgX2ggPSBfdm0uJGNyZWF0ZUVsZW1lbnRcbiAgdmFyIF9jID0gX3ZtLl9zZWxmLl9jIHx8IF9oXG4gIHJldHVybiBfYyhcbiAgICBcImRpdlwiLFxuICAgIHsgc3RhdGljQ2xhc3M6IFwicG9pbnRlci1kZXRhaWxcIiB9LFxuICAgIFtfYyhcIkhlYWRlclwiLCB7IGF0dHJzOiB7IHRpdGxlOiBcIuenr+WIhuaYjue7hlwiIH0gfSldLFxuICAgIDFcbiAgKVxufVxudmFyIHN0YXRpY1JlbmRlckZucyA9IFtdXG5yZW5kZXIuX3dpdGhTdHJpcHBlZCA9IHRydWVcblxuZXhwb3J0IHsgcmVuZGVyLCBzdGF0aWNSZW5kZXJGbnMgfSJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTsiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"30bfde94-vue-loader-template\"}!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/templateLoader.js?!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointchange.vue?vue&type=template&id=be0a61aa&scoped=true&\n");
/***/ })
})
\ No newline at end of file
webpackHotUpdate(14,{
/***/ "./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_babel-loader@8.0.5@babel-loader/lib/index.js!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointchange.vue?vue&type=script&lang=js&":
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options!./src/views/pointmall/pointchange.vue?vue&type=script&lang=js& ***!
\********************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: \"pointchange\",\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_0__[\"default\"]\n }\n});//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvX2NhY2hlLWxvYWRlckAyLjAuMUBjYWNoZS1sb2FkZXIvZGlzdC9janMuanM/IS4vbm9kZV9tb2R1bGVzL19iYWJlbC1sb2FkZXJAOC4wLjVAYmFiZWwtbG9hZGVyL2xpYi9pbmRleC5qcyEuL25vZGVfbW9kdWxlcy9fY2FjaGUtbG9hZGVyQDIuMC4xQGNhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvX3Z1ZS1sb2FkZXJAMTUuNi40QHZ1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuL3NyYy92aWV3cy9wb2ludG1hbGwvcG9pbnRjaGFuZ2UudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy9wb2ludGNoYW5nZS52dWU/NDBhMiJdLCJzb3VyY2VzQ29udGVudCI6WyI8dGVtcGxhdGU+XHJcbiAgICA8ZGl2IGNsYXNzPVwicG9pbnRlci1kZXRhaWxcIj5cclxuICAgICAgICA8SGVhZGVyIHRpdGxlPVwi56ev5YiG5piO57uGXCI+PC9IZWFkZXI+XHJcbiAgICAgICAgPGltZyBjbGFzcz1cImNoYW5nZS1oZWFkLWltZ1wiIHNyYz1cImh0dHBzOi8vc3RhdGljLmljaHVudC5jb20vZGlzdC9yZXMvbS9pbWFnZXMvY2hhbmdlX3N1Y2Nlc3MucG5nXCIgIGFsdD1cIueMjuiKr+e9kVwiLz5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwidGlwLXN1Y2Nlc3MtY2hhbmdlXCI+5oGt5Zac5oKo5oiQ5Yqf5YWR5o2iIDxiPjwvYj4g5LiA5Lu9PC9kaXY+XHJcbiAgICAgICAgPCEtLeiZmuaLny0tPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJib3gtY2hhbmdlIGJveC14blwiIHN0eWxlPVwiZGlzcGxheTpub25lXCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjaGFuZ2UtcnVsZS10aXBcIj7miJHku6zlsIbkuo7lhZHmjaLlkI7kuKTkuKrlt6XkvZzml6XlhoXvvIzmiorkvb/nlKjop4TliJnku6Xnn63kv6HlvaLlvI/lj5Hnu5nmgqghPC9kaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjaGVjay1jaGFuZ2UtdGlwXCI+5oKo5Lmf5Y+v5Lul5YmN5b6A5YWR5o2i6K6w5b2V6L+b6KGM5p+l55yL77yBPC9kaXY+XHJcbiAgICAgICAgICAgIDxhIGNsYXNzPVwiZ28tY2hhbmdlXCIgaHJlZj1cIi92My91c2VyL2V4Y2hhbmdlXCI+5Y675p+l55yLPC9hPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwhLS3kvJjmg6DliLgtLT5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiYm94LWNoYW5nZSBib3gteWhxXCIgc3R5bGU9XCJkaXNwbGF5Om5vbmVcIj5cclxuXHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjaGVjay1jaGFuZ2UtdGlwXCI+5oKo5Lmf5Y+v5Lul5YmN5b6A5YWR5o2i6K6w5b2V6L+b6KGM5p+l55yL77yBPC9kaXY+XHJcbiAgICAgICAgICAgIDxhIGNsYXNzPVwiZ28tY2hhbmdlXCIgaHJlZj1cIi92My91c2VyL2V4Y2hhbmdlXCI+5Y675p+l55yLPC9hPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwhLS3lrp7niaktLT5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiYm94LWNoYW5nZSBib3gtc3dcIiBzdHlsZT1cImRpc3BsYXk6bm9uZVwiPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwicG9pbnQtYWRkZXJzc3RpcFwiPuaIkeS7rOWwhumCruWvhOWIsOWmguS4i+WcsOWdgO+8mjwvZGl2PlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwicG9pbnQtYWRkZXJzcy1ib3hcIj5cclxuICAgICAgICAgICAgICAgIDwhLS0gPGRpdiBjbGFzcz1cIm5vLXBvaW50LWFkZHJlc3NcIj7lvZPliY3ml6DmlLbku7bkurrkv6Hmga/vvIzor7flvZXlhaXmlLbku7bkurrkv6Hmga/vvIE8L2Rpdj4gLS0+XHJcbiAgICAgICAgICAgICAgICA8IS0tIOaUtuS7tuS6uu+8mnh4PGJyPlxyXG4gICAgICAgICAgICAgICAg55S16K+d77yaMTU5OTk5OTk5OTk8YnI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5saW5lLWJsb2NrLXRleHRcIj5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2ID7lnLDlnYDvvJo8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicGNlODBcIj7lub/kuJznnIHmt7HlnLPluILpvpnlspfljLrlnYLnlLDooZfpgZPkupTlkozlpKfpgZPljZfkuIfnp5HmmJ/ngas25qCL5aSp5p6i5LuTM+alvDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPC9kaXY+IC0tPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGEgaHJlZj1cIiNcIiBjbGFzcz1cImFkZHJlc3MtbGlua1wiPuabtOaNouWcsOWdgDwvYT5cclxuICAgICAgICAgICAgPGEgY2xhc3M9XCJnby1jaGFuZ2VcIiBocmVmPVwiL3YzL3VzZXIvZXhjaGFuZ2VcIj7ljrvmn6XnnIs8L2E+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuPC90ZW1wbGF0ZT5cclxuPHNjcmlwdD5cclxuICAgIGltcG9ydCBIZWFkZXIgZnJvbSAnQC92aWV3cy9jb21tb24vSGVhZGVyLnZ1ZSc7XHJcbiAgICBleHBvcnQgZGVmYXVsdCB7XHJcbiAgICAgICAgbmFtZTpcInBvaW50Y2hhbmdlXCIsXHJcbiAgICAgICAgY29tcG9uZW50czp7SGVhZGVyfVxyXG4gICAgfVxyXG48L3NjcmlwdD5cclxuXHJcbjxzdHlsZSBzY29wZWQ+XHJcbiAgICBAaW1wb3J0IFwiLi4vLi4vYXNzZXRzL2Nzcy9wb2ludG1hbGwvcG9pbnREZXRhaWwuY3NzXCI7XHJcbjwvc3R5bGU+XHJcbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBbUNBO0FBQ0E7QUFDQTtBQUNBO0FBQUE7QUFBQTtBQUZBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_babel-loader@8.0.5@babel-loader/lib/index.js!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?!./node_modules/_vue-loader@15.6.4@vue-loader/lib/index.js?!./src/views/pointmall/pointchange.vue?vue&type=script&lang=js&\n");
/***/ })
})
\ No newline at end of file
{"h":"50159ffe5c325bdf849d","c":{"9":true}}
\ No newline at end of file
{"h":"ee7152a7a654a5b48ef4","c":{"app":true}}
\ No newline at end of file
{"h":"88532565c461e8ddcdd8","c":{"1":false}}
\ No newline at end of file
{"h":"b0644bc2d2330e5ea396","c":{"1":false}}
\ No newline at end of file
{"h":"c52dc928d6fe90fc7b04","c":{"1":false}}
\ No newline at end of file
{"h":"51da991219fc6b261a65","c":{"9":true}}
\ No newline at end of file
{"h":"a6116f97ac3981913a2d","c":{"9":true}}
\ No newline at end of file
{"h":"d0d84d1ef899b80c4476","c":{"12":true}}
\ No newline at end of file
{"h":"0363cacac157dd414638","c":{"app":true}}
\ No newline at end of file
{"h":"023dfae697b2893d5a27","c":{}}
\ No newline at end of file
{"h":"e1a9a7c3b6c321d0b835","c":{"14":true}}
\ No newline at end of file
{"h":"a12a125c6caea649cd4b","c":{"0":false}}
\ No newline at end of file
{"h":"89ca69537b4a3808575f","c":{"app":true}}
\ No newline at end of file
{"h":"add3cee287b4b0a0e96c","c":{"1":false}}
\ No newline at end of file
{"h":"edec7386ce9771675650","c":{"1":false}}
\ No newline at end of file
{"h":"5ec17ccf9fb7fcabe8d4","c":{"1":false}}
\ No newline at end of file
This diff could not be displayed because it is too large.
{"h":"75b5d996dca5ae6bfbfc","c":{"app":true}}
\ No newline at end of file
{"h":"e8b33858dde07228f2c7","c":{"app":true}}
\ No newline at end of file
{"h":"eaf7b687f416afe35dd6","c":{"1":false}}
\ No newline at end of file
{"h":"1b93c751d920c61a6e10","c":{"14":true}}
\ No newline at end of file
{"h":"0666eed48285279572fe","c":{"0":false}}
\ No newline at end of file
{"h":"21972e1afe844dad2036","c":{"0":false}}
\ No newline at end of file
{"h":"37effa05a4b50d700c15","c":{"0":false}}
\ No newline at end of file
{"h":"8b27397b3cd7066f2bd4","c":{"9":true}}
\ No newline at end of file
{"h":"94fe5f23eeea50c22eab","c":{"9":true}}
\ No newline at end of file
{"h":"f23f7f2485d3fa55400d","c":{"9":true}}
\ No newline at end of file
{"h":"d7626520365c0b08c95c","c":{"1":false}}
\ No newline at end of file
{"h":"cb22f1b229ebaf65e171","c":{"9":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
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 sign in to comment