123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648 |
- <template>
- <app-layout>
- <cover-view v-if="friendModel" class="friend-box">
- <cover-view class="info main-center cross-center dir-top-nowrap">
- <cover-view class="dir-left-nowrap cross-center">
- <cover-image src="../../../static/image/icon/friend-v.png" class="icon"></cover-image>
- <cover-view class="text">文本已复制到剪贴板</cover-view>
- </cover-view>
- <cover-view class="dir-left-nowrap cross-center" style="margin-top: 30rpx">
- <cover-image src="../../../static/image/icon/friend-v.png" class="icon"></cover-image>
- <cover-view v-if="is_video" class="text">视频已保存到相册</cover-view>
- <cover-view v-else class="text">图片已保存到相册</cover-view>
- </cover-view>
- </cover-view>
- </cover-view>
- <view>
- <text id="opacity-hide" class="opacity-hide">
- 第一行
- 第二行
- 第三行
- 第四行
- 第五行
- </text>
- <view class="fixed">
- <view class="share-head-margin">
- <view class="share-head dir-left-nowrap">
- <view class="box-grow-1 main-center cross-center"
- :class="[`goods`, tab===`goods`? `${tab}-active`: '']"
- @click="tabChange(`goods`)">商品
- </view>
- <view class="box-grow-1 main-center cross-center"
- :class="[`dynamic`, tab===`dynamic`? `${tab}-active`: '']"
- @click="tabChange(`dynamic`)">动态
- </view>
- </view>
- </view>
- <view class="share-center dir-left-nowrap" v-if="tab === `goods`">
- <view class="dir-left-nowrap cross-center value">
- <view @click="sortChange(sort===1?2:1)" :class="[sort===1 || sort===2 ? `active`: ``]">最新商品
- </view>
- <icon v-if="sort === 1" class="sort-plus"></icon>
- <icon v-else-if="sort === 2" class="sort-less"></icon>
- <icon v-else class="sort-default"></icon>
- </view>
- <view class="dir-left-nowrap cross-center value">
- <view @click="sortChange(sort===3?4:3)" :class="[sort===3 || sort===4 ? `active`: ``]">最新素材
- </view>
- <icon v-if="sort === 3" class="sort-plus"></icon>
- <icon v-else-if="sort === 4" class="sort-less"></icon>
- <icon v-else class="sort-default"></icon>
- </view>
- <view class="dir-left-nowrap cross-center value">
- <view @click="sortChange(sort===5?6:5)" :class="[sort===5 || sort===6 ? `active`: ``]">销量
- </view>
- <icon v-if="sort === 5" class="sort-plus"></icon>
- <icon v-else-if="sort === 6" class="sort-less"></icon>
- <icon v-else class="sort-default"></icon>
- </view>
- </view>
- </view>
- <view :class="tab + `-margin`">
- <view class="share-goods" v-for="(item,index) in list" :key="index">
- <view v-if="item.is_top" class="goods-top dir-left-nowrap">
- <icon class="top box-grow-0"></icon>
- <view>置顶</view>
- </view>
- <view class="goods-head dir-left-nowrap">
- <view class="dir-top-nowrap">
- <view class="t-omit goods-name">{{item.mall_name}}</view>
- <view class="goods-time">{{item.format_time}}</view>
- </view>
- <view v-if="tab === `goods`" @click="navDetail(item)"
- class="goods-detail main-center box-grow-0 cross-center">商品详情
- </view>
- </view>
- <view class="goods-text">
- <text class="opacity-hide" space="nbsp" :id="`all_hide_text_` + index"
- v-text="item.share_text"></text>
- <text class="share-text" :class="{'limit': allTextList.indexOf(index) === -1}"
- space="nbsp" v-text="item.share_text"></text>
- <view v-if="item.is_all_btn" class="all" @click="showText(index)">
- <block v-if="allTextList.indexOf(index) === -1">全文</block>
- <block v-else>收起</block>
- </view>
- </view>
- <view v-if="item.goods_id ===0 && item.material_video_url" class="goods-video">
- <video :src="item.material_video_url" show-mute-btn
- :poster="item.material_cover_url"></video>
- </view>
- <view v-else class="goods-image dir-left-wrap">
- <view v-for="(item1,index1) in item.share_pic" :key="index1">
- <image @click="previewImage(item.share_pic, index1)" :src="item1.pic_url" lazy-load></image>
- </view>
- </view>
- <view class="goods-set cross-center dir-left-nowrap">
- <view class="box-grow-1 main-center">
- <!-- #ifdef MP-BAIDU || MP-ALIPAY -->
- <view class="box-grow-1 main-center" @click="copyText(item)">复制文本</view>
- <!-- #endif -->
- <!-- #ifndef MP-BAIDU || MP-ALIPAY -->
- <view class="box-grow-1 main-center" @click="copyText(item)">复制文本</view>
- <!-- #endif -->
- <!-- #ifdef MP-WEIXIN -->
- <view class="box-grow-1 main-center" @click="saveImage(item)"
- v-if="item.goods_id ===0 && item.material_video_url">下载视频
- </view>
- <view class="box-grow-1 main-center" v-else @click="saveImage(item)">保存图片</view>
- <!-- #endif -->
- <!-- #ifndef MP-WEIXIN -->
- <view class="box-grow-1 main-center" v-if="item.goods_id !==0 || !item.material_video_url" @click="saveImage(item)">保存图片</view>
- <!-- #endif -->
- <!-- #ifndef MP-BAIDU -->
- <view class="box-grow-1 main-center" @click="setPoster(item)">生成海报</view>
- <!-- #endif -->
- </view>
- <view class="line"></view>
- <view class="box-grow-0">分享到</view>
- <image @click="batchCopy(item)" class="friend box-grow-0"></image>
- <view style="width: 50rpx">
- <app-jump-button open_type="share">
- <image @click="shareCard(item)" class="card"></image>
- </app-jump-button>
- </view>
- </view>
- </view>
- </view>
- <view class="box" :class="{'app-show-hidden': posterShow}">
- <app-goods-preview-poster
- v-model="posterShow" @close="posterShow = false" :url="posterUrl"
- ></app-goods-preview-poster>
- </view>
- </view>
- </app-layout>
- </template>
- <script>
- import appGoodsPreviewPoster from '../../../components/page-component/goods/app-goods-preview-poster';
- export default {
- name: "index",
- components: {
- appGoodsPreviewPoster,
- },
- data() {
- return {
- friendModel: false,
- is_video: false,
- tab: 'goods',
- sort: 1,
- page: 1,
- args: false,
- load: false,
- list: [],
- allTextList: [],
- shareData: {},
- posterShow: false,
- posterUrl: '',
- }
- },
- onReachBottom: function () {
- const self = this;
- if (self.args || self.load)
- return;
- self.load = true;
- let page = self.page + 1;
- self.$request({
- url: self.$api.quick_share.goods,
- data: {
- type: self.tab,
- sort: self.sort,
- page,
- }
- }).then(info => {
- if (info.code === 0) {
- //todo
- info.data.list.forEach(v => {
- v.is_all_btn = false;
- });
- [self.page, self.args, self.list] = [page, info.data.list.length === 0, self.list.concat(info.data.list)];
- self.formatList();
- }
- self.load = false;
- });
- },
- onLoad: function (options) {
- this.loadData();
- },
- onShareAppMessage(params) {
- if (params.from === 'button') {
- return this.$shareAppMessage(this.shareData);
- }
- },
- methods: {
- navDetail(column) {
- uni.navigateTo({url: `/pages/goods/goods?id=` + column.goods_id});
- },
- previewImage(list, index) {
- const urls = list.map(item => {
- return item.pic_url;
- });
- uni.previewImage({
- urls: urls,
- current: index,
- });
- },
- showText(index) {
- let key = this.allTextList.indexOf(index);
- if (key === -1) {
- this.allTextList.splice(-1, 0, index);
- } else {
- this.allTextList.splice(key, 1);
- }
- },
- sortChange(sort) {
- [this.list, this.allTextList] = [[], []];
- [this.page, this.args, this.sort] = [1, false, sort];
- this.loadData();
- },
- tabChange(tab) {
- [this.list, this.allTextList] = [[], []];
- [this.page, this.args, this.tab] = [1, false, tab];
- this.loadData();
- },
- loadData() {
- const self = this;
- self.$showLoading({text: '加载中'});
- self.$request({
- url: self.$api.quick_share.goods,
- data: {
- page: 1,
- type: self.tab,
- sort: self.sort,
- }
- }).then(info => {
- self.$hideLoading();
- if (info.code === 0) {
- info.data.list.forEach(v => {
- v.is_all_btn = false;
- })
- self.list = info.data.list;
- self.formatList();
- }
- }).catch(info => {
- self.$hideLoading();
- })
- },
- formatList() {
- const self = this;
- setTimeout(() => {
- let list = JSON.parse(JSON.stringify(self.list));
- const query = uni.createSelectorQuery().in(this);
- query.select('#opacity-hide').boundingClientRect(item => {
- list.forEach((v, k) => {
- let key = uni.createSelectorQuery().in(self);
- key.select(`#all_hide_text_` + k).boundingClientRect(item1 => {
- v.is_all_btn = item1.height + 1 >= item.height;
- }).exec();
- });
- self.list = list;
- }).exec();
- })
- },
- saveImage(column, customize_success = false) {
- let self = this;
- self.is_video = column.goods_id === 0 && column.material_video_url;
- const customize_a = function () {
- uni.showToast({title: '保存成功'});
- };
- const customize_b = function () {
- self.friendModel = true;
- setTimeout(() => {
- self.friendModel = false;
- }, 1500)
- };
- if (self.is_video) {
- const share_video = column.material_video_url;
- self.$utils.batchSave(share_video, 'video').then(result => {
- customize_success ? customize_b() : customize_a();
- });
- } else {
- uni.showLoading({title: `图片保存中`});
- self.$request({
- url: self.$api.quick_share.poster_list,
- data: {
- id: column.id,
- }
- }).then(info => {
- if (info.code === 0) {
- let urls = column.share_pic.map(item => {
- return item.pic_url;
- })
- urls.splice(-1, 1, info.data.pic_url);
- self.$utils.batchSave(urls, 'image').then(result => {
- customize_success ? customize_b() : customize_a();
- });
- }
- }).catch(e => {
- uni.hideLoading();
- })
- }
- },
- setPoster(column) {
- if(this.tab === 'dynamic') {
- this.posterUrl = this.$api.quick_share.poster + `&id=` + column.id;
- this.posterShow = true;
- } else {
- const posterConfig = this.$api.quick_share.poster_config + '&id=' + column.id;
- const posterGenerate = this.$api.quick_share.poster_generate + '&id=' + column.id;
- uni.navigateTo({
- url: `/pages/poster/goods?poster_config=${escape(posterConfig)}&poster_generate=${escape(posterGenerate)}`
- });
- }
- },
- copyText(column) {
- uni.setClipboardData({
- data: column.share_text,
- success() {
- //#ifndef MP-WEIXIN
- uni.showToast({title: '复制成功'});
- // #endif
- }
- });
- },
- batchCopy(column) {
- this.copyText(column);
- this.saveImage(column, true);
- },
- shareCard(column) {
- const title = column.app_share_title ? column.app_share_title : column.share_text;
- let imageUrl = '';
- if (column.share_pic[0].pic_url) {
- imageUrl = column.share_pic[0].pic_url;
- }
- if (column.app_share_pic) {
- imageUrl = column.app_share_pic;
- }
- this.shareData = {
- title: title,
- imageUrl: imageUrl,
- path: column.goods_id === 0 ? '/pages/index/index' : '/pages/goods/goods',
- params: column.goods_id === 0 ? {} : {id: column.goods_id},
- }
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .friend-box {
- position: fixed;
- top: #{563rpx};
- width: 100%;
- left: 0;
- .info > cover-view:first-child {
- margin-bottom: #{30rpx};
- }
- .info {
- width: #{413rpx};
- height: #{209rpx};
- color: #ffffff;
- font-size: #{28rpx};
- border-radius: #{16rpx};
- margin: 0 auto;
- background: rgba(0, 0, 0, 0.8);
- cover-view {
- background: rgba(0, 0, 0, 0);
- }
- .text {
- padding-left: #{13rpx};
- }
- .icon {
- display: block;
- height: #{28rpx};
- width: #{28rpx};
- }
- }
- }
- .opacity-hide {
- position: fixed;
- top: 0;
- z-index: -10;
- opacity: 0;
- word-break: break-all;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- overflow: hidden;
- white-space: normal !important;
- -webkit-line-clamp: 5;
- }
- .fixed {
- position: fixed;
- top: var(--window-top);
- width: 100%;
- z-index: 10;
- .share-head-margin {
- padding: #{23rpx} 0;
- background: #ffffff;
- .share-head {
- text-align: center;
- width: #{323rpx};
- margin: 0 auto;
- font-size: #{28rpx};
- height: #{56rpx};
- color: #666666;
- .goods {
- border-top-left-radius: #{30rpx};
- border-bottom-left-radius: #{30rpx};
- border-top: 1px solid #446dfd;
- border-bottom: 1px solid #446dfd;
- border-left: 1px solid #446dfd;
- }
- .dynamic {
- border-top-right-radius: #{30rpx};
- border-bottom-right-radius: #{30rpx};
- border-top: 1px solid #446dfd;
- border-bottom: 1px solid #446dfd;
- border-right: 1px solid #446dfd;
- }
- .dynamic-active, .goods-active {
- background: #446dfd;
- color: #ffffff;
- }
- }
- }
- .share-center {
- padding: 0 #{60rpx};
- height: #{96rpx};
- font-size: #{28rpx};
- background: #FFFFFF;
- justify-content: space-between;
- .value > view {
- margin-right: #{9rpx};
- }
- .active {
- color: #446dfd;
- }
- icon {
- background-repeat: no-repeat;
- background-size: 100% 100%;
- width: #{16upx};
- height: #{26upx};
- }
- .sort-default {
- background-image: url("../image/sort-blue-default.png");
- }
- .sort-less {
- background-image: url("../image/sort-blue-less.png");
- }
- .sort-plus {
- background-image: url("../image/sort-blue-plus.png");
- }
- }
- }
- .goods-margin {
- margin-top: #{196rpx};
- }
- .dynamic-margin {
- margin-top: #{100rpx};
- }
- .box {
- position: fixed;
- z-index: 1700;
- left: 0;
- bottom: 0;
- width: #{750rpx};
- opacity: 0;
- visibility: hidden;
- height: 100%;
- background-color: rgba(153, 153, 153, 0.5);
- }
- .app-show-hidden {
- opacity: 1;
- visibility: visible;
- }
- .share-goods {
- background: #FFFFFF;
- margin-bottom: #{15rpx};
- .goods-top {
- background: #FFFFFF;
- padding: #{14rpx} #{24rpx};
- font-size: #{26rpx};
- color: #ff4544;
- .top {
- background-repeat: no-repeat;
- background-size: 100% 100%;
- background-image: url("../image/goods-top.png");
- height: #{32rpx};
- width: #{28rpx};
- display: block;
- margin-right: #{12rpx};
- }
- }
- .goods-head {
- padding: #{40rpx} #{24rpx} 0 #{24rpx};
- .goods-name {
- color: #212121;
- font-size: #{34rpx};
- max-width: #{540rpx};
- line-height: 1;
- }
- .goods-time {
- margin-top: #{20rpx};
- color: #a0a0a0;
- font-size: #{24rpx};
- line-height: 1;
- }
- .goods-detail {
- color: #446dfd;
- font-size: #{26rpx};
- border: 1px solid #446dfd;
- border-radius: #{6rpx};
- height: #{50rpx};
- width: #{135rpx};
- margin-left: auto;
- }
- }
- .goods-text {
- padding: 0 #{24rpx};
- font-size: #{32rpx};
- color: #212121;
- margin-top: #{40rpx};
- .share-text {
- word-break: break-all;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- overflow: hidden;
- white-space: normal !important;
- }
- .share-text.limit {
- -webkit-line-clamp: 4;
- }
- .all {
- padding-top: #{10rpx};
- color: #5b6a91;
- }
- }
- .goods-video {
- padding-top: #{15rpx};
- padding-bottom: #{30rpx};
- video {
- width: 100%;
- height: #{422rpx};
- }
- }
- .goods-image {
- padding: #{10rpx} #{18rpx} #{30rpx} #{18rpx};
- view {
- height: #{226rpx};
- width: #{226rpx};
- margin: #{6rpx};
- }
- image {
- height: 100%;
- width: 100%;
- display: block;
- }
- }
- .goods-set {
- color: #a0a0a0;
- font-size: #{28rpx};
- border-top: #{1rpx} solid #e2e2e2;
- padding: #{15rpx} #{24rpx} #{15rpx} 0;
- .margin {
- margin: 0 auto;
- }
- .line {
- height: #{60rpx};
- width: #{1px};
- margin-right: #{26rpx};
- background: #dcdfe6;
- }
- image {
- background-repeat: no-repeat;
- background-size: 100% 100%;
- height: #{50rpx};
- width: #{50rpx};
- }
- .friend {
- margin-right: #{15rpx};
- margin-left: #{20rpx};
- background-image: url("../image/friend.png");
- }
- .card {
- background-image: url("../image/wechat.png");
- }
- }
- }
- </style>
|