Files
lingji-work-fe/src/components/customer-service-modal.vue

13 lines
336 B
Vue
Raw Normal View History

<template>
<Modal title="扫描下面二维码联系客户" v-bind="$attrs">
<div class="text-center mt-16px mb-16px">
<img width="200" src="@/assets/customer-service.svg" alt="" />
</div>
</Modal>
</template>
<script setup lang="ts">
import Modal from '@/components/modal.vue';
</script>
<style lang="less">
</style>