2022年5月29日 从svn移到git

This commit is contained in:
daihh
2022-05-29 18:59:24 +08:00
parent 9580ff8c9b
commit faa7afb65f
897 changed files with 171836 additions and 0 deletions

200
pages/plus/index.vue Normal file
View File

@@ -0,0 +1,200 @@
<template>
<view class="content" :class="{'active':active}">
<view style="padding: 60rpx 60rpx 0 30rpx;color: #8a8a8a;overflow: auto;">
<view style="text-align: center;font-size: 50upx;padding-bottom:50rpx ;">京东方大学堂内容发布须知</view>
<view style="line-height: 60upx;white-space:pre-line;">
<!-- <u-parse :content="context"></u-parse> -->
<text v-html="context"></text>
<!-- <view style="display: flex;margin-bottom: 10rpx;">
<view style="margin-right: 10rpx;">
1.
</view>
<view>
文章内容要求导向正确内容健康向上观点鲜明结构完整语句流畅
</view>
</view>
<view style="display: flex;margin-bottom: 10rpx;">
<view style="margin-right: 10rpx;">
2.
</view>
<view>
所发布内容应为本人原创或在不对他人构成侵权的基础上进行转载且注明原作者及出处
</view>
</view>
<view style="display: flex;margin-bottom: 10rpx;"> -->
<!-- <view style="margin-right: 10rpx;">
3.
</view>
<view>
在尊重作者观点和论述的完整性的基础上管理员保留对内容的编辑权和删改权若不同意删改请在来信中特别注明
</view>
</view> -->
</view>
<view style="height: 300px;"></view>
</view>
<view class="tabbar-box-wrap">
<view class="tabbar-box">
<view class="tabbar-box-item" @tap="goToPage('addArticle')">
<!-- <image class="box-image" src="../../static/images/release.png" mode="aspectFit"></image> -->
<image class="box-image" src="../../static/images/icon/article2.png" mode="aspectFit"></image>
<!-- <u-icon style="flex-direction: column;" name="file-text" color="#2979ff" size="30"></u-icon> -->
<view class="explain">写文章</view>
</view>
<view class="tabbar-box-item" @click="goToPage('addQuestion')">
<!-- <image class="box-image" src="../../static/images/video.png" mode="aspectFit"></image> -->
<image class="box-image" src="../../static/images/icon/question2.png" mode="aspectFit"></image>
<!-- <u-icon style="flex-direction: column;" name="order" color="#2979ff" size="30"></u-icon> -->
<view class="explain">提问题</view>
</view>
<view class="tabbar-box-item" @click="goToPage('feedback')">
<!-- <image class="box-image" src="../../static/images/qa.png" mode="aspectFit"></image> -->
<image class="box-image" src="../../static/images/icon/disagree2.png" mode="aspectFit"></image>
<!-- <u-icon style="flex-direction: column;" name="error-circle" color="#2979ff" size="30"></u-icon> -->
<view class="explain">提意见</view>
</view>
</view>
</view>
<view style="height: 100px;"></view>
</view>
</template>
<script>
import apiProtocol from '@/api/modules/protocol.js';
export default {
data() {
return {
active: false,
context:'',
};
},
onLoad() {
this.getprotocol();
},
onShow() {
// setTimeout(() => {
this.active = true;
// }, 500);
},
onHide() {
this.active = false;
},
methods: {
getprotocol() {
apiProtocol.query(1).then(res => {
if (res.status == 200) {
this.context = res.result.content;
}
})
},
goToPage(url) {
if (!url) return;
uni.navigateTo({
url
});
}
}
};
</script>
<style lang="scss" scoped>
.content {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
/* #ifdef H5 */
// height: calc(100vh - var(--window-bottom) - var(--window-top));
/* #endif */
/* #ifndef H5 */
height: 100vh;
/* #endif */
transition: opacity 0.3s;
background: #ffffff;
opacity: 0;
&.active {
opacity: 1;
}
.logo {
position: relative;
margin-top: -400upx;
width: 200upx;
height: 200upx;
// z-index: -1;
opacity: 0;
transition: opacity 0.3s;
&.active {
opacity: 1;
}
}
}
.tabbar-box-wrap {
position: fixed;
width: 100%;
padding: 50upx;
box-sizing: border-box;
bottom: 70upx;
left: 0;
.tabbar-box {
position: relative;
display: flex;
width: 100%;
background: #fff;
border-radius: 20upx;
padding: 15upx 20upx;
box-sizing: border-box;
z-index: 2;
box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.1);
&:after {
content: '';
position: absolute;
bottom: -16upx;
left: 0;
right: 0;
margin: auto;
width: 50upx;
height: 50upx;
transform: rotate(45deg);
background: #fff;
z-index: 1;
box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.1);
border-radius: 2px;
}
&:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ffffff;
border-radius: 20upx;
z-index: 2;
}
.tabbar-box-item {
// position: relative;
width: 100%;
// color: #007AFF;
z-index: 3;
margin: 10upx;
text-align: center;
font-size: $uni-font-size-base;
.box-image {
width: 30px;
height: 30px;
}
}
}
}
</style>