123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- <template>
- <view class="page"
- @touchstart="touchStart"
- @touchend="touchEnd">
- <form>
- <view class="uni-textarea">
- <textarea placeholder="这一刻的想法..."
- v-model="input_content" />
- </view>
- <view class="uni-list list-pd" v-if="type === 'image'">
- <view class=" cell-pd">
- <view class="uni-uploader">
- <view class="uni-uploader-head">
- <view class="uni-uploader-title"></view>
- <view class="uni-uploader-info">{{imageList.length}}/9</view>
- </view>
- <view class="uni-uploader-body">
- <view class="uni-uploader__files">
- <block v-for="(image,index) in imageList" :key="index">
- <view class="uni-uploader__file" style="position: relative;">
- <image class="uni-uploader__img" mode="aspectFill" :src="image" :data-src="image" @tap="previewImage"></image>
- <view class="close-view" @click="close(index)">x</view>
- </view>
- </block>
- <view class="uni-uploader__input-box" v-show="imageList.length < 9">
- <view class="uni-uploader__input" @tap="chooseImage"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view v-if="type === 'video'" class="uni-list list-pd">
- <view class=" cell-pd">
- <view class="uni-uploader">
- <view class="uni-uploader-head">
- <view class="uni-uploader-title"></view>
- <view class="uni-uploader-info">请选择上传视频</view>
- </view>
- <view class="uni-uploader-body">
- <view class="uni-uploader__files">
- <block v-for="(image,index) in videoList" :key="index">
- <view class="uni-uploader__file" style="position: relative;">
- <video class="uni-uploader__img" mode="aspectFill" :src="image" :data-src="image" @tap="previewImage"></video>
- <view class="close-view" @click="closeVideo()">x</view>
- </view>
- </block>
- <view class="uni-uploader__input-box" v-show="videoList.length === 0">
- <view class="uni-uploader__input" @tap="chooseVideo"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="list_view">
- <!-- <view class="item_view">
- <view>卖货</view>
- <switch @change="canPay" />
- </view>
- <view class="item_view">
- <view>价格</view>
- <input class="uni-input" type="number" placeholder="请输入收费金额" v-model="pay_amount"/>
- </view> -->
- </view>
- </form>
- <!-- <view v-show="showVedio"
- class="showVedio">
- <video autoplay="true"
- object-fit="fill"
- page-gesture="true"
- controls="false"
- style="height: 100%;width: 100%"
- id="myVideo"
- :src="videoPath"
- @error="videoErrorCallback">
- <cover-image @tap="showVedio = false"
- src="/static/theme/default/my/close.png"
- class="cloneBut"></cover-image>
- </video>
- </view> -->
- </view>
- </template>
- <script>
- import _get from '../../../common/_get';
- import _hook from '../../../common/_hook';
- import _data from '../../../common/_data';
- var sourceType = [
- ['camera'],
- ['album'],
- ['camera', 'album']
- ]
- var sizeType = [
- ['compressed'],
- ['original'],
- ['compressed', 'original']
- ]
- export default {
- data () {
- return {
- // title: 'choose/previewImage',
- pay_amount:'',
- input_content: '',
- imageList: [],
- videoList: [],
- sourceTypeIndex: 2,
- sizeTypeIndex: 2,
- sizeType: ['压缩', '原图', '压缩或原图'],
- countIndex: 8,
- count: [1, 2, 3, 4, 5, 6, 7, 8, 9],
- sourceType: ['拍摄', '相册', '拍摄或相册'],
- VideoOfImagesShow: true,
- cameraList: [{
- value: 'back',
- name: '后置摄像头',
- checked: 'true'
- },
- {
- value: 'front',
- name: '前置摄像头'
- }],
- cameraIndex: 0,
- //侧滑返回start
- startX: 0, //点击屏幕起始位置
- movedX: 0, //横向移动的距离
- endX: 0, //接触屏幕后移开时的位置
- //end
- send_status: false,
- can_pay:0,
- }
- },
- onLoad (option) {
- this.type = option.type;
- this.user_id = option.user_id;
- console.log(this.type)
- },
- onShow () {
- _hook.routeSonHook();
- },
- onUnload () {
- this.imageList = [],
- this.sourceTypeIndex = 2,
- this.sourceType = ['拍照', '相册', '拍照或相册'],
- this.sizeTypeIndex = 2,
- this.sizeType = ['压缩', '原图', '压缩或原图'],
- this.countIndex = 8;
- },
- methods: {
- canPay(e){
- if(e.target.value){
- this.can_pay = 1;
- }else {
- this.can_pay = 0;
- }
- },
- publish () {
- if (!this.input_content) {
- uni.showModal({ content: '内容不能为空', showCancel: false, });
- return;
- }
- if (this.send_status) {
- return;
- }
- this.send_status = true;
- let _this = this;
- uni.showLoading({ title: '发布中' });
- // #ifndef H5
- //var location = await this.getLocation(); //位置信息,可删除
- // #endif
- ((callback) => {
- let content = {
- text: this.input_content,
- value: [],
- };
- let dataList = []
- if (this.type === 'image') {
- dataList = this.imageList
- } else {
- dataList = this.videoList
- }
- if (dataList.length) {
- for (var i = 0, len = dataList.length; i < len; i++) {
- _this.$httpSendFile({
- type: 2,
- local_url: dataList[i],
- data: { len: len },
- success (data) {
- content.value.push(data.save_name);
- if (content.value.length >= len) {
- content.pay_amount = _this.pay_amount;
- content.can_pay = _this.can_pay;
- content.video_path = data.video_path
- callback(content);
- }
- },
- fail () {
- _this.$httpSend({ path: '/im/upload/deleteCircleFile' });
- },
- });
- }
- return;
- }
- callback(content);
- })((content) => {
- /** 这里发送消息至朋友圈 */
- _this.$httpSend({
- path: '/im/circle/sendMsg',
- data: {
- content: JSON.stringify(content),
- },
- success_action: true,
- success (res) {
- uni.hideLoading();
- _this.send_status = false;
- if (res.err) {
- uni.showModal({
- content: '发布失败',
- });
- _this.$httpSend({ path: '/im/upload/deleteCircleFile' });
- return;
- }
- if (_this.imageList.length ||_this.videoList.length) {
- _this.$httpSend({ path: '/im/upload/circleFileAction', data: { circle_id: res.data.circle_id, } });
- }
- uni.showToast({
- icon: 'success',
- title: '发布成功',
- success () {
- let prefix = '';
- console.log("data.user_id",_this.user_id)
- if(_this.user_id > 0){
- prefix = '_user';
- }
- let circle_data = _data.localData('circle_data'+prefix);
- _get.getCircleList({
- time: (circle_data.length ? circle_data[0].time : 0),
- type: 0,
- user_id: _this.user_id,
- update:1
- });
- uni.navigateBack();
- }
- });
- },
- fail (err) {
- uni.hideLoading();
- uni.showModal({
- content: '发布失败',
- });
- _this.$httpSend({ path: '/im/upload/deleteCircleFile' });
- }
- });
- });
- },
- // #ifndef H5
- getLocation () {
- // h5中可能不支持,自己选择
- return new Promise((resolve, reject) => {
- uni.getLocation({
- type: 'wgs84',
- success: function (res) {
- resolve(res);
- },
- fail: (e) => {
- reject(e);
- }
- });
- });
- },
- // #endif
- close (e) {
- this.imageList.splice(e, 1);
- },
- closeVideo () {
- this.videoList = []
- },
- chooseVideo: async function () {
- let _this = this
- uni.chooseVideo({
- maxDuration: 60,
- count: 1,
- camera: this.cameraList[this.cameraIndex].value,
- sourceType: ['album'],
- success: (res) => {
- let videoFile = res.tempFilePath;
- this.videoList = this.videoList.concat(videoFile)
- }
- })
- },
- chooseImage: async function () {
- if (this.imageList.length === 9) {
- let isContinue = await this.isFullImg();
- console.log("是否继续?", isContinue);
- if (!isContinue) {
- return;
- }
- }
- uni.chooseImage({
- sourceType: sourceType[this.sourceTypeIndex],
- sizeType: sizeType[this.sizeTypeIndex],
- count: this.imageList.length + this.count[this.countIndex] > 9 ? 9 - this.imageList.length : this.count[this.countIndex],
- success: (res) => {
- console.log(res)
- this.imageList = this.imageList.concat(res.tempFilePaths);
- }
- })
- },
- isFullImg: function () {
- return new Promise((res) => {
- uni.showModal({
- content: "已经有9张图片了,是否清空现有图片?",
- success: (e) => {
- if (e.confirm) {
- this.imageList = [];
- res(true);
- } else {
- res(false)
- }
- },
- fail: () => {
- res(false)
- }
- })
- })
- },
- previewImage: function (e) {
- var current = e.target.dataset.src
- // var current = 'https://i.loli.net/2019/02/18/5c6a6e2623448.jpg'
- // this.imageList = ['https://i.loli.net/2019/02/18/5c6a6e2623448.jpg','https://i.loli.net/2019/02/18/5c6a6e49829ea.jpg']
- console.log(current);
- console.log(this.imageList);
- uni.previewImage({
- current: current,
- urls: this.imageList
- })
- },
- touchStart: function (e) {
- this.startX = e.mp.changedTouches[0].pageX;
- },
- touchEnd: function (e) {
- this.endX = e.mp.changedTouches[0].pageX;
- if (this.endX - this.startX > 200) {
- uni.navigateBack();
- }
- }
- },
- onNavigationBarButtonTap (e) {
- if (e.index == 0) {
- this.publish();
- }
- },
- }
- </script>
- <style scoped>
- .showVedio {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 300;
- }
- .cloneBut {
- position: relative;
- text-align: right;
- font-size: 24px;
- color: red;
- margin-left: 10px;
- margin-top: 10px;
- height: 30px;
- width: 30px;
- }
- .cloneBut-img {
- position: absolute;
- width: 30px;
- }
- .list_view {
- padding: 40upx;
- background: #ffffff;
- }
- .item_view {
- display: flex;
- height: 60upx;
- align-items: center;
- padding: 20upx 0;
- justify-content: space-between;
- }
- .cell-pd {
- padding: 20upx 30upx;
- }
- .uni-textarea {
- width: auto;
- padding: 20upx 25upx;
- line-height: 1.6;
- height: 150upx;
- }
- .uni-list::before {
- height: 0 !important;
- }
- .uni-list:after {
- height: 0;
- }
- .list-pd {
- margin-top: 0;
- }
- .close-view {
- text-align: center;
- line-height: 22upx;
- height: 24upx;
- width: 24upx;
- border-radius: 10px;
- background: #ef5350;
- color: #ffffff;
- position: absolute;
- top: 6upx;
- right: 8upx;
- font-size: 24upx;
- }
- .page {
- width: 750upx;
- height: 100%;
- }
- </style>
|