🎨 添加图库和客服插件(有问题-待修改)

This commit is contained in:
2025-05-14 16:13:20 +08:00
parent e6ceacfae1
commit 0ed234639c
15 changed files with 3332 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<template>
<div class="customerservice">
在此处书写页面代码
</div>
</template>
<script setup>
import { ref } from 'vue'
import { routerName } from '@/plugin/customerservice/api/api.js'
const data = ref({})
defineOptions({
name: 'CustomerService'
})
const useApi = async() =>{
const res = await routerName(data.value)
if(res.code === 0){
console.log(res.data)
}
}
</script>
<style lang="scss" scoped>
.customerservice {
}
</style>