12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <el-dialog
- v-model="props.dialogTableVisible"
- @close="emits('close')"
- :lock-scroll="false"
- :show-close="false"
- width="25%"
- >
- <div class="contact">
- <p class="title">产品专家</p>
- <p class="add">一对一高级产品专家服务,快速了解系统,获取解决方案</p>
- <img class="service-img" :src="configData.service_qr_code" alt="" />
- <p class="add">手机扫码添加微信</p>
- <p class="cha" @click="emits('close')">×</p>
- </div>
- </el-dialog>
- </template>
- <script setup lang="ts">
- import { ref, onMounted } from "vue";
- import { config } from "../../../api/config";
- const configData: any = ref({});
- const getInfo = () => {
- config({ module: "basic" }).then((res) => {
- configData.value = res.data;
- });
- };
- onMounted(() => {
- getInfo();
- });
- const props = defineProps({
- dialogTableVisible: {
- type: Boolean,
- default: false,
- },
- });
- const emits = defineEmits(["close"]);
- </script>
- <style scoped lang="less">
- .contact {
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- .title {
- font-size: 20px;
- color: #333;
- font-weight: 600;
- margin-bottom: 12px;
- }
- .add {
- font-size: 14px;
- color: #333;
- }
- .service-img {
- width: 300px;
- height: 300px;
- margin-top: 22px;
- margin-bottom: 22px;
- }
- .cha {
- font-size: 30px;
- position: absolute;
- bottom: -60px;
- color: #fff;
- border-radius: 50%;
- border: 2px solid #fff;
- width: 24px;
- height: 24px;
- text-align: center;
- line-height: 20px;
- cursor: pointer;
- }
- }
- </style>
|