| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- <template>
- <!-- 关注公众号 -->
- <view>
- <common-wrapper :config="configData">
- <view :style="[followStyle]" class="follow acea-row row-between-wrapper">
- <view class="picTxt acea-row row-middle">
- <view class="pictrue">
- <easy-loadimage
- mode="widthFix"
- :image-src="dataConfig.imgConfig.url"
- width="92rpx"
- height="92rpx"
- borderRadius="46rpx"
- ></easy-loadimage>
- </view>
- <view class="name line1">
- {{ dataConfig.titleConfig.value }}
- </view>
- </view>
- <view
- :style="[buttonStyle]"
- class="notes acea-row row-center-wrapper"
- @click="followTap"
- >
- {{ $t(`关注`) }}
- </view>
- <view class="iconfont icon-iconfontguanbi"></view>
- </view>
- </common-wrapper>
- <view class="followCode" v-if="followCode">
- <view class="pictrue">
- <view class="title">{{ $t(`关注公众号`) }}</view>
- <view class="tips">{{ $t(`活动福利,第一时间了解`) }}</view>
- <view class="code-bg">
- <image class="imgs" :src="dataConfig.codeConfig.url" mode=""></image>
- </view>
- <!-- #ifdef MP || APP-PLUS -->
- <view class="btn" @tap="savePic">{{ $t(`保存图片`) }}</view>
- <!-- #endif -->
- <!-- #ifdef H5 -->
- <view class="btn" v-show="isWeixin" @tap="savePic">{{
- $t(`长按保存图片`)
- }}</view>
- <view class="btn" v-show="!isWeixin" @tap="savePic">{{
- $t(`保存图片`)
- }}</view>
- <!-- #endif -->
- <view
- class="close acea-row row-center-wrapper"
- @click="closeFollowCode"
- >
- <text class="iconfont icon-ic_close1"></text>
- </view>
- </view>
- <view class="mask"></view>
- </view>
- </view>
- </template>
- <script>
- import commonWrapper from "./commonWrapper.vue";
- import { follow } from "@/api/api.js";
- import { getSubscribe } from "@/api/public";
- // #ifdef H5
- import Auth from "@/libs/wechat";
- // #endif
- export default {
- components: { commonWrapper },
- name: "follow",
- props: {
- dataConfig: {
- type: Object,
- default: () => {},
- },
- isSortType: {
- type: String | Number,
- default: 0,
- },
- },
- data() {
- return {
- followCode: false,
- followUrl: "",
- bgColor: "",
- imgConfig: "",
- mbConfig: 0,
- themeColor: "",
- titleConfig: 0,
- subscribe: false,
- // #ifdef H5
- isWeixin: Auth.isWeixin(),
- //#endif
- };
- },
- computed: {
- buttonStyle() {
- return {
- "border-color": this.dataConfig.themeColor.color[0].item,
- color: this.dataConfig.themeColor.color[0].item,
- };
- },
- followStyle() {
- let borderRadius = `${this.dataConfig.fillet.val * 2}rpx`;
- if (this.dataConfig.fillet.type) {
- borderRadius = `${this.dataConfig.fillet.valList[0].val * 2}rpx ${
- this.dataConfig.fillet.valList[1].val * 2
- }rpx ${this.dataConfig.fillet.valList[3].val * 2}rpx ${
- this.dataConfig.fillet.valList[2].val * 2
- }rpx`;
- }
- return {
- "border-radius": borderRadius,
- background: `linear-gradient(90deg, ${this.dataConfig.bgColor.color[0].item} 0%, ${this.dataConfig.bgColor.color[1].item} 100%)`,
- color: this.dataConfig.themeColor.color[0].item,
- };
- },
- configData() {
- return {
- ...this.dataConfig,
- paddingConfig: this.dataConfig.paddingConfig || {
- isAll: false,
- valList: [
- {
- val: this.dataConfig.topConfig
- ? this.dataConfig.topConfig.val
- : 0,
- },
- {
- val: this.dataConfig.prConfig ? this.dataConfig.prConfig.val : 0,
- },
- {
- val: this.dataConfig.bottomConfig
- ? this.dataConfig.bottomConfig.val
- : 0,
- },
- {
- val: this.dataConfig.prConfig ? this.dataConfig.prConfig.val : 0,
- },
- ],
- },
- marginConfig: this.dataConfig.marginConfig || {
- isAll: false,
- valList: [
- {
- val: this.dataConfig.mbConfig ? this.dataConfig.mbConfig.val : 0,
- },
- {
- val: 0,
- },
- {
- val: 0,
- },
- {
- val: 0,
- },
- ],
- },
- };
- },
- followStyle() {
- let borderRadius = `${this.dataConfig.fillet.val * 2}rpx`;
- if (this.dataConfig.fillet.type) {
- borderRadius = `${this.dataConfig.fillet.valList[0].val * 2}rpx ${
- this.dataConfig.fillet.valList[1].val * 2
- }rpx ${this.dataConfig.fillet.valList[3].val * 2}rpx ${
- this.dataConfig.fillet.valList[2].val * 2
- }rpx`;
- }
- return {
- "border-radius": borderRadius,
- background: `linear-gradient(90deg, ${this.dataConfig.bgColor.color[0].item} 0%, ${this.dataConfig.bgColor.color[1].item} 100%)`,
- color: this.dataConfig.themeColor.color[0].item,
- };
- },
- },
- created() {},
- mounted() {
- getSubscribe()
- .then((res) => {
- this.subscribe = res.data.subscribe || false;
- })
- .catch(() => {});
- },
- methods: {
- savePic() {
- // #ifdef H5
- var a = document.createElement("a"); // 生成一个a元素
- a.download = "wechat"; // 设置图片名称
- a.style.display = "none";
- a.href = this.dataConfig.codeConfig.url; // 将生成的URL设置为a.href属性
- document.body.appendChild(a); // 将a标签追加到文档对象中
- a.click(); // 触发a的单击事件
- a.remove(); // 一次性的,用完就删除a标签
- // #endif
- // #ifdef MP
- let _that = this;
- uni.downloadFile({
- url: _that.dataConfig.codeConfig.url, //图片地址
- success: function (response) {
- uni.getSetting({
- success(res) {
- if (!res.authSetting["scope.writePhotosAlbum"]) {
- uni.authorize({
- scope: "scope.writePhotosAlbum",
- success() {
- uni.saveImageToPhotosAlbum({
- filePath: response.tempFilePath,
- success: function (res) {
- _that.closeFollowCode();
- _that.$util.Tips({
- title: "保存成功",
- icon: "success",
- });
- },
- fail: function (res) {
- _that.$util.Tips({
- title: "保存失败",
- });
- },
- });
- },
- });
- } else {
- uni.saveImageToPhotosAlbum({
- filePath: response.tempFilePath,
- success: function (res) {
- _that.closeFollowCode();
- _that.$util.Tips({
- title: "保存成功",
- icon: "success",
- });
- },
- fail: function (res) {
- _that.$util.Tips({
- title: "保存失败",
- });
- },
- });
- }
- },
- });
- },
- });
- // #endif
- //#ifdef APP-PLUS
- let thatApp = this;
- uni.downloadFile({
- url: thatApp.dataConfig.codeConfig.url, //图片地址
- success: function (response) {
- uni.saveImageToPhotosAlbum({
- filePath: response.tempFilePath,
- success: function (res) {
- thatApp.posterImageClose();
- thatApp.$util.Tips({
- title: "保存成功",
- icon: "success",
- });
- },
- fail: function (res) {
- thatApp.$util.Tips({
- title: "保存失败",
- });
- },
- });
- },
- });
- // #endif
- },
- followTap() {
- this.followCode = true;
- },
- closeFollowCode() {
- this.followCode = false;
- },
- },
- };
- </script>
- <style lang="scss">
- .follow {
- padding: 14rpx 32rpx 14rpx 30rpx;
- background: #ffffff;
- .picTxt {
- flex: 1;
- min-width: 0;
- .name {
- flex: 1;
- font-size: 30rpx;
- color: #333333;
- margin-left: 20rpx;
- }
- }
- .notes {
- position: relative;
- font-weight: 500;
- font-size: 24rpx;
- color: var(--view-theme);
- width: 112rpx;
- height: 56rpx;
- border: 1px solid var(--view-theme);
- border-radius: 28rpx;
- overflow: hidden;
- }
- .iconfont {
- margin-left: 16rpx;
- font-size: 32rpx;
- color: #333333;
- }
- }
- .followCode {
- .pictrue {
- width: 548rpx;
- height: 758rpx;
- border-radius: 48rpx;
- background: #ffffff;
- left: 50%;
- top: 50%;
- position: fixed;
- z-index: 10000;
- transform: translate(-50%, -50%);
- .title {
- padding: 48rpx 0 46rpx;
- border-top-left-radius: 48rpx;
- border-top-right-radius: 48rpx;
- border-bottom-right-radius: 274rpx 40rpx;
- border-bottom-left-radius: 274rpx 40rpx;
- background: linear-gradient(90deg, #ff7931 0%, var(--view-theme) 100%);
- text-align: center;
- font-weight: 500;
- font-size: 40rpx;
- line-height: 56rpx;
- color: #ffffff;
- }
- .tips {
- margin-top: 48rpx;
- text-align: center;
- font-size: 28rpx;
- line-height: 40rpx;
- color: #3d3d3d;
- }
- .code-bg {
- width: 312rpx;
- height: 312rpx;
- margin: 24rpx auto 0;
- }
- .imgs {
- width: 100%;
- height: 100%;
- }
- .btn {
- width: 420rpx;
- height: 80rpx;
- border-radius: 40rpx;
- margin: 40rpx auto 60rpx;
- background: linear-gradient(90deg, #ff7931 0%, var(--view-theme) 100%);
- text-align: center;
- font-weight: 500;
- font-size: 28rpx;
- line-height: 80rpx;
- color: #ffffff;
- }
- .close {
- position: absolute;
- bottom: -108rpx;
- left: 50%;
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- transform: translateX(-50%);
- .iconfont {
- font-size: 40rpx;
- color: #cccccc;
- }
- }
- }
- .mask {
- z-index: 9999;
- }
- }
- .official-account {
- position: absolute;
- z-index: 99999;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- opacity: 0;
- }
- </style>
|