H5适配
Showing
5 changed files
with
186 additions
and
92 deletions
| ... | @@ -469,11 +469,11 @@ | ... | @@ -469,11 +469,11 @@ |
| 469 | <div v-if="payType == '2'&&wePayCodeUrl"> | 469 | <div v-if="payType == '2'&&wePayCodeUrl"> |
| 470 | <div class="payImgbox flexCenter"> | 470 | <div class="payImgbox flexCenter"> |
| 471 | <div> | 471 | <div> |
| 472 | <img :src="wePayCodeUrl" class="border" width="260"> | 472 | <img :src="wePayCodeUrl" class="border payImg1" width="260"> |
| 473 | <img class="mt20" src="@/assets/img/sm.png"> | 473 | <img class="mt20 payImg2" src="@/assets/img/sm.png"> |
| 474 | </div> | 474 | </div> |
| 475 | <div class="ml20"> | 475 | <div class="ml20"> |
| 476 | <img height="360" src="@/assets/img/rr.jpg"> | 476 | <img class="payImg3" height="360" src="@/assets/img/rr.jpg"> |
| 477 | </div> | 477 | </div> |
| 478 | </div> | 478 | </div> |
| 479 | <div v-if="language==0" class="tip text-center text-danger"> | 479 | <div v-if="language==0" class="tip text-center text-danger"> |
| ... | @@ -1161,4 +1161,24 @@ const showSJ = () => { | ... | @@ -1161,4 +1161,24 @@ const showSJ = () => { |
| 1161 | .price { | 1161 | .price { |
| 1162 | color: orange; | 1162 | color: orange; |
| 1163 | } | 1163 | } |
| 1164 | |||
| 1165 | |||
| 1166 | @media screen and (max-width: 768px) { | ||
| 1167 | .payImgbox { | ||
| 1168 | width: 100%; | ||
| 1169 | |||
| 1170 | .payImg1 { | ||
| 1171 | width: 40vw; | ||
| 1172 | } | ||
| 1173 | |||
| 1174 | .payImg2 { | ||
| 1175 | width: 40vw; | ||
| 1176 | } | ||
| 1177 | |||
| 1178 | .payImg3 { | ||
| 1179 | width: 40vw; | ||
| 1180 | height: auto; | ||
| 1181 | } | ||
| 1182 | } | ||
| 1183 | } | ||
| 1164 | </style> | 1184 | </style> | ... | ... |
| ... | @@ -22,7 +22,7 @@ | ... | @@ -22,7 +22,7 @@ |
| 22 | <div> | 22 | <div> |
| 23 | <p>票档:{{ ticketForm.extJson?.atName }}</p> | 23 | <p>票档:{{ ticketForm.extJson?.atName }}</p> |
| 24 | <p>场馆:{{ ticketForm.extJson?.atsName }}</p> | 24 | <p>场馆:{{ ticketForm.extJson?.atsName }}</p> |
| 25 | <p>场次:{{ ticketForm.extJson?.sessionType =='1000'? '日间场' : '夜间场' }}</p> | 25 | <p>场次:{{ ticketForm.extJson?.sessionType == '1000' ? '日间场' : '夜间场' }}</p> |
| 26 | <p>票型:{{ ticketForm.extJson?.atstName }}</p> | 26 | <p>票型:{{ ticketForm.extJson?.atstName }}</p> |
| 27 | </div> | 27 | </div> |
| 28 | <div> | 28 | <div> |
| ... | @@ -34,7 +34,7 @@ | ... | @@ -34,7 +34,7 @@ |
| 34 | <el-col :lg="8" :md="12" :sm="12" :xs="24">联系方式:{{ ticketForm.phone }} | 34 | <el-col :lg="8" :md="12" :sm="12" :xs="24">联系方式:{{ ticketForm.phone }} |
| 35 | </el-col> | 35 | </el-col> |
| 36 | <el-col :lg="8" :md="12" :sm="12" :xs="24"> | 36 | <el-col :lg="8" :md="12" :sm="12" :xs="24"> |
| 37 | 共计:{{ (totalMoney*1).toFixed(2) }}{{ | 37 | 共计:{{ (totalMoney * 1).toFixed(2) }}{{ |
| 38 | paymentType == 1 ? '¥' : '€' | 38 | paymentType == 1 ? '¥' : '€' |
| 39 | }} | 39 | }} |
| 40 | </el-col> | 40 | </el-col> |
| ... | @@ -51,7 +51,9 @@ | ... | @@ -51,7 +51,9 @@ |
| 51 | class="mw500" | 51 | class="mw500" |
| 52 | > | 52 | > |
| 53 | <el-form-item :label="language==0 ?'开票金额':'Amount'"> | 53 | <el-form-item :label="language==0 ?'开票金额':'Amount'"> |
| 54 | <span class="bigprice">{{ paymentType != 3 ? '¥' : '€' }}{{ paymentType != 3?ticketForm.total:ticketForm.totalEn }}</span> | 54 | <span class="bigprice">{{ |
| 55 | paymentType != 3 ? '¥' : '€' | ||
| 56 | }}{{ paymentType != 3 ? ticketForm.total : ticketForm.totalEn }}</span> | ||
| 55 | </el-form-item> | 57 | </el-form-item> |
| 56 | 58 | ||
| 57 | <el-form-item :label="language==0 ?`发票形式`:'Invoice Form'" prop="invoiceForm" required> | 59 | <el-form-item :label="language==0 ?`发票形式`:'Invoice Form'" prop="invoiceForm" required> |
| ... | @@ -475,4 +477,5 @@ function goBack() { | ... | @@ -475,4 +477,5 @@ function goBack() { |
| 475 | line-height: 1; | 477 | line-height: 1; |
| 476 | font-family: "DIN Alternate"; | 478 | font-family: "DIN Alternate"; |
| 477 | } | 479 | } |
| 480 | |||
| 478 | </style> | 481 | </style> | ... | ... |
| ... | @@ -23,7 +23,7 @@ | ... | @@ -23,7 +23,7 @@ |
| 23 | </div> | 23 | </div> |
| 24 | 24 | ||
| 25 | <div class="form"> | 25 | <div class="form"> |
| 26 | <el-form ref="formRef" :model="orderForm" :rules="rules" label-width="140px"> | 26 | <el-form ref="formRef" :model="orderForm" :rules="rules" label-position="top" label-width="130px"> |
| 27 | <div v-if="TickForm2.ticketType == '1'"> | 27 | <div v-if="TickForm2.ticketType == '1'"> |
| 28 | <el-form-item :label="language == 0 ? '桌号' : 'Table'"> | 28 | <el-form-item :label="language == 0 ? '桌号' : 'Table'"> |
| 29 | 29 | ||
| ... | @@ -725,12 +725,6 @@ div { | ... | @@ -725,12 +725,6 @@ div { |
| 725 | cursor: pointer | 725 | cursor: pointer |
| 726 | } | 726 | } |
| 727 | 727 | ||
| 728 | @media screen and (max-width: 768px) { | ||
| 729 | .container { | ||
| 730 | width: 100%; | ||
| 731 | } | ||
| 732 | } | ||
| 733 | |||
| 734 | .rightBox { | 728 | .rightBox { |
| 735 | .info { | 729 | .info { |
| 736 | background: rgba(69, 61, 234, 0.04); | 730 | background: rgba(69, 61, 234, 0.04); |
| ... | @@ -741,4 +735,49 @@ div { | ... | @@ -741,4 +735,49 @@ div { |
| 741 | margin-top: 30px; | 735 | margin-top: 30px; |
| 742 | } | 736 | } |
| 743 | } | 737 | } |
| 738 | |||
| 739 | @media screen and (max-width: 768px) { | ||
| 740 | .container { | ||
| 741 | width: 100%; | ||
| 742 | |||
| 743 | :deep(.form) { | ||
| 744 | padding: 30px 0 !important; | ||
| 745 | |||
| 746 | form { | ||
| 747 | padding: 10px; | ||
| 748 | } | ||
| 749 | } | ||
| 750 | |||
| 751 | .footer { | ||
| 752 | display: block; | ||
| 753 | width: 100%; | ||
| 754 | height: auto; | ||
| 755 | padding: 20px; | ||
| 756 | |||
| 757 | div { | ||
| 758 | width: 100%; | ||
| 759 | } | ||
| 760 | |||
| 761 | .goBack { | ||
| 762 | width: 140px; | ||
| 763 | position: relative; | ||
| 764 | height: 40px; | ||
| 765 | top: 0; | ||
| 766 | left: 0%; | ||
| 767 | margin: 10px 0; | ||
| 768 | } | ||
| 769 | |||
| 770 | .pay { | ||
| 771 | width: 140px; | ||
| 772 | position: relative; | ||
| 773 | height: 40px; | ||
| 774 | top: -50px; | ||
| 775 | left: 55%; | ||
| 776 | } | ||
| 777 | } | ||
| 778 | |||
| 779 | } | ||
| 780 | |||
| 781 | |||
| 782 | } | ||
| 744 | </style> | 783 | </style> | ... | ... |
| ... | @@ -2,7 +2,11 @@ | ... | @@ -2,7 +2,11 @@ |
| 2 | <div> | 2 | <div> |
| 3 | <!-- top --> | 3 | <!-- top --> |
| 4 | <div class="container top "> | 4 | <div class="container top "> |
| 5 | <el-row :gutter="20" style="width: 100%"> | ||
| 6 | <el-col :lg="12" :md="12" :sm="24" :xs="24"> | ||
| 5 | <img :src="fillImgUrl(matchForm.ticketImg)" alt="" class="cover_img"> | 7 | <img :src="fillImgUrl(matchForm.ticketImg)" alt="" class="cover_img"> |
| 8 | </el-col> | ||
| 9 | <el-col :lg="12" :md="12" :sm="24" :xs="24"> | ||
| 6 | <div class="info"> | 10 | <div class="info"> |
| 7 | <div class="title">{{ matchForm.name }}</div> | 11 | <div class="title">{{ matchForm.name }}</div> |
| 8 | <div class="time"> | 12 | <div class="time"> |
| ... | @@ -231,6 +235,10 @@ | ... | @@ -231,6 +235,10 @@ |
| 231 | </template> | 235 | </template> |
| 232 | </div> | 236 | </div> |
| 233 | </div> | 237 | </div> |
| 238 | </el-col> | ||
| 239 | </el-row> | ||
| 240 | |||
| 241 | |||
| 234 | </div> | 242 | </div> |
| 235 | 243 | ||
| 236 | <div class="container bottom"> | 244 | <div class="container bottom"> |
| ... | @@ -430,7 +438,6 @@ function selectTick(v) { | ... | @@ -430,7 +438,6 @@ function selectTick(v) { |
| 430 | selectForm.value.latstId = v.id | 438 | selectForm.value.latstId = v.id |
| 431 | selectForm.value.price = v.price | 439 | selectForm.value.price = v.price |
| 432 | selectForm.value.priceEn = v.priceEn | 440 | selectForm.value.priceEn = v.priceEn |
| 433 | |||
| 434 | // vip票 | 441 | // vip票 |
| 435 | if (currTick.value.ticketType == '1') { | 442 | if (currTick.value.ticketType == '1') { |
| 436 | showUrl.value = v.images | 443 | showUrl.value = v.images |
| ... | @@ -438,10 +445,12 @@ function selectTick(v) { | ... | @@ -438,10 +445,12 @@ function selectTick(v) { |
| 438 | leftCount.value = -999 | 445 | leftCount.value = -999 |
| 439 | } else { | 446 | } else { |
| 440 | checkNonPayment().then(res => { | 447 | checkNonPayment().then(res => { |
| 448 | // debugger | ||
| 441 | if (res.data) { | 449 | if (res.data) { |
| 442 | getListByAtstId({ | 450 | getListByAtstId({ |
| 443 | atstId: selectForm.value.latstId | 451 | atstId: selectForm.value.latstId |
| 444 | }).then(res => { | 452 | }).then(res => { |
| 453 | console.log(res.data) | ||
| 445 | leftCount.value = res.data | 454 | leftCount.value = res.data |
| 446 | if (leftCount.value > 0) { | 455 | if (leftCount.value > 0) { |
| 447 | showUrl.value = v.images | 456 | showUrl.value = v.images |
| ... | @@ -544,7 +553,7 @@ getmatchData() | ... | @@ -544,7 +553,7 @@ getmatchData() |
| 544 | width: 500px; | 553 | width: 500px; |
| 545 | height: 667px; | 554 | height: 667px; |
| 546 | object-fit: fill; | 555 | object-fit: fill; |
| 547 | margin-right: 36px; | 556 | //margin-right: 36px; |
| 548 | } | 557 | } |
| 549 | 558 | ||
| 550 | .info { | 559 | .info { |
| ... | @@ -696,78 +705,6 @@ getmatchData() | ... | @@ -696,78 +705,6 @@ getmatchData() |
| 696 | } | 705 | } |
| 697 | } | 706 | } |
| 698 | 707 | ||
| 699 | @media screen and (max-width: 768px) { | ||
| 700 | .container { | ||
| 701 | width: 100%; | ||
| 702 | } | ||
| 703 | .forWei { | ||
| 704 | display: block | ||
| 705 | } | ||
| 706 | .top { | ||
| 707 | //transform: scale(0.5);transform-origin: left top; | ||
| 708 | .cover_img { | ||
| 709 | width: 120px; | ||
| 710 | height: 160px; | ||
| 711 | margin-right: 15px; | ||
| 712 | } | ||
| 713 | |||
| 714 | .info { | ||
| 715 | padding: 0; | ||
| 716 | |||
| 717 | .title { | ||
| 718 | font-size: 14px; | ||
| 719 | margin: 0; | ||
| 720 | } | ||
| 721 | |||
| 722 | .time, .address, .label, .tip { | ||
| 723 | font-size: 12px; | ||
| 724 | } | ||
| 725 | |||
| 726 | .title, .time, .address, .tip, .select_item_box { | ||
| 727 | margin-bottom: 3px; | ||
| 728 | } | ||
| 729 | |||
| 730 | .select_item_box { | ||
| 731 | .label { | ||
| 732 | font-size: 12px; | ||
| 733 | } | ||
| 734 | |||
| 735 | .select_item .tag { | ||
| 736 | padding: 2px 10px; | ||
| 737 | font-size: 12px; | ||
| 738 | } | ||
| 739 | |||
| 740 | .select_item .tagActive { | ||
| 741 | padding: 2px 10px; | ||
| 742 | font-size: 12px; | ||
| 743 | } | ||
| 744 | |||
| 745 | .select_item .tagDisabled { | ||
| 746 | padding: 2px 10px; | ||
| 747 | font-size: 12px; | ||
| 748 | } | ||
| 749 | } | ||
| 750 | |||
| 751 | .btn { | ||
| 752 | display: inline-block; | ||
| 753 | margin: 10px 0 0; | ||
| 754 | background: linear-gradient(270deg, #493ceb 0%, #8623fc 100%); | ||
| 755 | border-radius: 20px; | ||
| 756 | line-height: 40px; | ||
| 757 | text-align: center; | ||
| 758 | font-weight: 500; | ||
| 759 | font-size: 16px; | ||
| 760 | color: #ffffff; | ||
| 761 | cursor: pointer; | ||
| 762 | } | ||
| 763 | } | ||
| 764 | } | ||
| 765 | .bottom { | ||
| 766 | padding: 0 | ||
| 767 | } | ||
| 768 | |||
| 769 | |||
| 770 | } | ||
| 771 | 708 | ||
| 772 | .countDownTitle { | 709 | .countDownTitle { |
| 773 | text-align: center; | 710 | text-align: center; |
| ... | @@ -850,4 +787,85 @@ getmatchData() | ... | @@ -850,4 +787,85 @@ getmatchData() |
| 850 | color: #4a4a4a !important; | 787 | color: #4a4a4a !important; |
| 851 | cursor: no-drop !important; | 788 | cursor: no-drop !important; |
| 852 | } | 789 | } |
| 790 | |||
| 791 | |||
| 792 | @media screen and (max-width: 768px) { | ||
| 793 | .container { | ||
| 794 | width: 100%; | ||
| 795 | } | ||
| 796 | .forWei { | ||
| 797 | display: block | ||
| 798 | } | ||
| 799 | .top { | ||
| 800 | //transform: scale(0.5);transform-origin: left top; | ||
| 801 | .cover_img { | ||
| 802 | width: 120px; | ||
| 803 | height: 160px; | ||
| 804 | margin-right: 15px; | ||
| 805 | } | ||
| 806 | |||
| 807 | .info { | ||
| 808 | padding: 0; | ||
| 809 | |||
| 810 | .title { | ||
| 811 | font-size: 14px; | ||
| 812 | margin: 0; | ||
| 813 | } | ||
| 814 | |||
| 815 | .time, .address, .label, .tip { | ||
| 816 | font-size: 12px; | ||
| 817 | } | ||
| 818 | |||
| 819 | .title, .time, .address, .tip, .select_item_box { | ||
| 820 | margin-bottom: 3px; | ||
| 821 | } | ||
| 822 | |||
| 823 | .select_item_box { | ||
| 824 | .label { | ||
| 825 | font-size: 12px; | ||
| 826 | } | ||
| 827 | |||
| 828 | .select_item .tag { | ||
| 829 | padding: 2px 10px; | ||
| 830 | font-size: 12px; | ||
| 831 | } | ||
| 832 | |||
| 833 | .select_item .tagActive { | ||
| 834 | padding: 2px 10px; | ||
| 835 | font-size: 12px; | ||
| 836 | } | ||
| 837 | |||
| 838 | .select_item .tagDisabled { | ||
| 839 | padding: 2px 10px; | ||
| 840 | font-size: 12px; | ||
| 841 | } | ||
| 842 | } | ||
| 843 | |||
| 844 | .btn { | ||
| 845 | display: inline-block; | ||
| 846 | margin: 10px 0 0; | ||
| 847 | background: linear-gradient(270deg, #493ceb 0%, #8623fc 100%); | ||
| 848 | border-radius: 20px; | ||
| 849 | line-height: 40px; | ||
| 850 | text-align: center; | ||
| 851 | font-weight: 500; | ||
| 852 | font-size: 16px; | ||
| 853 | color: #ffffff; | ||
| 854 | cursor: pointer; | ||
| 855 | } | ||
| 856 | } | ||
| 857 | } | ||
| 858 | .bottom { | ||
| 859 | padding: 0 | ||
| 860 | } | ||
| 861 | |||
| 862 | .father { | ||
| 863 | .son { | ||
| 864 | width: 85px !important; | ||
| 865 | height: 67.5px !important; | ||
| 866 | left: 50px; | ||
| 867 | top: 10px; | ||
| 868 | } | ||
| 869 | } | ||
| 870 | } | ||
| 853 | </style> | 871 | </style> | ... | ... |
| ... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
| 30 | v-model="show" | 30 | v-model="show" |
| 31 | :title="language==0?'新增观影人':'New moviegoers'" | 31 | :title="language==0?'新增观影人':'New moviegoers'" |
| 32 | center | 32 | center |
| 33 | width="700" | 33 | style="max-width: 700px;min-width: 350px;" |
| 34 | > | 34 | > |
| 35 | <el-form | 35 | <el-form |
| 36 | ref="formRef" :model="form" :rules="rules" label-width="100px" size="large" | 36 | ref="formRef" :model="form" :rules="rules" label-width="100px" size="large" |
| ... | @@ -51,12 +51,19 @@ | ... | @@ -51,12 +51,19 @@ |
| 51 | </el-form-item> | 51 | </el-form-item> |
| 52 | </el-form> | 52 | </el-form> |
| 53 | 53 | ||
| 54 | <span class="dialog-footer"> | 54 | <div class="dialog-footer"> |
| 55 | <div style="text-align: center"> | 55 | <div style="text-align: center"> |
| 56 | <el-button class="can_pay" @click="show = false">{{ language == 0 ? '取 消' : 'cancel' }}</el-button> | 56 | <el-button class="can_pay marginBtn" @click="show = false">{{ |
| 57 | <el-button class="pay" type="primary" @click="submit">{{ language == 0 ? '确 定' : 'confirm' }}</el-button> | 57 | language == 0 ? '取 消' : 'cancel' |
| 58 | }} | ||
| 59 | </el-button> | ||
| 60 | <el-button class="pay marginBtn" type="primary" @click="submit">{{ | ||
| 61 | language == 0 ? '确 定' : 'confirm' | ||
| 62 | }} | ||
| 63 | </el-button> | ||
| 58 | </div> | 64 | </div> |
| 59 | </span> | 65 | </div> |
| 66 | <br> | ||
| 60 | </el-dialog> | 67 | </el-dialog> |
| 61 | </el-card> | 68 | </el-card> |
| 62 | 69 | ||
| ... | @@ -302,5 +309,12 @@ div { | ... | @@ -302,5 +309,12 @@ div { |
| 302 | .container { | 309 | .container { |
| 303 | width: 100%; | 310 | width: 100%; |
| 304 | } | 311 | } |
| 312 | form { | ||
| 313 | margin: 20px 20px 0 0 !important; | ||
| 314 | } | ||
| 315 | } | ||
| 316 | |||
| 317 | .marginBtn { | ||
| 318 | margin: 5px | ||
| 305 | } | 319 | } |
| 306 | </style> | 320 | </style> | ... | ... |
-
Please register or sign in to post a comment