123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <!-- 发布邻里圈 -->
- <template>
- <view class="">
- <view class="content">
- <view class="text">
- <textarea style="width: 100%;" :auto-height="true" placeholder="这一刻的想法" v-model="textarea"></textarea>
- </view>
- <view class="imgBox">
- <view class="upImg">
- <image :src="item" v-for="(item,index) in imgData" :key="index" style="width:208rpx;height: 208rpx;margin-right: 10rpx;margin-bottom: 10rpx;"
- v-show="imgData.length>0"></image>
- <image src="../../static/circle_image@2x.png" style="width:208rpx;height: 208rpx;margin-bottom: 10rpx;" @tap="chooseImg"></image>
- </view>
- <!-- <view style="width: 208rpx;height: 208rpx;" @tap="chooseImg">
- <image src="../../static/circle_image@2x.png" style="width: 100%;height: 100%;"></image>
- </view> -->
- </view>
- </view>
- <view class="btn" :class="{active:textarea}" @tap="push">发表</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- imgData: [], //图片数据
- textarea: '', //文本数据
- }
- },
- methods: {
- // 发表
- push() {
- if (this.textarea) {
- let img = ''
- // 判断是否上传图片
- if (this.imgData.length > 0) {
- img = this.imgData.join()
- } else {
- img = ''
- }
- this.http.httpRequest('/wxapplet/prop/comtycircle/add', 'post', {
- userId: uni.getStorageSync('userId'),
- content: this.textarea,
- photosUrlList: img,
- createBy: uni.getStorageSync('createBy'),
- comtyId:uni.getStorageSync('comtyId'),
- }, true).then((res) => {
- console.log(res)
- if (res.code == 0) {
- uni.showToast({
- 'icon':'success',
- title:'发表成功'
- })
- setTimeout(()=>{
- uni.switchTab({
- url:'./circles'
- })
- },800)
-
- } else {
- uni.showToast({
- title: res.msg,
- 'icon': 'none'
- })
- }
- })
- } else {
- return
- }
- },
- // 添加照片
- chooseImg() {
- // 判断当前选择图片是否大于九张
- if (this.imgData.length == 9) {
- uni.showToast({
- "icon": 'none',
- title: '最多只能上传九张图片'
- })
- return
- }
- uni.chooseImage({
- count: 9, //默认9
- sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
- // sourceType: ['album'], //从相册选择
- success: (res) => {
- var successUp = 0; //成功个数
- var failUp = 0; //失败个数
- var length = res.tempFilePaths.length; //总共个数
- var i = 0; //第几个
- this.uploadDIY(res.tempFilePaths, successUp, failUp, i, length);
- }
- });
- },
- // 上传图片
- uploadDIY(filePaths, successUp, failUp, i, length) {
- wx.uploadFile({
- filePath: filePaths[i],
- url: 'https://www.szdeao.com/wxapplet/upload/imgPhoto ', //仅为示例,非真实的接口地址
- name: 'photo',
- method: 'post',
- success: (resp) => {
- let data =JSON.parse(resp.data)
- console.log(data)
- let reg=/,$/gi;
- let str=data.data.imagesPath.replace(reg,"");
- this.imgData.push(str)
- console.log(this.imgData)
- successUp++;
- },
- fail: (res) => {
- failUp++;
- },
- complete: () => {
- i++;
- if (i == length) {
-
- } else { //递归调用uploadDIY函数
- this.uploadDIY(filePaths, successUp, failUp, i, length);
- }
- },
- });
-
- },
- }
- }
- </script>
- <style>
- .upImg {
- display: flex;
- flex-wrap: wrap;
- }
- .imgBox {
- width: 100%;
- margin-top: 30rpx;
- /* display: flex;
- flex-wrap: wrap; */
- }
- .content {
- width: 702rpx;
- margin: 0 auto;
- margin-top: 34rpx;
- }
- .text {
- width: 100%;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(51, 51, 51, 1);
- }
- .btn {
- width: 702rpx;
- height: 90rpx;
- background: rgba(247, 247, 247, 1);
- opacity: 1;
- border-radius: 18rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(204, 204, 204, 1);
- text-align: center;
- line-height: 90rpx;
- position: fixed;
- bottom: 56rpx;
- left: 26rpx;
- }
- .active {
- color: rgba(255, 255, 255, 1);
- background: rgba(41, 138, 253, 1);
- }
- </style>
|