MrShi
2025-01-15 d2057f9fd66a382e615b449d1e8b6990c34a0599
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>