123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <template>
- <div id="createdRoom" @click.stop>
- <div class="created_dialog">
- <div class="blurBox"></div>
- <div class="content">
- <div class="dialog_title" v-if="role == 'leader'">{{ $t("common.createTour") }}</div>
- <div class="dialog_title" v-else>{{ $t("common.joinTour") }}</div>
- <div class="user_name">
- <input
- class="input_name"
- maxlength="20"
- v-model.trim="userName"
- type="text"
- :placeholder="role == 'leader' ? $t('common.leadernickName') : $t('common.inputnickName')"
- />
- <span class="limitNum">{{ userName.length }}/20</span>
- </div>
- <!-- <div v-if="role!='customer'" class="mode_btn">
- <div @click="chooseMode(i.mode)" v-for="i,index in modeList" :key="index" :class="{ active: mode==i.mode }" class="mode">{{i.title}}</div>
- </div> -->
- <div class="created_btn">
- <div class="created_cancel" @click="closeCreated">{{ $t("common.cancel") }}</div>
- <div class="created_confirm" @click="createdConfirm">{{ $t("common.confirm") }}</div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { useI18n, getLocale } from "@/i18n";
- import { ref } from "vue";
- const { t } = useI18n({ useScope: "global" });
- const userName = ref('')
- </script>
- <script>
- import { Dialog } from "@/global_components/";
- import browser from "@/utils/browser";
- import { useStore } from "vuex";
- export default {
- data() {
- return {
- role: browser.getURLParam("role") || "leader",
- mode: browser.getURLParam("mode") || 2,
- modeList: [
- {
- mode: 1,
- title: "1V1",
- },
- {
- mode: 2,
- title: "多人模式",
- },
- ],
- store: useStore(),
- roomId: browser.getURLParam("roomId"),
- $t: this.t,
- };
- },
- mounted() {},
- components: {},
- // created: {},
- // mounted:{},
- methods: {
- getUrl(href, queryArr) {
- queryArr.forEach((item) => {
- if (!browser.hasURLParam(item.key)) {
- let ttt = href.split("index.html?");
- href = `${ttt[0]}index.html?${item.key}=${item.val}&${ttt[1]}`;
- } else {
- href = browser.replaceQueryString(href, item.key, item.val);
- }
- });
- return href;
- },
- chooseMode(mode) {
- this.mode = mode;
- },
- closeCreated() {
- this.$emit("closeCreated");
- },
- createdConfirm() {
- console.log(this.userName);
- if (this.userName == "") {
- Dialog.toast({ content: this.$t("common.inputnickName"), type: "error" });
- return;
- }
- let name = encodeURIComponent(this.userName);
- let hh = window.location.href;
- if (this.role == "customer") {
- let tempUrl = this.getUrl(hh, [
- {
- key: "mode",
- val: this.mode,
- },
- {
- key: "name",
- val: name,
- },
- {
- key: "role",
- val: "customer",
- },
- {
- key: "roomId",
- val: this.roomId,
- },
- ]);
- // history.replaceState(null, null, hh + "&mode=" + this.mode + "&name=" + name + "&role=customer&roomId=" + this.roomId);
- history.replaceState(null, null, tempUrl);
- } else {
- let tempUrl = this.getUrl(hh, [
- {
- key: "mode",
- val: this.mode,
- },
- {
- key: "name",
- val: name,
- },
- {
- key: "role",
- val: "leader",
- },
- ]);
- // history.replaceState(null, null,hh + "&mode=" + this.mode + "&name=" + name + "&role=leader");
- history.replaceState(null, null, tempUrl);
- console.log(tempUrl);
- }
- this.store.commit("rtc/setRole", this.role);
- this.$nextTick(() => {
- this.$emit("createdConfirm");
- });
- },
- },
- };
- </script>
- <style scoped lang="scss">
- #createdRoom {
- width: 100vw;
- height: 100%;
- // background: rgba(0, 0, 0, 0.5);
- background: transparent;
- position: fixed;
- left: 0;
- top: 0;
- z-index: 1000000;
- // pointer-events: none;
- .created_dialog {
- width: 8.64rem;
- min-height: 5rem;
- // background: #ffffff;
- pointer-events: auto;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- // overflow: hidden;
- border: 1px solid rgba(255, 255, 255, 0.1);
- border-radius: 4px;
- .blurBox {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.7);
- filter: blur(1px);
- }
- .content {
- position: relative;
- z-index: 2;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .dialog_title {
- font-size: 0.39rem;
- width: 100%;
- height: 1.39rem;
- padding: 0 0.56rem;
- box-sizing: border-box;
- font-size: 0.39rem;
- color: #fff;
- line-height: 1.39rem;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- border-bottom-color: rgba(255, 255, 255, 0.1);
- }
- .user_name {
- width: 100%;
- height: 1.11rem;
- padding: 0 0.56rem;
- box-sizing: border-box;
- font-size: 0.39rem;
- line-height: 1.11rem;
- margin: 0.56rem 0;
- position: relative;
- .limitNum {
- position: absolute;
- right: 0.64rem;
- top: 50%;
- transform: translateY(-50%);
- font-size: 0.33rem;
- color: #b9bdbc;
- }
- .input_name {
- font-size: 0.39rem;
- width: 100%;
- height: 100%;
- line-height: 1.11rem;
- padding: 0 1.066667rem 0 0.28rem;
- box-sizing: border-box;
- background: rgba(0, 0, 0, 0.5);
- border-radius: 4px;
- color: #fff;
- border: none;
- outline: none;
- &::placeholder {
- color: rgba(255, 255, 255, 0.3);
- }
- }
- }
- .mode_btn {
- width: 100%;
- height: 1.11rem;
- padding: 0 0.56rem;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 0.56rem;
- > div.mode {
- width: 3.61rem;
- height: 100%;
- border-radius: 0.65rem;
- border: 0.03rem solid #fff;
- color: #fff;
- font-size: 0.39rem;
- line-height: 1.11rem;
- text-align: center;
- box-sizing: border-box;
- &.active {
- color: #ed5d18;
- border: 0.03rem solid #ed5d18;
- }
- }
- }
- .created_btn {
- width: 100%;
- height: 1.36rem;
- border-top-style: solid;
- border-top-width: 1px;
- border-top-color: rgba(255, 255, 255, 0.1);
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 0.39rem;
- > div {
- width: 50%;
- height: 1.36rem;
- text-align: center;
- line-height: 1.36rem;
- font-size: 0.39rem;
- box-sizing: border-box;
- &.created_cancel {
- color: #fff;
- border-right-style: solid;
- border-right-width: 1px;
- border-right-color: rgba(255, 255, 255, 0.1);
- }
- &.created_confirm {
- color: #ed5d18;
- }
- }
- }
- }
- }
- </style>
|