|
@@ -58,20 +58,30 @@
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+ <cDialog :dialog="dialog" @handleClose="toClose">
|
|
|
|
+ <template v-slot:info>
|
|
|
|
+ <el-col :span="24" class="dialog_one" v-if="dialog.type == '1'">
|
|
|
|
+ <cForm :span="24" :fields="fields" :form="form" :rules="rules" @save="toSave" submitText="提交登录"> </cForm>
|
|
|
|
+ </el-col>
|
|
|
|
+ </template>
|
|
|
|
+ </cDialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
<script setup lang="ts">
|
|
// 基础
|
|
// 基础
|
|
import type { Ref } from 'vue';
|
|
import type { Ref } from 'vue';
|
|
-// reactive,
|
|
|
|
-import { onMounted, ref } from 'vue';
|
|
|
|
|
|
+import { onMounted, ref, reactive } from 'vue';
|
|
|
|
+import type { FormRules } from 'element-plus';
|
|
|
|
+import { ElMessage } from 'element-plus';
|
|
// 接口
|
|
// 接口
|
|
import { TrainStore } from '@common/src/stores/allAdmin/train';
|
|
import { TrainStore } from '@common/src/stores/allAdmin/train';
|
|
import { ChannelStore } from '@common/src/stores/allAdmin/channel';
|
|
import { ChannelStore } from '@common/src/stores/allAdmin/channel';
|
|
|
|
+import { TokenStore } from '@common/src/stores/user/token'; // 解析
|
|
import type { IQueryResult } from '@/util/types.util';
|
|
import type { IQueryResult } from '@/util/types.util';
|
|
const channel = ChannelStore();
|
|
const channel = ChannelStore();
|
|
const train = TrainStore();
|
|
const train = TrainStore();
|
|
|
|
+const tokenAxiso = TokenStore();
|
|
// 加载中
|
|
// 加载中
|
|
const loading: Ref<any> = ref(false);
|
|
const loading: Ref<any> = ref(false);
|
|
const activeNames: Ref<any> = ref(['1', '2']);
|
|
const activeNames: Ref<any> = ref(['1', '2']);
|
|
@@ -79,6 +89,19 @@ const science: Ref<any> = ref([]); // 科技频道
|
|
const trainLiat: Ref<any> = ref([]); // 培训问诊
|
|
const trainLiat: Ref<any> = ref([]); // 培训问诊
|
|
const src: Ref<any> = ref('/src/assets/channel-1.jpg');
|
|
const src: Ref<any> = ref('/src/assets/channel-1.jpg');
|
|
const url: Ref<any> = ref('/src/assets/channel-3.jpg');
|
|
const url: Ref<any> = ref('/src/assets/channel-3.jpg');
|
|
|
|
+
|
|
|
|
+// 弹框
|
|
|
|
+const dialog: Ref<any> = ref({ type: '1', show: false, title: '信息管理' });
|
|
|
|
+let form: Ref<any> = ref({});
|
|
|
|
+// 表单
|
|
|
|
+let fields: Ref<any[]> = ref([
|
|
|
|
+ { label: '房间号', model: 'room_id', options: { disabled: true } },
|
|
|
|
+ { label: '密码', model: 'password', type: 'password' }
|
|
|
|
+]);
|
|
|
|
+const rules = reactive<FormRules>({
|
|
|
|
+ password: [{ required: true, message: '请输入账号密码', trigger: 'blur' }]
|
|
|
|
+});
|
|
|
|
+
|
|
// 请求
|
|
// 请求
|
|
onMounted(async () => {
|
|
onMounted(async () => {
|
|
loading.value = true;
|
|
loading.value = true;
|
|
@@ -103,8 +126,41 @@ const search = async () => {
|
|
}
|
|
}
|
|
};
|
|
};
|
|
const toLogin = (e, value) => {
|
|
const toLogin = (e, value) => {
|
|
- console.log(value);
|
|
|
|
- console.log(e);
|
|
|
|
|
|
+ let object: any = { room_id: e.room_id, type: value };
|
|
|
|
+ form.value = object;
|
|
|
|
+ dialog.value = { title: '展会登录', show: true, type: '1' };
|
|
|
|
+};
|
|
|
|
+// 提交登录
|
|
|
|
+const toSave = async (data) => {
|
|
|
|
+ let res: IQueryResult;
|
|
|
|
+ let type = data.type;
|
|
|
|
+ delete data.type;
|
|
|
|
+ if (type == '1') res = await channel.login(data);
|
|
|
|
+ else if (type == '2') res = await train.login(data);
|
|
|
|
+ if (res.errcode == '0') {
|
|
|
|
+ ElMessage({ message: '登录成功', type: 'success' });
|
|
|
|
+ localStorage.setItem('token', `${res.data}`);
|
|
|
|
+ // 解析token跳转页面
|
|
|
|
+ tokenView();
|
|
|
|
+ } else {
|
|
|
|
+ ElMessage({ message: `${res.errmsg}`, type: 'error' });
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+const tokenView = async () => {
|
|
|
|
+ let res: IQueryResult = await tokenAxiso.tokenInfo();
|
|
|
|
+ if (res.errcode == '0') {
|
|
|
|
+ // let user = res.data as any;
|
|
|
|
+ let env = import.meta.env.VITE_APP_ENV;
|
|
|
|
+ let path = '';
|
|
|
|
+ if (env == 'development') path = 'http://localhost:8004/zkzxlive';
|
|
|
|
+ else path = '/zkzxlive';
|
|
|
|
+ window.open(path);
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+// 弹框关闭
|
|
|
|
+const toClose = () => {
|
|
|
|
+ form.value = {};
|
|
|
|
+ dialog.value = { title: '展会登录', show: false, type: '1' };
|
|
};
|
|
};
|
|
const toJump = (e) => {
|
|
const toJump = (e) => {
|
|
console.log(e);
|
|
console.log(e);
|