38 lines
569 B
Vue
38 lines
569 B
Vue
![]() |
<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>
|