张雄 2 years ago
parent c9a1eb6c92
commit 301f721a22

11
package-lock.json generated

@ -8,6 +8,7 @@
"name": "kxmh-seat-h5", "name": "kxmh-seat-h5",
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"amfe-flexible": "^2.2.1",
"axios": "^0.27.2", "axios": "^0.27.2",
"core-js": "^3.8.3", "core-js": "^3.8.3",
"qs": "^6.11.0", "qs": "^6.11.0",
@ -3008,6 +3009,11 @@
"ajv": "^6.9.1" "ajv": "^6.9.1"
} }
}, },
"node_modules/amfe-flexible": {
"version": "2.2.1",
"resolved": "https://registry.npmmirror.com/amfe-flexible/-/amfe-flexible-2.2.1.tgz",
"integrity": "sha512-L2VfvDzoETBjhRptg5u/IUuzHSuxm22JpSRb404p/TBGeRfwWmmNEbB+TFPIP/sS/+pbM18bCFH9QnMojLuPNw=="
},
"node_modules/ansi-escapes": { "node_modules/ansi-escapes": {
"version": "3.2.0", "version": "3.2.0",
"resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz", "resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
@ -11931,6 +11937,11 @@
"dev": true, "dev": true,
"requires": {} "requires": {}
}, },
"amfe-flexible": {
"version": "2.2.1",
"resolved": "https://registry.npmmirror.com/amfe-flexible/-/amfe-flexible-2.2.1.tgz",
"integrity": "sha512-L2VfvDzoETBjhRptg5u/IUuzHSuxm22JpSRb404p/TBGeRfwWmmNEbB+TFPIP/sS/+pbM18bCFH9QnMojLuPNw=="
},
"ansi-escapes": { "ansi-escapes": {
"version": "3.2.0", "version": "3.2.0",
"resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz", "resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz",

@ -7,6 +7,7 @@
"build": "vue-cli-service build" "build": "vue-cli-service build"
}, },
"dependencies": { "dependencies": {
"amfe-flexible": "^2.2.1",
"axios": "^0.27.2", "axios": "^0.27.2",
"core-js": "^3.8.3", "core-js": "^3.8.3",
"qs": "^6.11.0", "qs": "^6.11.0",

@ -1,27 +1,22 @@
<template> <template>
<div id="app"> <div id="app">
<seat-choose /> <cinema-seat />
</div> </div>
</template> </template>
<script> <script>
import seatChoose from './components/seatChoose.vue' import seatChoose from './components/seatChoose.vue'
import cinemaSeat from './components/cinemaSeat.vue'
export default { export default {
name: 'App', name: 'App',
components: { components: {
seatChoose seatChoose,
cinemaSeat
} }
} }
</script> </script>
<style> <style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style> </style>

@ -0,0 +1,450 @@
<template>
<div style="width: 100%">
<div>
<div class="drma_title" style="font-size: 14px; color: #181818;">
<div class="pic" @click="getdrama_list(seat_data.prev_show)">
<img style="width: 30px;height: 30px" :src="require('@/static/images/ui/' +(seat_data.prev_show !== 0 ? 'dram_activeleft.png' : 'dram_left.png'))" />
</div>
<div>{{ seat_data.show_info.show_date }}</div>
<div class="pic" @click="getdrama_list(seat_data.next_show)">
<img style="width: 30px;height: 30px" :src="require('@/static/images/ui/' +(seat_data.prev_show !== 0 ? 'dram_activeright.png' : 'dram_right.png'))" />
</div>
</div>
<div class="seat_grade">
<div :class="'seat_grade_info ' + (item.tkt_num == 0 ? 'null_tic' : '') + ' ' + (select_grade == item.grade ? 'select' : '')"
@click="select_gradeFun(item.tkt_num, item.grade)"
v-for="(item, index) in seat_data.grade_list" :key="index">
<img :src="require('@/static/images/seats/'+item.grade+'.png')" style="width:21px;height:21px;margin-left: 5px;" />
<div style="margin: 4px 5px 0 5px">¥{{ item.price }}</div>
</div>
</div>
</div>
<div class="canvasView" @click="chooseSeat">
<canvas width="750" height="1000" type="2d" id="canvas" canvas-id="myCanvas">
您的浏览器版本过低,不支持canvas,请升级浏览器或使用chrome浏览器
</canvas>
</div>
<div class="bottom">
<div class="seat_tips" v-if="selected_seats.length > 0">
<div class="loc" v-for="(item, index) in selected_seats" :key="index">
<div class="info">
<img :src="require('@/static/images/seats/' + item.grade + '.png')" style="width: 16px;height: 16px;" />
<span style="font-size: 12px">{{ item.seat_info }}</span>
</div>
<img src="../static/images/ui/close.png" style="width: 16px;height: 16px;" @click="cancel_sel(item.ticket_id)" />
</div>
</div>
<div class="submit">
<div class="cacu" v-if="total_price">
<div class="text">共计</div>
<div class="info">
<div class="price">
<div style="font-size: 22px; font-weight: bold">¥{{ total_price }}.00</div>
</div>
<div class="num" v-if="selected_seats.length">{{ selected_seats.length }}</div>
</div>
</div>
<button class="button" :disabled="!total_price" @tap="make_order"></button>
</div>
</div>
<!-- <div>{{scaleNum}}/{{selectedPos.x}},{{selectedPos.y}}/{{currentSeat.x}},{{currentSeat.y}}</div> -->
</div>
</template>
<script>
import {getMethod} from "@/request"
import MinaTouch from './mina-touch';
import seatImg from './seatImg';
export default {
data() {
return {
drama_id: null,
seat_data: {
show_info: {
show_date:'',
}
},
screenWidth: 412,
screenHeight: 915,
canvasTopGap: 175,
canvasBottomGap: 64,
ctx: null,
canvasImg: null,
select_grade: '',
selected_seats: [],
total_price: '',
max_select: 6,
//
scaleNum: 1,
// ()
scaleNumTwice: 1,
//
move: {
x: 0,
y: 0,
},
scaleShift: {
x: 0,
y: 0
},
tapTimeGap: true,
timer: 0,
maxCanvasW: 800,
maxCanvasH: 800,
multiplier: 1,
currentSeat: {},
selectedPos: {}
}
},
mounted() {
this.screenWidth = document.body.clientWidth;
this.screenHeight = document.body.clientHeight;
this.initData();
this.creatCanvas();
this.initTouch();
},
methods: {
async initData() {
getMethod('/api/v1/seat-list?drama_id=82459',{}).then(res => {
console.log(res)
})
let seat_data = {
grade_list: [
{grade: "E", price: 80, isVIP: 0, remark: "", tkt_num: 0, is_discount: 0},
{grade: "D", price: 180, isVIP: 0, remark: "", tkt_num: 8, is_discount: 1},
{grade: "C", price: 280, isVIP: 0, remark: "", tkt_num: 50, is_discount: 1},
{grade: "B", price: 380, isVIP: 0, remark: "", tkt_num: 30, is_discount: 1},
{grade: "A", price: 480, isVIP: 0, remark: "", tkt_num: 21, is_discount: 1}
],
grade_price: {
A: {1: "480.00", 2: "720.00", 3: "1200.00", 4: "1440.00", 5: "1920.00", 6: "2160.00"},
B: {1: "380.00", 2: "570.00", 3: "950.00", 4: "1140.00", 5: "1520.00", 6: "1710.00"},
C: {1: "280.00", 2: "420.00", 3: "700.00", 4: "840.00", 5: "1120.00", 6: "1260.00"},
D: {1: "180.00", 2: "270.00", 3: "450.00", 4: "540.00", 5: "720.00", 6: "810.00"},
E: {1: "80.00", 2: "160.00", 3: "240.00", 4: "320.00", 5: "400.00", 6: "480.00"}
},
info: "180以上价位第二张半价",
is_one: 1,
max_x: 29,
max_y: 18,
next_show: 82460,
prev_show: 82458,
seat_list: [
{ticket_id: 20745128, drama_id: 82459, x: 15, y: 1, row: 1, col: 1, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排1号",ticket_status: 0},
{ticket_id: 20745129, drama_id: 82459, x: 14, y: 1, row: 1, col: 3, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排3号",ticket_status: 0},
{ticket_id: 20745130, drama_id: 82459, x: 13, y: 1, row: 1, col: 5, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排5号",ticket_status: 0},
{ticket_id: 20745131, drama_id: 82459, x: 12, y: 1, row: 1, col: 7, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排7号",ticket_status: 0},
{ticket_id: 20745132, drama_id: 82459, x: 11, y: 1, row: 1, col: 9, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排9号",ticket_status: 0},
{ticket_id: 20745133, drama_id: 82459, x: 10, y: 1, row: 1, col: 11, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排11号",ticket_status: 0},
{ticket_id: 20745134, drama_id: 82459, x: 9, y: 1, row: 1, col: 13, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排13号",ticket_status: 0},
{ticket_id: 20745135, drama_id: 82459, x: 8, y: 1, row: 1, col: 15, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排15号",ticket_status: 0},
{ticket_id: 20745142, drama_id: 82459, x: 15, y: 2, row: 2, col: 1, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层2排1号",ticket_status: 0}
],
show_info: {
cycle_id: 4957,
drama_id: 82459,
show_date: "2022.10.22 周六 14:30",
theater_id: 466,
third_event_id: 11934007015306
},
theater_info: {
abb_id: 246,
city_id: 383,
cycle: 2,
is_assistant_stage: 0,
stage_direction: 1,
}
};
let maxCanvasW = 45 * (seat_data.max_x + 1);
let maxCanvasH = 45 * (seat_data.max_y + 1);
if (this.screenWidth < maxCanvasW) {
this.scaleNum = (this.screenWidth / maxCanvasW).toFixed(3) //
this.scaleNumTwice = (this.screenWidth / 45 / 20).toFixed(3)
};
this.drama_id = 82459;
this.seat_data = seat_data;
this.maxCanvasW = maxCanvasW;
this.maxCanvasH = maxCanvasH;
this.selected_seats = [];
this.total_price = '';
this.select_grade = '';
},
async creatCanvas() {
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
// ctx.width = this.maxCanvasW;
// ctx.height = this.maxCanvasH;
// canvas.width = this.maxCanvasW;
// canvas.height = this.maxCanvasH;
// ctx.scale(this.scaleNum * window.devicePixelRatio * 1.75, this.scaleNum * window.devicePixelRatio * 1.75)
this.ctx = ctx;
this.initCanvas(ctx);
},
async initCanvas(ctx) {
this.seat_data.seat_list.forEach((item) => {
if (this.select_grade != '') {
if (item.ticket_status === 0 && this.select_grade === item.grade) {
this.drawSeat(ctx, item.x * this.multiplier, item.y * this.multiplier, seatImg[item.grade].color)
} else {
this.drawSeat(ctx, item.x * this.multiplier, item.y * this.multiplier, seatImg['00'].color)
}
} else {
if (item.ticket_status === 0) {
this.drawSeat(ctx, item.x * this.multiplier, item.y * this.multiplier, seatImg[item.grade].color)
} else {
this.drawSeat(ctx, item.x * this.multiplier, item.y * this.multiplier, seatImg['00'].color)
}
}
});
if (this.selected_seats.length > 0) {
this.selected_seats.forEach((v, k) => {
ctx.clearRect(v.x * this.multiplier, v.y * this.multiplier, 60, 50)
this.drawSeat(this.ctx, v.x * this.multiplier, v.y * this.multiplier, seatImg['01'].color)
})
};
},
drawSeat(ctx, x, y, fillColor) {
ctx.beginPath();
ctx.fillStyle = fillColor
ctx.fillRect(x * 25, y * 25, 20, 20);
ctx.fill();
ctx.stroke();
},
initTouch() {
},
chooseSeat(e) {
let select_position = {
x: e.offsetX,
y: e.offsetY
};
let cur_seat = {
x: Math.floor((select_position.x - this.move.x) / 25),
y: Math.floor((select_position.y - this.move.y) / 25)
};
this.selectedPos = select_position;
this.currentSeat = cur_seat;
if (this.selected_seats.find((v, k) => {
if (cur_seat.x == v.x && cur_seat.y == v.y && v.ticket_status === 0) {
this.ctx.clearRect(v.x * 60, v.y * 60, 60, 50)
if (this.select_grade != '' && v.grade != this.select_grade) {
this.drawSeat(this.ctx, v.x, v.y, seatImg['00'].color)
} else {
this.drawSeat(this.ctx, v.x, v.y, seatImg[v.grade].color)
}
this.ctx.restore()
this.selected_seats.splice(k, 1)
return true
}
})) {
this.price_cac(this.selected_seats)
return
};
this.seat_data.seat_list.find(v => {
if (cur_seat.x == v.x && cur_seat.y == v.y && v.ticket_status === 0) {
//
if (this.selected_seats.length >= this.max_select) {
return
}
this.selected_seats.push(v);
this.ctx.clearRect(v.x, v.y, 60, 50)
this.drawSeat(this.ctx, v.x, v.y, seatImg['01'].color)
this.ctx.restore()
return true
}
})
this.price_cac(this.selected_seats)
},
select_gradeFun(num, grade) {
if (num !== 0) {
this.select_grade = (this.select_grade === grade) ? '' : grade;
this.initCanvas(this.ctx)
// this.scaleNum = (this.screenWidth / this.maxCanvasW).toFixed(3)
// this.move = {
// x: 0,
// y: 0
// }
}
},
//
price_cac(selected_seats) {
const p = [];
const grade_price = [];
grade_price.push(this.seat_data.grade_price);
for (var x in grade_price[0]) {
let a = 0;
let arr = [];
for (let i of selected_seats) {
if (i.grade == x) {
a++;
arr.push({
row: i.row,
col: i.col,
floor: i.floor
});
}
}
if (grade_price[0][x][a]) {
p.push({
tkt_grade: x,
tkt_num: a,
tkt_pirce: grade_price[0][x][a],
tkt_loc: arr
});
}
}
let ii = 0;
for (let i in p) {
ii += parseInt(p[i].tkt_pirce);
};
this.total_price = ii
},
getdrama_list(nextShow) {
},
cancel_sel(cancelId) {
this.selected_seats.find((v, k) => {
if (v.ticket_id === cancelId) {
this.ctx.clearRect(v.x * 60, v.y * 60, 60, 50)
if (this.select_grade != '' && v.grade != this.select_grade) {
this.drawSeat(this.ctx, v.x, v.y, seatImg['00'].color)
} else {
this.drawSeat(this.ctx, v.x, v.y, seatImg[v.grade].color)
}
this.selected_seats.splice(k, 1)
return true
}
})
this.price_cac(this.selected_seats);
},
make_order() {
}
}
}
</script>
<style scoped>
.canvasView {
width: 100%;
height: 540px;
overflow-y: scroll;
background: #F9F9F9;
}
.seat_grade {
display: flex;
flex-wrap: wrap;
color: #7b7b7b;
font-size: 12px;
}
.seat_grade .seat_grade_info {
width: 20%;
margin: 5px;
display: flex;
padding: 5px 2.5px;
border-radius: 26px;
border: 1px solid #d2d2d2;
}
.seat_grade .null_tic {
background: #dddddd;
border: 1px solid #dddddd;
color: #ffffff;
}
.seat_grade .select {
background: #ffffff;
border: 1px solid #ff1d42;
color: #181818;
}
.drma_title {
display: flex;
justify-content: space-between;
align-items: center;
}
.drma_title .pic {
width: 30px;
height: 30px;
}
.drma_title .pic image {
width: 100%;
height: 100%;
}
.bottom {
position: fixed;
bottom: 0;
width: 100%;
}
.bottom .seat_tips {
display: flex;
flex-wrap: wrap;
/* padding: 5px 10px; */
width: 95%;
background: #f8f8f7;
}
.bottom .seat_tips .loc {
width: 140px;
height: 25px;
background: #ffeef3;
border-radius: 13px;
display: flex;
justify-content: space-around;
align-items: center;
margin: 5px;
}
.bottom .seat_tips .loc .info {
display: flex;
align-items: center;
}
.bottom .submit {
border-top: 1px solid #dddddd;
display: flex;
height: 64px;
align-items: center;
background: #fff;
}
.bottom .submit .cacu {
display: flex;
align-items: center;
}
.bottom .submit .cacu .text {
font-size: 18px;
margin: 0 10px 0 15px;
}
.bottom .submit .cacu .info .price {
color: #ff1d42;
font-size: 16px;
}
.bottom .submit .cacu .info .num {
color: #1394f2;
font-size: 10px;
}
.bottom .submit .button {
width: 120px;
height: 36px;
background: linear-gradient(90deg, #ff4284 0%, #ff1d42 100%);
border-radius: 22px;
margin-left: auto;
margin-right: 15px;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
color: #ffffff;
}
</style>

@ -1,5 +1,5 @@
<template> <template>
<div> <div style="width: 100%;height: 100%">
<div class="seat_grade"> <div class="seat_grade">
<div <div
:class="'seat_grade_info ' + (item.tkt_num == 0 ? 'null_tic' : '') + ' ' + (select_grade == item.grade ? 'select' : '')" :class="'seat_grade_info ' + (item.tkt_num == 0 ? 'null_tic' : '') + ' ' + (select_grade == item.grade ? 'select' : '')"
@ -10,11 +10,12 @@
</div> </div>
</div> </div>
<div class="canvasView" @click="chooseSeat"> <div class="canvasView" @click="chooseSeat">
<canvas :style="'height:'+maxCanvasH * scaleNum +'px;width:'+ maxCanvasW * scaleNum +'px;left:'+(move.x)+'px;top:'+(move.y+canvasTopGap)+'px;'" <canvas :style="'height:'+maxCanvasH * scaleNum +'px;width:'+ maxCanvasW * scaleNum +'px;'"
type="2d" id="canvas" canvas-id="myCanvas"> type="2d" id="canvas" canvas-id="myCanvas">
您的浏览器版本过低,不支持canvas,请升级浏览器或使用chrome浏览器 您的浏览器版本过低,不支持canvas,请升级浏览器或使用chrome浏览器
</canvas> </canvas>
</div> </div>
<div>{{scaleNum}}/{{selectedPos.x}},{{selectedPos.y}}/{{currentSeat.x}},{{currentSeat.y}}</div>
</div> </div>
</template> </template>
@ -44,8 +45,8 @@ export default {
scaleNumTwice: 1, scaleNumTwice: 1,
// //
move: { move: {
x: 0, x: 16,
y: 0 y: 80
}, },
scaleShift: { scaleShift: {
x: 0, x: 0,
@ -53,9 +54,11 @@ export default {
}, },
tapTimeGap: true, tapTimeGap: true,
timer: 0, timer: 0,
maxCanvasW: 400, maxCanvasW: 800,
maxCanvasH: 800, maxCanvasH: 800,
multiplier: 60, multiplier: 60,
currentSeat: {},
selectedPos: {}
} }
}, },
mounted() { mounted() {
@ -89,15 +92,15 @@ export default {
next_show: 82460, next_show: 82460,
prev_show: 82458, prev_show: 82458,
seat_list: [ seat_list: [
{ticket_id: 20745128, drama_id: 82459, x: 15, y: 1, row: 1, col: 1, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排1号",ticket_status: 2}, {ticket_id: 20745128, drama_id: 82459, x: 15, y: 1, row: 1, col: 1, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排1号",ticket_status: 1},
{ticket_id: 20745129, drama_id: 82459, x: 14, y: 1, row: 1, col: 3, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排3号",ticket_status: 2}, {ticket_id: 20745129, drama_id: 82459, x: 14, y: 1, row: 1, col: 3, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排3号",ticket_status: 0},
{ticket_id: 20745130, drama_id: 82459, x: 13, y: 1, row: 1, col: 5, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排5号",ticket_status: 2}, {ticket_id: 20745130, drama_id: 82459, x: 13, y: 1, row: 1, col: 5, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排5号",ticket_status: 0},
{ticket_id: 20745131, drama_id: 82459, x: 12, y: 1, row: 1, col: 7, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排7号",ticket_status: 2}, {ticket_id: 20745131, drama_id: 82459, x: 12, y: 1, row: 1, col: 7, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排7号",ticket_status: 0},
{ticket_id: 20745132, drama_id: 82459, x: 11, y: 1, row: 1, col: 9, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排9号",ticket_status: 2}, {ticket_id: 20745132, drama_id: 82459, x: 11, y: 1, row: 1, col: 9, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排9号",ticket_status: 0},
{ticket_id: 20745133, drama_id: 82459, x: 10, y: 1, row: 1, col: 11, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排11号",ticket_status: 2}, {ticket_id: 20745133, drama_id: 82459, x: 10, y: 1, row: 1, col: 11, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排11号",ticket_status: 1},
{ticket_id: 20745134, drama_id: 82459, x: 9, y: 1, row: 1, col: 13, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排13号",ticket_status: 2}, {ticket_id: 20745134, drama_id: 82459, x: 9, y: 1, row: 1, col: 13, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排13号",ticket_status: 0},
{ticket_id: 20745135, drama_id: 82459, x: 8, y: 1, row: 1, col: 15, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排15号",ticket_status: 2}, {ticket_id: 20745135, drama_id: 82459, x: 8, y: 1, row: 1, col: 15, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层1排15号",ticket_status: 1},
{ticket_id: 20745142, drama_id: 82459, x: 15, y: 2, row: 2, col: 1, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层2排1号",ticket_status: 2} {ticket_id: 20745142, drama_id: 82459, x: 15, y: 2, row: 2, col: 1, floor: 0, f_remark: "观众席一层",authority: 15,grade: 'A',isPKG: 0,isVIP: 0,price: "480.00",s_remark:'',seat_info: "观众席一层2排1号",ticket_status: 0}
], ],
show_info: { show_info: {
cycle_id: 4957, cycle_id: 4957,
@ -201,9 +204,11 @@ export default {
y: e.pageY y: e.pageY
}; };
let cur_seat = { let cur_seat = {
x: Math.floor((select_position.x - this.move.x) / 60 / this.scaleNum), x: Math.floor((select_position.x - this.move.x) / (78 * this.scaleNum)),
y: Math.floor((select_position.y - this.canvasTopGap - this.move.y) / 60 / this.scaleNum) y: Math.floor((select_position.y - this.move.y) / (78 * this.scaleNum))
}; };
this.selectedPos = select_position;
this.currentSeat = cur_seat;
if (this.selected_seats.find((v, k) => { if (this.selected_seats.find((v, k) => {
if (cur_seat.x == v.x && cur_seat.y == v.y && v.ticket_status === 0) { if (cur_seat.x == v.x && cur_seat.y == v.y && v.ticket_status === 0) {
// #ifdef MP-BAIDU // #ifdef MP-BAIDU
@ -221,9 +226,28 @@ export default {
return true return true
} }
})) { })) {
// this.price_cac(that.selected_seats) this.price_cac(this.selected_seats)
return
};
this.seat_data.seat_list.find(v => {
if (cur_seat.x == v.x && cur_seat.y == v.y && v.ticket_status === 0) {
//
if (this.selected_seats.length >= this.max_select) {
uni.showToast({
title: '单次最多选座6个',
icon: 'fail',
duration: 500
})
return return
} }
this.selected_seats.push(v);
this.ctx.clearRect(v.x * 60, v.y * 60, 60, 50)
this.drawSeat(this.ctx, v.x * 60, v.y * 60, seatImg['01'].color)
this.ctx.restore()
return true
}
})
this.price_cac(this.selected_seats)
}, },
select_gradeFun(num, grade) { select_gradeFun(num, grade) {
if (num !== 0) { if (num !== 0) {
@ -236,6 +260,39 @@ export default {
} }
} }
}, },
//
price_cac(selected_seats) {
const p = [];
const grade_price = [];
grade_price.push(this.seat_data.grade_price);
for (var x in grade_price[0]) {
let a = 0;
let arr = [];
for (let i of selected_seats) {
if (i.grade == x) {
a++;
arr.push({
row: i.row,
col: i.col,
floor: i.floor
});
}
}
if (grade_price[0][x][a]) {
p.push({
tkt_grade: x,
tkt_num: a,
tkt_pirce: grade_price[0][x][a],
tkt_loc: arr
});
}
}
let ii = 0;
for (let i in p) {
ii += parseInt(p[i].tkt_pirce);
};
this.total_price = ii
},
} }
} }
</script> </script>

@ -2,13 +2,13 @@ import axios from "axios"
//创建axios的实例 //创建axios的实例
const httpService = axios.create({ const httpService = axios.create({
baseURL: 'https://mm.kaixinguopiao.com',// TODO:具体的配置可以根据项目情况而来 baseURL: 'https://mini.kaixinguopiao.cn',// TODO:具体的配置可以根据项目情况而来
timeout: 5000 timeout: 5000
}) })
httpService.interceptors.request.use(config => { httpService.interceptors.request.use(config => {
config.headers['Content-Type'] = "application/json"; // config.headers['Content-Type'] = "application/json";
config.headers['Access-Control-Allow-Origin'] = '*'; // config.headers['Access-Control-Allow-Origin'] = '*';
// config.headers['admin-token'] = store.getters.getToken; // config.headers['admin-token'] = store.getters.getToken;
// config.headers['device-type'] = "web"; // config.headers['device-type'] = "web";
return config return config
@ -18,22 +18,9 @@ httpService.interceptors.request.use(config => {
httpService.interceptors.response.use(response => { httpService.interceptors.response.use(response => {
let msg = '';
let data = null;
let res = response.data; let res = response.data;
if(res.code){
data = res.data;
msg = res.msg || "";
// return {data, msg};
return res; return res;
} else {
msg = res.msg || "";
// return Promise.reject(new Error(msg))
return res;
}
}, err => { }, err => {
// console.log(err)
// TODO:具体的code对应的处理可继续添加修改
return Promise.reject(err); return Promise.reject(err);
}) })

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 801 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 608 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 566 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 823 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 761 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 847 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 636 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 561 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1011 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 717 B

Loading…
Cancel
Save