From 89cd3efd5dc533e6c8129d7d86dc74e1adf3d84c Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期三, 20 八月 2025 14:00:25 +0800 Subject: [PATCH] 1.回款登记页面开发账联调 --- src/pages/common/textview/index.vue | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/src/pages/common/textview/index.vue b/src/pages/common/textview/index.vue new file mode 100644 index 0000000..e9b05fb --- /dev/null +++ b/src/pages/common/textview/index.vue @@ -0,0 +1,43 @@ +<template> + <view> + <uni-card class="view-title" :title="title"> + <text class="uni-body view-content">{{ content }}</text> + </uni-card> + </view> +</template> + +<script> + export default { + data() { + return { + title: '', + content: '' + } + }, + onLoad(options) { + this.title = options.title + this.content = options.content + uni.setNavigationBarTitle({ + title: options.title + }) + } + } +</script> + +<style scoped> + page { + background-color: #ffffff; + } + + .view-title { + font-weight: bold; + } + + .view-content { + font-size: 26rpx; + padding: 12px 5px 0; + color: #333; + line-height: 24px; + font-weight: normal; + } +</style> -- Gitblit v1.9.3