bike/page_user/word.vue

104 lines
2.1 KiB
Vue
Raw Permalink Normal View History

2024-06-23 17:17:51 +08:00
<template>
<view class="page">
2024-07-02 18:07:01 +08:00
<u-navbar :title="wordinfo.title" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
2024-06-23 17:17:51 +08:00
height='45'></u-navbar>
<view class="cont" v-html="content"></view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
info: {},
userinfo: {},
areaInfo: {},
content: '',
2024-07-02 18:07:01 +08:00
title: '',
wordinfo:{}
2024-06-23 17:17:51 +08:00
}
},
onLoad(options) {
2024-07-02 18:07:01 +08:00
if (options.id ) {
2024-06-23 17:17:51 +08:00
// 解码 title 和 content
2024-07-02 18:07:01 +08:00
let id =options.id
this.getword(id)
// this.content = this.replaceImgWithImage(this.content);
2024-07-01 18:04:59 +08:00
// this.insertPhoneNumberAndDate()
2024-07-02 18:07:01 +08:00
// console.log(this.content, 'this.contentthis.contentthis.contentthis.content');
2024-06-23 17:17:51 +08:00
}
},
methods: {
2024-07-02 18:07:01 +08:00
getword(id) {
this.$u.get(`/app/article/`+id).then((res) => {
if (res.code === 200) {
this.wordinfo=res.data
this.content = this.replaceImgWithImage(this.wordinfo.content);
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
}
});
},
2024-06-23 17:17:51 +08:00
getagree() {
let id = uni.getStorageSync('areaId');
this.$u.get(`/app/article/list?areaId=${id}&tag=agreement`).then((res) => {
if (res.code === 200) {
this.info = res.rows[0];
2024-07-01 18:04:59 +08:00
this.content = this.replaceImgWithImage(this.info.content);
2024-06-23 17:17:51 +08:00
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
}
});
},
2024-07-01 18:04:59 +08:00
replaceImgWithImage(content) {
2024-06-23 17:17:51 +08:00
// 替换所有的&nbsp;为 \u00A0
2024-07-01 18:04:59 +08:00
content = content.replace(/&nbsp;/g, '\u00A0');
// 替换 <img> 标签的宽度和高度样式
content = content.replace(/<img([^>]*)>/g, (match, group1) => {
// 查找并移除可能存在的尾部斜杠
let cleanedGroup = group1.replace(/\s*\/$/, '');
2024-07-01 20:57:18 +08:00
return `<img style="width: 85vw ; height: auto;" ${cleanedGroup} />`;
2024-07-01 18:04:59 +08:00
});
return content;
2024-06-23 17:17:51 +08:00
}
}
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.page {
width: 750rpx;
2024-07-02 18:07:01 +08:00
padding-bottom: 100rpx;
2024-06-23 17:17:51 +08:00
.cont {
2024-07-01 20:57:18 +08:00
margin-top: 34rpx ;
2024-06-23 17:17:51 +08:00
margin: 0 auto;
width: 634rpx;
}
}
</style>