From d2057f9fd66a382e615b449d1e8b6990c34a0599 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 15 一月 2025 09:18:22 +0800
Subject: [PATCH] 对接口
---
admin/src/views/finance/collectionSettings.vue | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/admin/src/views/finance/collectionSettings.vue b/admin/src/views/finance/collectionSettings.vue
index 6e428e0..42b37e6 100644
--- a/admin/src/views/finance/collectionSettings.vue
+++ b/admin/src/views/finance/collectionSettings.vue
@@ -25,6 +25,7 @@
<script>
import templateKeywords from './components/templateKeywords'
+ import { getCallTemp } from '@/api/ywTempConfig'
export default {
name: 'collectionSettings',
data() {
@@ -34,7 +35,18 @@
}
}
},
- components: { templateKeywords }
+ components: { templateKeywords },
+ created () {
+ this.getCallTempVal()
+ },
+ methods: {
+ getCallTempVal() {
+ getCallTemp({})
+ .then(res => {
+ console.log(res)
+ })
+ }
+ }
}
</script>
--
Gitblit v1.9.3