123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- <template>
- <view class="app-share-qr-code-poster" @click.prevent.stop="showHiddenClick" :class="{'app-show-hidden': value}">
- <view class="safe-area-inset-bottom app-bottom" v-if="buttonBoolean">
- <view class="app-icons dir-left-nowrap">
- <view class="box-grow-1" @click="showHiddenClick" v-if="isShowFriend">
- <app-jump-button form arrangement="topCenter" open_type="share">
- <icon class="app-icon app-share"></icon>
- <text class="app-text">发送给朋友</text>
- </app-jump-button>
- </view>
- <!-- #ifndef MP-BAIDU -->
- <view class="box-grow-1" v-if="isHidden">
- <view class="box-grow-1" @click.prevent.stop="fenxianghaibao">
- <app-form-id>
- <view class="dir-top-wrap main-center cross-center">
- <icon class="app-icon app-code"></icon>
- <text class="app-text">{{title}}</text>
- </view>
- </app-form-id>
- </view>
- </view>
- <!-- #endif -->
- </view>
- <view class="app-button">
- <app-form-id>
- <view style="height: 100rpx;background-color: #ffffff;text-align: center;line-height: 100rpx;font-size: 32rpx;color: #353535;"
- @click="showHiddenClick"
- type="general">取消</view>
- </app-form-id>
- </view>
- <!-- <view v-if="getBoolEmpty.XBoolean" :style="{height: getBoolEmpty.emptyHeight + 'rpx',}"></view>-->
- </view>
- <!-- #ifndef MP-BAIDU -->
- <view class="app-center dir-top-wrap main-center cross-center" v-else>
- <view class="app-close" @click="showHiddenClick"></view>
- <view class="app-image-iframe main-center dir-top-nowrap cross-center" v-if="loading">
- <image class="loading" src="../../../static/image/loading.gif"></image>
- <view class="text">海报生成中</view>
- </view>
- <image class="app-image-iframe" v-if="!loading" show-menu-by-longpress mode="aspectFit" @click="preview(shareImage)" :src="shareImage"></image>
- <view class="app-button">
- <button class="save-picture" style="background: #FF3535" :class="[loading ? 'disabled-save' : sign === 'gift' ? theme + '-background' : theme + '-m-back ' + theme ]" :disabled="loading" @click="savePicture">保存图片</button>
- </view>
- <text class="app-text">保存到相册</text>
- </view>
- <!-- #endif -->
- <app-permissions-auth :text="text" :isShow='is_can_save' @cancel="cancel"></app-permissions-auth>
- </view>
- </template>
- <script>
- import {mapGetters} from 'vuex';
- import appPermissionsAuth from '../../basic-component/app-layout/app-permissions-auth/app-permissions-auth.vue';
- export default {
- name: 'app-share-qr-code-poster',
- components: {
- appPermissionsAuth,
- },
- computed: {
- ...mapGetters('iPhoneX', {
- getBoolEmpty: 'getBoolEmpty'
- }),
- },
- props: {
- title: {
- type: String,
- default() {
- return '生成商品海报';
- }
- },
- posterConfig: String,
- posterGenerate: String,
- hasPosterNav: {
- type: Boolean,
- default() {
- return false
- },
- },
- value: {
- type: Boolean,
- default() {
- return false;
- }
- },
- url: {
- type: String,
- default() {
- return '';
- }
- },
- disabled: {
- type: Boolean,
- default() {
- return false;
- }
- },
- isHidden: {
- type: Boolean,
- default() {
- return true;
- }
- },
- posterUrl: {
- type: String,
- default() {
- return ''
- }
- },
- theme: String,
- sign: String,
- isShowFriend: {
- type: Boolean,
- default() {
- return true;
- }
- }
- },
- data() {
- return {
- showHidden: this.value,
- buttonBoolean: true,
- shareImage: '',
- is_can_save: false,
- text: '保存图片需要您的授权。点击去设置,开启 保存到相册 权限',
- loading: true,
- }
- },
- methods: {
- fenxianghaibao() {
- if (this.hasPosterNav) {
- let url = this.posterUrl;
- if(this.posterUrl == '') {
- url = `/pages/poster/goods?poster_config=${escape(this.posterConfig)}&poster_generate=${escape(this.posterGenerate)}`
- }
- uni.navigateTo({
- url: url
- });
- } else {
- this.buttonBoolean = false;
- this.getShareImg();
- }
- },
- showHiddenClick() {
- this.showHidden = false;
- this.$emit('input', this.showHidden);
- this.buttonBoolean = true;
- },
- savePicture() {
- let self = this;
- // #ifndef MP-ALIPAY
- uni.showLoading({
- title: '图片保存中'
- });
- uni.downloadFile({
- url: this.shareImage,
- success(res) {
- uni.saveImageToPhotosAlbum({
- filePath: res.tempFilePath,
- success() {
- uni.hideLoading();
- uni.showToast({
- title: '保存成功',
- duration: 3000,
- icon: 'none',
- });
- },
- fail() {
- uni.hideLoading();
- self.getAuthSetting();
- },
- complete() {
- }
- })
- }
- });
- // #endif
- // #ifdef MP-ALIPAY
- my.showLoading({
- content: '图片保存中'
- });
- my.saveImage({
- url: this.shareImage,
- showActionSheet: true,
- success: () => {
- my.hideLoading();
- uni.showToast({
- title: '保存成功',
- duration: 3000,
- icon: 'none',
- });
- },
- fail() {
- my.hideLoading();
- },
- complete() {
- }
- });
- // #endif
- },
- getShareImg() {
- if (!this.url) return;
- this.$request({
- url: this.url,
- }).then(response => {
- if (response.code === 0) {
- this.shareImage = response.data.pic_url;
- this.loading = false;
- } else {
- uni.showModal({
- content: response.msg,
- showCancel: false,
- });
- }
- });
- },
- getAuthSetting() {
- let self = this;
- uni.getSetting({
- success(res) {
- // #ifndef MP-TOUTIAO
- self.is_can_save = !res.authSetting['scope.writePhotosAlbum'];
- // #endif
- // #ifdef MP-TOUTIAO
- self.is_can_save = !res.authSetting['scope.album'];
- // #endif
- }
- });
- },
- cancel(isShow) {
- this.is_can_save = isShow;
- },
- preview(data) {
- uni.previewImage({
- urls: [data],
- longPressActions: true,
- });
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .save-picture {
- width: #{500upx};
- height: #{80upx};
- border-radius: #{40upx};
- font-size: #{32upx};
- line-height: #{80upx};
- text-align: center;
- margin: 0;
- padding: 0;
- border: none;
- color: #ffffff;
- }
- .disabled-save {
- background-color: #cdcdcd;
- }
- .app-share-qr-code-poster {
- width: #{750rpx};
- height: 100%;
- position: fixed;
- z-index: 1701;
- left: 0;
- opacity: 0;
- top: 0;
- visibility: hidden;
- background-color: rgba(153, 153, 153, 0.5);
- .loading {
- width: #{220rpx};
- height: #{220rpx};
- }
- .app-icons {
- height: #{290rpx};
- .app-text {
- font-size: #{26rpx};
- color: #353535;
- }
- > view {
- width: 50%;
- height: 100%;
- .app-icon {
- width: #{120rpx};
- height: #{120rpx};
- background-size: cover;
- background-repeat: no-repeat;
- background-color: white;
- border-radius: 50%;
- margin-top: #{60rpx};
- margin-bottom: #{24rpx};
- }
- .app-share {
- background-image: url('../../../static/image/icon/share.png');
- }
- .app-code {
- background-image: url('../../../static/image/icon/code.png');
- }
- .text {
- font-size: #{26rpx};
- color: #353535;
- }
- }
- }
- .app-bottom {
- width: 100%;
- position: fixed;
- bottom: 0;
- left: 0;
- background-color: #f2f2f2;
- .app-icons {
- width: 100%;
- height: #{290rpx};
- }
- .app-button {
- width: 100%;
- height: #{100rpx};
- /deep/ button {
- border-radius: 0;
- border: none;
- }
- }
- }
- .app-center {
- width: calc(100% - #{80rpx});
- padding-top: #{100rpx};
- padding-bottom: #{77rpx};
- border-radius: #{8rpx};
- background-color: white;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- .app-close {
- width: #{30rpx};
- height: #{30rpx};
- background-size: cover;
- background-repeat: no-repeat;
- background-image: url("../../../static/image/icon/close.png");
- position: absolute;
- top: #{28rpx};
- right: #{24rpx};
- }
- .app-image-iframe {
- width: #{440rpx};
- height: #{783rpx};
- position: relative;
- box-shadow: #{2rpx} #{2rpx} #{10rpx} #d9d9d9;
- .text {
- text-align: center;
- color: #888;
- }
- }
- .app-button {
- width: #{500rpx};
- height: #{80rpx};
- margin-top: #{38rpx};
- margin-bottom: #{24rpx};
- }
- .app-text {
- font-size: #{24rpx};
- color: #999999;
- }
- }
- }
- .app-show-hidden {
- opacity: 1;
- visibility: visible;
- }
- </style>
|