Merge commit 'ce68ae29' into dev
Showing
3 changed files
with
6 additions
and
6 deletions
| ... | @@ -56,7 +56,7 @@ const people = reactive({ | ... | @@ -56,7 +56,7 @@ const people = reactive({ |
| 56 | <el-input | 56 | <el-input |
| 57 | v-model="people.form.name" | 57 | v-model="people.form.name" |
| 58 | style="width: 570px" | 58 | style="width: 570px" |
| 59 | :placeholder="language == 0 ? '请输入姓名' : 'Nama'" | 59 | :placeholder="language == 0 ? '请输入姓名' : 'Name'" |
| 60 | /> | 60 | /> |
| 61 | </div> | 61 | </div> |
| 62 | <div> | 62 | <div> |
| ... | @@ -79,7 +79,7 @@ const people = reactive({ | ... | @@ -79,7 +79,7 @@ const people = reactive({ |
| 79 | <el-input | 79 | <el-input |
| 80 | v-model="people.form.idCard" | 80 | v-model="people.form.idCard" |
| 81 | style="width: 570px" | 81 | style="width: 570px" |
| 82 | :placeholder="language == 0 ? '请输入身份证号' : 'ID Numbe'" | 82 | :placeholder="language == 0 ? '请输入身份证号' : 'ID Number'" |
| 83 | /> | 83 | /> |
| 84 | </div> | 84 | </div> |
| 85 | </div> | 85 | </div> | ... | ... |
| ... | @@ -265,16 +265,16 @@ detail.fetchData(); | ... | @@ -265,16 +265,16 @@ detail.fetchData(); |
| 265 | </div> | 265 | </div> |
| 266 | <div class="line"></div> | 266 | <div class="line"></div> |
| 267 | <div class="tr"> | 267 | <div class="tr"> |
| 268 | <div style="width: 30%" class="td">{{ detail.data?.name }}</div> | 268 | <div style="width: 33%" class="td">{{ detail.data?.name }}</div> |
| 269 | <div style="width: 25%" class="td">{{ detail.data?.placeName }}</div> | 269 | <div style="width: 25%" class="td">{{ detail.data?.placeName }}</div> |
| 270 | <div style="width: 20%" class="td"> | 270 | <div style="width: 20%" class="td"> |
| 271 | <span>{{ language == 0 ? "¥" : "€" }}</span> | 271 | <span>{{ language == 0 ? "¥" : "€" }}</span> |
| 272 | {{ detail.data?.singlePrice }} | 272 | {{ detail.data?.singlePrice }} |
| 273 | </div> | 273 | </div> |
| 274 | <div style="width: 12%" class="td"> | 274 | <div style="width: 10%" class="td"> |
| 275 | x{{ detail.data?.seatList?.length }} | 275 | x{{ detail.data?.seatList?.length }} |
| 276 | </div> | 276 | </div> |
| 277 | <div style="width: 13%; text-align: right" class="td"> | 277 | <div style="width: 12%; text-align: right" class="td"> |
| 278 | <span>{{ language == 0 ? "¥" : "€" }}</span> | 278 | <span>{{ language == 0 ? "¥" : "€" }}</span> |
| 279 | {{ detail.data?.payAmount }} | 279 | {{ detail.data?.payAmount }} |
| 280 | </div> | 280 | </div> | ... | ... |
| 1 | <script setup> | 1 | <script setup> |
| 2 | import dayjs from "dayjs"; | 2 | import { dayjs } from 'element-plus' |
| 3 | import useUserStore from "@/store/modules/user"; | 3 | import useUserStore from "@/store/modules/user"; |
| 4 | import { setToken, getToken } from "./utils/local-store.js"; | 4 | import { setToken, getToken } from "./utils/local-store.js"; |
| 5 | import { md5 } from "md5js"; | 5 | import { md5 } from "md5js"; | ... | ... |
-
Please register or sign in to post a comment