| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705 |
- <template>
- <view class="container">
- <!-- 页面标题区域 -->
- <view v-if="!headerType" class="header" :style="{ height: customBarH * 2 + 'rpx', paddingTop: statusBarH * 2 + 'rpx' }">
- <img src="../../static/index/left2.png" :style="{ paddingTop: statusBarH * 2 + 'rpx' }" @click="handleBack" />
- <view class="header_text">发推文</view>
- </view>
- <view v-else class="header2" :style="{ height: customBarH * 2 + 'rpx', paddingTop: statusBarH * 2 + 'rpx' }">
- <img src="../../static/index/left2.png" :style="{ paddingTop: statusBarH * 2 + 'rpx' }" @click="handleBack" />
- <view class="header_text">发推文</view>
- </view>
- <!-- 图片视频上传展示区域 -->
- <view class="upload" :style="{ paddingTop: statusBarH * 2 + customBarH * 2 + 'rpx' }">
- <view v-if="subImgList.length < maxImgCount && !subVideo" class="upload_img" @click="handleImage">
- <img src="../../static/index/upload-img.png" />
- 添加图片
- </view>
- <view v-if="!subImgList.length && !subVideo" class="upload_video" @click="handleVideo">
- <img src="../../static/index/upload-video.png" />
- 添加视频
- </view>
- <!-- 图片展示区域 -->
- <view class="upload_imgBox" v-for="(item, index) in subImgList" :key="index">
- <img mode="aspectFill" :src="item" @click="handleLookImg(subImgList, index)" />
- <view class="icon" @click="handleDelete(index)">
- <img src="../../static/index/close2.png" />
- </view>
- </view>
- <!-- 视频展示区域 -->
- <view v-if="subVideo" class="upload_VideoBox">
- <video
- id="myVideo"
- :show-fullscreen-btn="false"
- :show-play-btn="false"
- :src="subVideo"
- @fullscreenchange="fullscreenchange"
- @click="handleClickVideo('myVideo')"
- ></video>
- <view class="icon" @click="handleDeleteVideo">
- <img src="../../static/index/close2.png" />
- </view>
- </view>
- </view>
- <!-- 标题输入区域 -->
- <view class="title">
- <input class="input" type="text" placeholder-style="color:#B3B3B3" placeholder="请输入标题" maxlength="30" v-model="titleValue" />
- </view>
- <!-- 推文内容输入区域 -->
- <view class="content">
- <textarea class="textarea" placeholder-style="color:#B3B3B3" maxlength="3000" placeholder="请分享你的故事吧~" v-model="contentValue"></textarea>
- <!-- 内容长度 -->
- <view class="textarea_length">{{ contentValue.length }}/3000</view>
- </view>
- <!-- 添加地点区域 -->
- <view class="add_place" @click="handleGoPage">
- <img class="img" src="../../static/index/send-address.png" />
- 添加地点
- <img class="img2" src="../../static/index/send-right.png" />
- </view>
- <!-- 关联民宿区域 -->
- <view class="and" v-if="andList.length">
- <img class="img" src="../../static/index/send-binding.png" />
- 关联乡村民宿
- </view>
- <!-- 关联民宿列表区域 -->
- <view class="and_list">
- <!-- 每一个民宿区域 -->
- <view class="and_box" :class="{ active: item.isCheck }" v-for="item in andList" :key="item.id" @click="handleChange(item)">{{ item.name }}</view>
- </view>
- <!-- 发布按钮区域 -->
- <view class="sub_btn" @click="handleClickSub">发布</view>
- <!-- 状态弹窗区域 -->
- <uni-popup ref="popup" :is-mask-click="false" type="center">
- <view class="popup_body">
- <img src="../../static/index/success.png" />
- <view class="msg">发布成功</view>
- <view class="btn" @click="handleClickLook">查看推文</view>
- </view>
- </uni-popup>
- <!-- 用于图片压缩的canvas画布 -->
- <canvas
- :style="{
- width: cw + 'px',
- height: cw + 'px',
- position: 'absolute',
- zIndex: -1,
- left: '-10000rpx',
- top: '-10000rpx'
- }"
- canvas-id="zipCanvas3"
- ></canvas>
- <!--画布结束-->
- </view>
- </template>
- <script>
- // 图片压缩方法
- import getLessLimitSizeImage from '@/util/imageCompress.js'
- import { cos } from '@/util/cos.js'
- export default {
- data() {
- return {
- // 顶部页面标题栏显示隐藏控制
- headerType: false,
- // 状态栏高度
- statusBarH: 0,
- // 胶囊按钮栏高度
- customBarH: 0,
- // 标题数据
- titleValue: '',
- // 推文内容区域
- contentValue: '',
- // activeIndex: null,
- // 关联民宿列表
- andList: [],
- // 上传的图片数据
- subImgList: [],
- // 最大上传图片张图
- maxImgCount: 9,
- // 上传的视频数据
- subVideo: '',
- // video 上下文 videoContext 对象
- videoContext: null,
- // 是否是全屏状态
- isFullScreen: false,
- townId: null
- }
- },
- created() {
- // 获取系统信息
- uni.getSystemInfo({
- success: (e) => {
- // 获取状态栏高度
- this.statusBarH = e.statusBarHeight + 10
- // // 获取菜单按钮栏高度
- let custom = uni.getMenuButtonBoundingClientRect()
- this.customBarH = custom.height + 10
- }
- })
- },
- onLoad() {
- uni.$on('add', this.add)
- },
- onPageScroll(e) {
- if (e.scrollTop > 50) {
- this.headerType = true
- } else {
- this.headerType = false
- }
- },
- methods: {
- // 切换关联民宿回调
- handleChange(item) {
- item.isCheck = !item.isCheck
- },
- // 点击添加图片回调
- handleImage() {
- uni.chooseMedia({
- count: this.maxImgCount - this.subImgList.length,
- mediaType: ['image'],
- sizeType: ['compressed'],
- success: (res) => {
- res.tempFiles.forEach((ele) => {
- //这里的id和页面中写的html代码的canvas的id要一致
- let canvasId = 'zipCanvas3'
- //原图的路径
- let imagePath = ele.tempFilePath
- //大小限制1024kb
- let limitSize = 1024 * 3
- //初始绘画区域是画布自身的宽度也就是屏幕宽度
- let drawWidth = uni.getSystemInfoSync().windowWidth
- // 图片过大压缩
- getLessLimitSizeImage(canvasId, imagePath, limitSize, drawWidth, (resPath) => {
- this.handleUploadMini(resPath, 1)
- })
- })
- }
- })
- },
- // 点击添加视频回调
- handleVideo() {
- uni.chooseMedia({
- count: 1,
- mediaType: ['video'],
- success: (res) => {
- res.tempFiles.forEach((ele) => {
- if (ele.size > 1024 * 1024 * 1024) {
- // 视频过大压缩
- uni.compressVideo({
- src: ele.tempFilePath,
- quality: 'low',
- success: (res) => {
- console.log('压缩后', res)
- this.handleUploadMini(res.tempFilePath, 2)
- },
- fail: (err) => {
- // console.log(err)
- uni.showToast(
- {
- title: '视频压缩失败',
- icon: 'none'
- },
- 2000
- )
- }
- })
- } else {
- this.handleUploadMini(ele.tempFilePath, 2)
- }
- })
- }
- })
- },
- // 上传请求
- handleUploadMini(ele, type) {
- // 开始上传
- uni.showLoading({
- title: '上传中',
- mask: true
- })
- let filePath = ele
- let Key = filePath.substr(filePath.lastIndexOf('/') + 1)
- cos.postObject(
- {
- Bucket: 'jinganminsu-1320402385',
- Region: 'ap-nanjing',
- Key: Key,
- FilePath: filePath,
- onProgress: (info) => {
- // console.log(info)
- }
- },
- (err, data) => {
- if (err) {
- console.log('上传失败', err)
- } else {
- // console.log('上传成功', data)
- uni.hideLoading()
- let imgUrl = 'https://' + data.Location
- if (type === 1) {
- this.subImgList.push(imgUrl)
- } else if (type === 2) {
- this.subVideo = imgUrl
- }
- }
- }
- )
- },
- // 删除图片回调
- handleDelete(index) {
- this.subImgList.splice(index, 1)
- },
- // 删除视频回调
- handleDeleteVideo() {
- this.subVideo = ''
- },
- // 进入全屏和退出全屏时触发的回调
- fullscreenchange(e) {
- this.isFullScreen = e.detail.fullScreen
- },
- // 点击视频控件时触发的回调
- handleClickVideo(id) {
- this.videoContext = uni.createVideoContext(id)
- if (this.isFullScreen) {
- this.videoContext.stop()
- this.videoContext.exitFullScreen()
- } else {
- this.videoContext.requestFullScreen()
- this.videoContext.play()
- }
- },
- // 点击添加地点回调
- handleGoPage() {
- this.andList = this.andList.filter((ele) => ele.isCheck)
- const list = JSON.stringify(this.andList)
- uni.navigateTo({
- url: `/pagesSub/addPlace/addPlace?list=${list}&townId=${this.townId}`
- })
- },
- // 全局自定义事件
- add(e) {
- this.andList = e.list
- this.townId = e.townId
- },
- // 点击发布按钮回调
- async handleClickSub() {
- if (!this.subImgList.length && !this.subVideo) {
- uni.showToast({
- title: '请上传图片或者视频',
- icon: 'none',
- mask: true
- })
- return
- }
- if (!this.titleValue) {
- uni.showToast({
- title: '请输入标题',
- icon: 'none',
- mask: true
- })
- return
- }
- if (!this.contentValue) {
- uni.showToast({
- title: '请分享你的故事吧~',
- icon: 'none',
- mask: true
- })
- return
- }
- if (!this.andList.length) {
- uni.showToast({
- title: '请添加地点关联相关乡村民宿',
- icon: 'none',
- mask: true
- })
- return
- }
- if (!this.andList.some((ele) => ele.isCheck)) {
- uni.showToast({
- title: '请关联至少一个乡村民宿',
- icon: 'none',
- mask: true
- })
- return
- }
- let temList = []
- this.andList.forEach((ele) => {
- if (ele.isCheck) {
- temList.push(ele.id)
- }
- })
- const res = await this.$myRequest({
- url: '/mhotel/articleinsertArticleTweet.action',
- method: 'post',
- data: {
- images: this.subImgList,
- video: this.subVideo,
- townId: this.townId,
- hotelIds: temList,
- title: this.titleValue,
- content: this.contentValue,
- createId: uni.getStorageSync('userInfo').id
- }
- })
- // console.log(res)
- if (res.code === 200) {
- this.$refs.popup.open()
- }
- },
- // 点击弹窗查看推文按钮回调
- handleClickLook() {
- this.$refs.popup.close()
- let userId = uni.getStorageSync('userInfo').id
- uni.redirectTo({
- url: `/pagesSub/myHome/myHome?userId=${userId}`
- })
- },
- // 点击图片回调
- handleLookImg(urls, current) {
- uni.previewImage({
- urls,
- current
- })
- },
- handleBack() {
- uni.showModal({
- content: '确认退出吗,已编辑的内容将不保存',
- cancelText: '退出',
- cancelColor: '#808080',
- confirmText: '继续发布',
- confirmColor: '#000000',
- success: (res) => {
- if (res.confirm) {
- } else if (res.cancel) {
- uni.navigateBack(1)
- }
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .container {
- padding-bottom: 80rpx;
- min-height: 100vh;
- background-color: #fff;
- .header {
- z-index: 1;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- display: flex;
- justify-content: center;
- // position: relative;
- background-color: #fff;
- img {
- position: absolute;
- top: 0;
- left: 0;
- width: 47rpx;
- height: 47rpx;
- }
- .header_text {
- font-size: 34rpx;
- }
- }
- .header2 {
- z-index: 1;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- display: flex;
- justify-content: center;
- background-color: #fff;
- img {
- position: absolute;
- top: 0;
- left: 0;
- width: 47rpx;
- height: 47rpx;
- }
- .header_text {
- font-size: 34rpx;
- }
- }
- .upload {
- margin-top: 30rpx;
- padding-bottom: 10rpx;
- display: flex;
- flex-wrap: wrap;
- .upload_img {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-left: 20rpx;
- width: 186rpx;
- height: 283rpx;
- color: #999999;
- font-size: 28rpx;
- border-radius: 8rpx;
- background-color: #e6e6e6;
- img {
- margin-top: 10rpx;
- width: 68rpx;
- height: 68rpx;
- }
- }
- .upload_video {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-left: 26rpx;
- width: 186rpx;
- height: 283rpx;
- color: #999999;
- font-size: 28rpx;
- border-radius: 8rpx;
- background-color: #e6e6e6;
- img {
- margin-top: 12rpx;
- width: 68rpx;
- height: 68rpx;
- }
- }
- .upload_imgBox {
- position: relative;
- margin-left: 20rpx;
- margin-bottom: 20rpx;
- width: 186rpx;
- height: 283rpx;
- img {
- width: 100%;
- height: 100%;
- }
- .icon {
- position: absolute;
- top: 0;
- right: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 30rpx;
- height: 30rpx;
- border-radius: 7rpx;
- background-color: rgba(000, 000, 000, 0.5);
- img {
- width: 30rpx;
- height: 30rpx;
- }
- }
- }
- .upload_VideoBox {
- position: relative;
- margin-left: 20rpx;
- width: 186rpx;
- height: 283rpx;
- video {
- width: 100%;
- height: 100%;
- }
- .icon {
- position: absolute;
- top: 0;
- right: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 30rpx;
- height: 30rpx;
- border-radius: 7rpx;
- background-color: rgba(000, 000, 000, 0.5);
- img {
- width: 30rpx;
- height: 30rpx;
- }
- }
- }
- }
- .title {
- margin: auto;
- width: 710rpx;
- height: 100rpx;
- border-bottom: 1rpx solid #e5e5e5;
- .input {
- box-sizing: border-box;
- padding-right: 20rpx;
- width: 100%;
- height: 100%;
- font-size: 32rpx;
- }
- }
- .content {
- margin: auto;
- width: 710rpx;
- height: 290rpx;
- font-size: 28rpx;
- border-bottom: 1rpx solid #e5e5e5;
- .textarea {
- margin-top: 25rpx;
- width: 100%;
- height: 240rpx;
- }
- .textarea_length {
- margin-top: 5rpx;
- text-align: end;
- }
- }
- .add_place {
- display: flex;
- align-items: center;
- margin: auto;
- width: 710rpx;
- height: 100rpx;
- font-size: 28rpx;
- border-bottom: 1rpx solid #e5e5e5;
- .img {
- margin-right: 10rpx;
- width: 55rpx;
- height: 55rpx;
- }
- .img2 {
- margin-left: auto;
- width: 40rpx;
- height: 40rpx;
- }
- }
- .and {
- display: flex;
- align-items: center;
- margin: auto;
- width: 710rpx;
- height: 88rpx;
- font-size: 28rpx;
- .img {
- margin-left: 10rpx;
- margin-right: 8rpx;
- width: 42rpx;
- height: 42rpx;
- }
- }
- .and_list {
- display: flex;
- flex-wrap: wrap;
- margin: auto;
- width: 710rpx;
- .and_box {
- margin-bottom: 20rpx;
- margin-right: 16rpx;
- padding: 0 44rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 55rpx;
- color: #999999;
- font-size: 24rpx;
- border-radius: 66rpx;
- background-color: #f2f2f2;
- }
- .active {
- color: #fff;
- background-color: #096562;
- }
- }
- .sub_btn {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 310rpx auto 0;
- width: 710rpx;
- height: 100rpx;
- color: #fff;
- font-size: 32rpx;
- border-radius: 64rpx;
- background-color: #096562;
- }
- .popup_body {
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- align-items: center;
- width: 481rpx;
- height: 404rpx;
- border-radius: 23rpx;
- background-color: #fff;
- img {
- width: 112rpx;
- height: 112rpx;
- }
- .msg {
- color: #0f194d;
- font-size: 28rpx;
- }
- .btn {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 396rpx;
- height: 76rpx;
- font-size: 26rpx;
- color: #fff;
- border-radius: 43rpx;
- background: linear-gradient(90deg, rgba(11, 193, 150, 1) 0%, rgba(9, 101, 98, 1) 100%);
- }
- }
- }
- </style>
|