automated_uniapp/pages/user/doc.vue

38 lines
569 B
Vue
Raw Normal View History

2025-01-09 16:16:11 +08:00
<template>
<view class="doc mp-html">
<mp-html :content="content"></mp-html>
</view>
</template>
<script setup lang="ts">
import { onReady } from "@dcloudio/uni-app";
import { ref } from "vue";
import { useCool } from "/@/cool";
const { router, service } = useCool();
const content = ref("");
onReady(() => {
const { title, key } = router.query;
uni.setNavigationBarTitle({
title,
});
service.base.comm
.param({
key,
})
.then((res) => {
content.value = res;
});
});
</script>
<style lang="scss" scoped>
.doc {
padding: 20rpx;
}
</style>