BUG 30788

This commit is contained in:
aixianling
2022-08-09 11:25:37 +08:00
parent 27bad639cd
commit 1682639335
2 changed files with 22 additions and 31 deletions

View File

@@ -207,10 +207,6 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
uni-page-body {
height: 100%;
}
::v-deep .content { ::v-deep .content {
padding: 0 !important; padding: 0 !important;
} }
@@ -248,13 +244,10 @@ uni-page-body {
} }
} }
.iconfont-iconMore {
// margin-top: 8px;
}
.AppServicePublic { .AppServicePublic {
height: 100%; height: 100%;
.header-top { .header-top {
display: flex; display: flex;
background: #fff; background: #fff;

View File

@@ -14,13 +14,10 @@
</span> </span>
</div> </div>
</div> </div>
<div class="header-middle"> <div class="header-middle">
<div class="contsnts"> <div class="contsnts">
<u-parse :html="data.content"></u-parse> <u-parse :html="data.content"></u-parse>
</div> </div>
</div> </div>
<!-- <div class="img-list" v-if="data.files && data.files.length && data.contentType != 1"> <!-- <div class="img-list" v-if="data.files && data.files.length && data.contentType != 1">
<div class="title">图片</div> <div class="title">图片</div>
@@ -35,8 +32,6 @@
<script> <script>
export default { export default {
name: 'Detail', name: 'Detail',
components: {},
props: {},
data() { data() {
return { return {
data: {}, data: {},
@@ -45,8 +40,6 @@ export default {
selectList: [] selectList: []
} }
}, },
computed: {},
watch: {},
onLoad(o) { onLoad(o) {
this.id = o.id this.id = o.id
this.listName = o.listName this.listName = o.listName
@@ -55,8 +48,6 @@ export default {
onShow() { onShow() {
document.title = this.listName document.title = this.listName
}, },
mounted() {},
methods: { methods: {
previewImage(images, img) { previewImage(images, img) {
uni.previewImage({ uni.previewImage({
@@ -86,15 +77,14 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
uni-page-body {
height: 100%;
}
.Detail { .Detail {
height: 100%; height: 100%;
padding: 0 32px; padding: 0 32px;
background: #fff; background: #fff;
.header-top { .header-top {
padding: 40px 0 32px 0; padding: 40px 0 32px 0;
.titles { .titles {
font-size: 48px; font-size: 48px;
font-weight: 600; font-weight: 600;
@@ -110,6 +100,7 @@ uni-page-body {
margin-top: 16px; margin-top: 16px;
font-size: 30px; font-size: 30px;
color: #999999; color: #999999;
.to-left { .to-left {
margin-left: 32px; margin-left: 32px;
} }
@@ -118,11 +109,15 @@ uni-page-body {
.header-middle { .header-middle {
padding: 64px 0 48px 0; padding: 64px 0 48px 0;
background: inherit;
.contsnts { .contsnts {
font-size: 36px; font-size: 36px;
line-height: 1.5; line-height: 1.5;
word-break: break-all; word-break: break-all;
background: inherit;
} }
img { img {
margin-top: 30px; margin-top: 30px;
width: 686px; width: 686px;
@@ -136,6 +131,7 @@ uni-page-body {
height: 204px; height: 204px;
margin: 0 8px 8px 0; margin: 0 8px 8px 0;
} }
.title { .title {
width: 100%; width: 100%;
line-height: 112px; line-height: 112px;
@@ -181,12 +177,14 @@ uni-page-body {
.right { .right {
font-size: 28px; font-size: 28px;
color: #999; color: #999;
img { img {
width: 32px; width: 32px;
height: 32px; height: 32px;
vertical-align: middle; vertical-align: middle;
margin-right: 8px; margin-right: 8px;
} }
.font { .font {
color: #4181ff; color: #4181ff;
} }