purchase-let/pageQuota/aboutUs/index.vue

25 lines
542 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view style="padding: 20rpx;" v-html="datas">
</view>
</template>
<script setup>
import {
ref
} from "vue"
import {
aboutUsApi
} from "@/api/quotation.js"
const datas = ref('<p>四川里海科技有限公司成立于2019年位于四川省泸州市是一家以从事互联网和相关服务为主的企业。企业注册资本1000万人民币实缴资本826万人民币。<\/p>')
const getDatas = () => {
aboutUsApi().then(res => {
datas.value = res
})
}
// getDatas()
</script>
<style>
</style>