123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941 |
- <template>
- <view class="group-con" :style="viewColor">
- <view class="header acea-row row-between-wrapper">
- <view class="pictrue"><image :src="storeCombination.image" /></view>
- <view class="text">
- <view class="line1" v-text="storeCombination.store_name"></view>
- <view class="money">
- ¥
- <text class="num" v-text="storeCombination.price"></text>
- <text class="team sColor" v-text="(combinationData.buying_count_num ? combinationData.buying_count_num : '') + '人拼'"></text>
- </view>
- </view>
- <view v-if="pinkBool === -1" class="iconfont icon-pintuanshibai"></view>
- <view v-else-if="pinkBool === 10" class="iconfont icon-pintuanchenggong t-color"></view>
- </view>
- <view class="wrapper">
- <view class="title acea-row row-center-wrapper" v-if="pinkBool === 0">
- <view class="line"></view>
- <view class="name acea-row row-center-wrapper">
- 剩余
- <CountDown :justifyLeft="justifyLeft" :is-day="false" :tip-text="' '" :day-text="' '" :hour-text="' : '" :minute-text="' : '" :second-text="' '"
- :datatime="combinationData.end_time"></CountDown>
- 结束
- </view>
- <view class="line"></view>
- </view>
- <view class="tips t-color" v-if="pinkBool === 10">恭喜您拼团成功</view>
- <view class="tips t-color" v-else-if="pinkBool === -1">还差{{ count }}人,拼团失败</view>
- <view class="tips t-color" v-else-if="pinkBool === 0">拼团中,还差{{ count }}人拼团成功</view>
- <view class="list acea-row row-middle" :class="iShidden ? 'on' : 'result'">
- <view class="acea-row row-middle" v-if="pinkAll.length > 0">
- <view class="pictrue" v-for="(item, index) in pinkAll" :key="index"><image :src="item.avatar ? item.avatar : '/static/images/f.png'" /></view>
- </view>
- <view v-if="(pinkBool === 0 || pinkBool === -1)" class="pictrue" v-for="index in count" :key="index"><image class="img-none" src="../static/images/vacancy.png" /></view>
- </view>
- <view v-if="count > 9" class="lookAll acea-row row-center-wrapper" @click="lookAll">
- {{ iShidden ? '收起' : '查看全部' }}
- <text class="iconfont" :class="iShidden ? 'icon-xiangshang' : 'icon-xiangxia'"></text>
- </view>
- <view v-if="userBool !== 0 && pinkBool === 0">
- <view class="teamBnt" @click="listenerActionSheet">邀请好友参团</view>
- </view>
- <view class="teamBnt" v-else-if="userBool === 0 && pinkBool === 0 && count > 0" @click="pay">我要参团</view>
- <view class="teamBnt" v-if="pinkBool === 10 || pinkBool === -1" @click="goDetail(combinationData.product_group_id)">再次开团</view>
- <view class="cancel" @click="getCombinationRemove" v-if="pinkBool === 0 && userBool !== 0">
- <text class="iconfont icon-guanbi3"></text>
- 取消开团
- </view>
- <view class="lookOrder" v-if="pinkBool === 10" @click="goOrder">
- 查看订单信息
- <text class="iconfont icon-xiangyou"></text>
- </view>
- </view>
- <view class="group-recommend">
- <view class="title acea-row row-between-wrapper">
- <view>大家都在拼</view>
- <view class="more" @click="goList">
- 更多拼团
- <text class="iconfont icon-jiantou"></text>
- </view>
- </view>
- <view class="list acea-row row-middle">
- <view class="item" v-for="(item, index) in storeCombinationHost" :key="index" @click="goDetail(item.product_group_id)">
- <view class="pictrue">
- <image :src="item.product.image" />
- <view class="team" v-text="item.buying_count_num + '人团'"></view>
- </view>
- <view class="name line1" v-text="item.product.store_name"></view>
- <view class="money" v-text="'¥' + item.price"></view>
- </view>
- </view>
- </view>
- <product-window :attr="attr" :limitNum="1" :iSbnt="1" @myevent="onMyEvent" @ChangeAttr="ChangeAttr" @ChangeCartNum="ChangeCartNum"
- @iptCartNum="iptCartNum" @attrVal="attrVal" @goCat="goPay"></product-window>
- <!-- 分享按钮 -->
- <view class="generate-posters acea-row row-middle" :class="posters ? 'on' : ''">
- <!-- #ifndef MP -->
- <button class="item" :class="weixinStatus ? 'item3' : ''" hover-class='none' v-if="weixinStatus === true" @click="H5ShareBox = true">
- <!-- <button class="item" hover-class='none' v-if="weixinStatus === true" @click="setShareInfoStatus"> -->
- <view class="iconfont icon-weixin3"></view>
- <view class="">发送给朋友</view>
- </button>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <button class="item" :class="weixinStatus ? 'item3' : ''" open-type="share" hover-class='none' @click="goFriend">
- <view class="iconfont icon-weixin3"></view>
- <view class="">发送给朋友</view>
- </button>
- <!-- #endif -->
- <button class="item" :class="weixinStatus ? 'item3' : ''" hover-class='none' @tap="goPoster">
- <view class="iconfont icon-haibao"></view>
- <view class="">生成海报</view>
- </button>
- <button class="item" :class="weixinStatus ? 'item3' : ''" hover-class='none' @click="copyPwd">
- <view class="iconfont icon-fuzhikouling1"></view>
- <view>生成口令</view>
- </button>
- </view>
- <view class="mask" v-if="posters" @click="listenerActionClose"></view>
- <!--口令复制结果-->
- <copyPassword :isCopy='isCopy' :copyUrl='copyUrl' @close="closeCopy"></copyPassword>
- <!-- 发送给朋友图片 -->
- <view class="share-box" v-if="H5ShareBox">
- <image :src="`${domain}/static/images/share-info.png`" @click="H5ShareBox = false"></image>
- </view>
- <!-- <Product-window v-on:changeFun="changeFun" :attr="attr" :limitNum='1' :iSbnt='1'></Product-window> -->
- <home></home>
- <canvasPoster v-if="posterCompenents" :posterStatus.sync="posterStatus" :picData="picData"></canvasPoster>
- </view>
- </template>
- <script>
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import CountDown from '@/components/countDown';
- import ProductWindow from '@/components/productWindow';
- import copyPassword from '@/components/copyPassword';
- import canvasPoster from '../combination_poster/index.vue'
- import { mapGetters } from 'vuex';
- import {
- getCombinationPink,
- postCombinationRemove,
- getCombinationList
- } from '@/api/activity';
- import {
- postCartAdd,
- getProductCode,
- copyPasswordApi
- } from '@/api/store';
- import { toLogin } from '@/libs/login.js';
- import home from '@/components/home';
- import { HTTP_REQUEST_URL } from '@/config/app';
- const NAME = 'GroupRule';
- const app = getApp();
- export default {
- name: NAME,
- components: {
- CountDown,
- ProductWindow,
- home,
- canvasPoster,
- copyPassword,
- },
- props: {},
- data: function() {
- return {
- domain: HTTP_REQUEST_URL,
- currentPinkOrder: '', //当前拼团订单
- isOk: 0, //判断拼团是否完成
- pinkBool: 0, //判断拼团是否成功|0=失败,1=成功
- userBool: 0, //判断当前用户是否在团内|0=未在,1=在
- pinkAll: [], //团员
- storeCombination: [], //拼团产品
- storeCombinationHost: [], //拼团推荐
- pinkId: 0,
- count: 0, //拼团剩余人数
- iShidden: false,
- isOpen: false, //是否打开属性组件
- attr: {
- cartAttr: false,
- productSelect: {
- image: '',
- store_name: '',
- price: '',
- quota: 0,
- unique: '',
- cart_num: 1,
- quota_show: 0,
- product_stock: 0,
- num: 0
- },
- productAttr: []
- },
- cart_num: '',
- userInfo: {},
- combinationData: {},
- posters: false,
- weixinStatus: false,
- H5ShareBox: false, //公众号分享图片
- attrTxt: '请选择', //属性页面提示
- attrValue: '', //已选属性
- posterStatus: false,
- posterCompenents: false,
- currSpid: "",
- picData: {
- bagPic: '',
- goodsPic: '',
- codePic: "",
- title: "",
- label: "",
- msg: "",
- price: '',
- },
- isCopy: false,
- copyUrl: '',
- justifyLeft: ''
- };
- },
- computed: mapGetters(['isLogin', 'uid', 'viewColor']),
- watch: {
- isLogin: {
- handler: function(newV, oldV) {
- if (newV) {
- this.getCombinationPink();
- }
- },
- deep: true
- },
- },
- onLoad(options) {
- var that = this;
- that.justifyLeft = that.viewColor;
- if(options.id)that.pinkId = options.id;
- //扫码携带参数处理
- // #ifdef MP
- if (options.scene) {
- let value = this.$util.getUrlParams(decodeURIComponent(options.scene));
- if (value.id) this.pinkId = value.id;
- //记录推广人uid
- if (value.spid) {
- app.globalData.spid = value.spid;
- that.currSpid = value.spid
- }
- }
- // #endif
- if (that.isLogin == false) {
- toLogin()
- } else {
- this.getCombinationPink();
- }
- },
- mounted: function() {
- this.getCombinationProductList();
- this.getPosterCode()
- },
- //#ifdef MP
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function() {
- let that = this;
- let pathUrl = '/pages/activity/combination_status/index?id=' + this.pinkId;
- return {
- title: '您的好友' + that.pinkAll[0].nickname + '邀请您参团' + that.storeCombination.store_name,
- path: pathUrl,
- imageUrl: that.storeCombination.image || ''
- };
- },
- onShareTimeline: function() {
- let that = this;
- console.log(app.globalData.openPages)
- return {
- title: '您的好友' + that.pinkAll[0].nickname + '邀请您参团' + that.storeCombination.store_name,
- query: {
- id: that.pinkId,
- spid: that.uid
- },
- imageUrl: that.storeCombination.image || ''
- }
- },
- //#endif
- methods: {
- /**
- * 分享打开
- *
- */
- listenerActionSheet: function() {
- if (this.isLogin == false) {
- toLogin()
- } else {
- // #ifdef H5
- if (this.$wechat.isWeixin() === true) {
- this.weixinStatus = true;
- }
- // #endif
- this.posters = !this.posters;
- }
- },
- // 分享关闭
- listenerActionClose: function() {
- this.posters = false;
- },
- // 小程序关闭分享弹窗;
- goFriend: function() {
- this.posters = false;
- // this.H5ShareBox = true
- },
- /**
- * 购物车手动填写
- *
- */
- iptCartNum: function(e) {
- this.$set(this.attr.productSelect, 'cart_num', e);
- this.$set(this, 'cart_num', e);
- },
- attrVal(val) {
- this.attr.productAttr[val.indexw].index = this.attr.productAttr[val.indexw].attr_values[val.indexn];
- },
- onMyEvent: function() {
- this.$set(this.attr, 'cartAttr', false);
- this.$set(this, 'isOpen', false);
- },
- //选择属性;
- ChangeAttr: function(res) {
- this.$set(this, 'cart_num', 1);
- let productSelect = this.productValue[res];
- if (productSelect) {
- this.$set(this.attr.productSelect, 'image', productSelect.image);
- this.$set(this.attr.productSelect, 'price', productSelect.price);
- this.$set(this.attr.productSelect, 'stock', productSelect.stock);
- this.$set(this.attr.productSelect, 'quota', productSelect.quota);
- this.$set(this.attr.productSelect, 'unique', productSelect.unique);
- this.$set(this.attr.productSelect, 'cart_num', 1);
- this.$set(this.attr.productSelect, 'product_stock', productSelect.stock);
- this.$set(this.attr.productSelect, 'quota_show', productSelect.stock);
- this.$set(this, 'attrValue', res);
- this.$set(this, 'attrTxt', '已选择');
- } else {
- this.$set(this.attr.productSelect, 'image', this.storeCombination.image);
- this.$set(this.attr.productSelect, 'price', this.storeCombination.price);
- this.$set(this.attr.productSelect, 'quota', 0);
- this.$set(this.attr.productSelect, 'unique', '');
- this.$set(this.attr.productSelect, 'cart_num', 0);
- this.$set(this.attr.productSelect, 'quota_show', 0);
- this.$set(this.attr.productSelect, 'stock', 0);
- this.$set(this.attr.productSelect, 'product_stock', 0);
- this.$set(this, 'attrValue', '');
- this.$set(this, 'attrTxt', '请选择');
- }
- },
- ChangeCartNum: function(changeValue) {
- //changeValue:是否 加|减
- //获取当前变动属性
- let productSelect = this.productValue[this.attrValue];
- //如果没有属性,赋值给商品默认库存
- if (productSelect === undefined && !this.attr.productAttr.length)
- productSelect = this.attr.productSelect;
- //无属性值即库存为0;不存在加减;
- if (productSelect === undefined) return;
- let stock = productSelect.stock || 0;
- let num = this.attr.productSelect;
- if (changeValue) {
- num.cart_num++;
- if (num.cart_num > stock) {
- this.$set(this.attr.productSelect, "cart_num", stock);
- this.$set(this, "cart_num", stock);
- }
- } else {
- num.cart_num--;
- if (num.cart_num < 1) {
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this, "cart_num", 1);
- }
- }
- },
- //默认选中属性;
- DefaultSelect() {
- let productAttr = this.attr.productAttr,
- value = [];
- for (var key in this.productValue) {
- if (this.productValue[key].stock > 0) {
- value = this.attr.productAttr.length ? key.split(',') : [];
- break;
- }
- }
- for (let i = 0; i < productAttr.length; i++) {
- this.$set(productAttr[i], 'index', value[i]);
- }
- //sort();排序函数:数字-英文-汉字;
- let productSelect = this.productValue[value.join(',')];
- if (productSelect && productAttr.length) {
- this.$set(this.attr.productSelect, 'store_name', this.storeCombination.store_name);
- this.$set(this.attr.productSelect, 'image', productSelect.image);
- this.$set(this.attr.productSelect, 'price', productSelect.price);
- this.$set(this.attr.productSelect, 'stock', productSelect.stock);
- this.$set(this.attr.productSelect, 'unique', productSelect.unique);
- this.$set(this.attr.productSelect, 'cart_num', 1);
- this.$set(this.attr.productSelect, 'product_stock', productSelect.stock);
- this.$set(this.attr.productSelect, 'quota_show', productSelect.stock);
- this.$set(this, 'attrValue', value.join(','));
- this.attrValue = value.join(',');
- this.$set(this, 'attrTxt', '已选择');
- } else if (!productSelect && productAttr.length) {
- this.$set(this.attr.productSelect, 'store_name', this.storeCombination.store_name);
- this.$set(this.attr.productSelect, 'image', this.storeCombination.image);
- this.$set(this.attr.productSelect, 'price', this.storeCombination.price);
- this.$set(this.attr.productSelect, 'stock', 0);
- this.$set(this.attr.productSelect, 'unique', '');
- this.$set(this.attr.productSelect, 'cart_num', 0);
- this.$set(this.attr.productSelect, 'product_stock', 0);
- this.$set(this.attr.productSelect, 'quota_show', 0);
- this.$set(this, 'attrValue', '');
- this.$set(this, 'attrTxt', '请选择');
- } else if (!productSelect && !productAttr.length) {
- this.$set(this.attr.productSelect, 'store_name', this.storeCombination.store_name);
- this.$set(this.attr.productSelect, 'image', this.storeCombination.image);
- this.$set(this.attr.productSelect, 'price', this.storeCombination.price);
- this.$set(this.attr.productSelect, 'stock', 0);
- this.$set(this.attr.productSelect, 'unique', this.storeCombination.unique || '');
- this.$set(this.attr.productSelect, 'cart_num', 1);
- this.$set(this.attr.productSelect, 'quota_show', 0);
- this.$set(this.attr.productSelect, 'product_stock', 0);
- this.$set(this, 'attrValue', '');
- this.$set(this, 'attrTxt', '请选择');
- } else if (productSelect && !productAttr.length) {
- this.$set(
- this.attr.productSelect,
- "store_name",
- this.storeCombination.store_name
- );
- this.$set(this.attr.productSelect, "image", productSelect.image);
- this.$set(this.attr.productSelect, "price", productSelect.price);
- this.$set(this.attr.productSelect, "stock", productSelect.stock);
- this.$set(this.attr.productSelect, "unique", productSelect.unique);
- this.$set(this.attr.productSelect, 'quota_show', productSelect.stock);
- this.$set(this, "attrValue", value.join(","));
- this.$set(this, "attrTxt", "已选择");
- if (productSelect.stock == 0) {
- this.$set(this.attr.productSelect, "cart_num", 0);
- } else {
- this.$set(this.attr.productSelect, "cart_num", 1);
- }
- }
- },
- setProductSelect: function() {
- var that = this;
- var attr = that.attr;
- attr.productSelect.image = that.storeCombination.image;
- attr.productSelect.store_name = that.storeCombination.store_name;
- attr.productSelect.price = that.storeCombination.price;
- attr.productSelect.quota = 0;
- attr.productSelect.quota_show = that.storeCombination.stock;
- attr.productSelect.stock = that.storeCombination.stock;
- attr.productSelect.product_stock = that.storeCombination.stock;
- attr.cartAttr = false;
- that.$set(that, 'attr', attr);
- },
- pay: function() {
- var that = this;
- that.attr.cartAttr = true;
- that.isOpen = true;
- },
- goPay() {
- var that = this;
- var data = {
- product_id: that.combinationData.product_group_id,
- product_attr_unique: that.attr.productSelect !== undefined ? that.attr.productSelect.unique : "",
- cart_num: that.attr.productSelect.cart_num,
- product_type: 4,
- is_new: 1,
- group_buying_id: that.combinationData.group_buying_id
- };
- postCartAdd(data)
- .then(res => {
- uni.navigateTo({
- url: '/pages/users/order_confirm/index?new=1&cartId=' + res.data.cart_id
- });
- })
- .catch(res => {
- that.$util.Tips({
- title: res
- });
- });
- },
- goPoster: function() {
- var that = this;
- that.posters = false;
- this.posterStatus = true
- },
- goOrder: function() {
- var that = this;
- uni.navigateTo({
- url: '/pages/order_details/index?order_id=' + that.currentPinkOrder
- });
- },
- //拼团列表
- goList: function() {
- uni.navigateTo({
- url: '/pages/activity/combination/index'
- });
- },
- //拼团详情
- goDetail: function(id) {
- this.pinkId = id;
- uni.navigateTo({
- url: '/pages/activity/combination_details/index?id=' + id
- });
- },
- getPosterCode() {
- let type
- // #ifndef MP
- type = 'wechat'
- // #endif
- // #ifdef MP
- type = 'routine'
- // #endif
- getProductCode(this.pinkId, {
- type,
- product_type: 40
- }).then(res => {
- this.picData.codePic = res.data.url
- }).catch(err => {
- this.$util.Tips({
- title: err
- });
- })
- },
- //复制口令
- copyPwd(){
- let that = this;
- copyPasswordApi({
- id: that.pinkId,
- product_type: 40
- }).then(async res => {
- that.copyUrl = res.data.str;
- that.posters = false
- that.isCopy = true;
- })
- },
- closeCopy(){
- this.isCopy = false
- },
- //拼团信息
- getCombinationPink: function() {
- var that = this;
- uni.showLoading({
- title: '加载中',
- mask: true
- });
- getCombinationPink(that.pinkId)
- .then(res => {
- uni.hideLoading();
- that.$set(that, 'combinationData', res.data);
- that.$set(that, 'storeCombination', res.data.product);
- that.$set(that, 'pinkAll', res.data.groupUser);
- that.$set(that, 'count', res.data.buying_count_num - res.data.yet_buying_num);
- that.$set(that, 'userBool', res.data.create_status);
- that.$set(that, 'pinkBool', res.data.status);
- that.$set(that, 'currentPinkOrder', res.data.self ? res.data.self.order_id : '');
- that.attr.productAttr = res.data.product.attr;
- that.productValue = res.data.product.sku;
- that.$set(that.picData, 'goodsPic', res.data.product.image);
- that.$set(that.picData, 'title', res.data.product.store_name.length > 28 ? res.data.product.store_name.slice(0,
- 28) + '...' : res.data.product.store_name);
- that.$set(that.picData, 'label', res.data.buying_count_num + "人团");
- that.$set(that.picData, 'price', res.data.product.price);
- that.$set(that.picData, 'msg', '市场价:¥ ' + res.data.product.ot_price + " 还差 " +
- that.count + " 人 拼团成功");
- this.posterCompenents = true
- //#ifdef H5
- that.setOpenShare();
- //#endif
- that.setProductSelect();
- that.DefaultSelect();
- })
- .catch(err => {
- this.$util.Tips({
- title: err
- });
- uni.redirectTo({
- success() {},
- fail() {
- uni.navigateTo({
- url: '/pages/index/index',
- })
- }
- })
- });
- },
- //拼团列表
- getCombinationProductList: function() {
- var that = this;
- var data = {
- page: 1,
- };
- getCombinationList(data)
- .then(res => {
- var storeCombinationHost = res.data.list;
- that.storeCombinationHost = that.storeCombinationHost.concat(storeCombinationHost)
- })
- .catch(res => {
- that.$util.Tips({
- title: res
- });
- });
- },
- //#ifdef H5
- setOpenShare() {
- let that = this;
- let configTimeline = {
- title: '您的好友' + that.pinkAll[0].nickname + '邀请您参团' + that.storeCombination.store_name,
- desc: that.storeCombination.store_name,
- link: window.location.protocol + '//' + window.location.host +
- '/pages/activity/combination_status/index?id=' + that.pinkId,
- imgUrl: that.storeCombination.image
- };
- if (this.$wechat.isWeixin()) {
- this.$wechat
- .wechatEvevt(['updateAppMessageShareData', 'updateTimelineShareData', 'onMenuShareAppMessage',
- 'onMenuShareTimeline'
- ], configTimeline)
- .then(res => {
- console.log(res);
- })
- .catch(res => {
- if (res.is_ready) {
- res.wx.updateAppMessageShareData(configTimeline);
- res.wx.updateTimelineShareData(configTimeline);
- res.wx.onMenuShareAppMessage(configTimeline);
- res.wx.onMenuShareTimeline(configTimeline);
- }
- });
- }
- },
- //#endif
- //拼团取消
- getCombinationRemove: function() {
- var that = this;
- uni.showModal({
- title: '提示',
- content: '确定取消拼团?',
- success: function (res) {
- if (res.confirm) {
- postCombinationRemove({
- group_buying_id: that.pinkId
- })
- .then(res => {
- that.$util.Tips({
- title: res.message
- }, {
- tab: 3
- });
- })
- .catch(res => {
- that.$util.Tips({
- title: res.message
- });
- });
- }else if (res.cancel) {
- return that.$util.Tips({
- title: '已取消'
- });
- }
- }
- });
- },
- lookAll: function() {
- this.iShidden = !this.iShidden;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .generate-posters {
- width: 100%;
- height: 170rpx;
- background-color: #fff;
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 301;
- transform: translate3d(0, 100%, 0);
- transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
- border-top: 1rpx solid #eee;
- }
- .generate-posters.on {
- transform: translate3d(0, 0, 0);
- }
- .generate-posters .item {
- /* #ifdef H5 */
- flex: 50%;
- /* #endif */
- /* #ifndef H5 */
- flex: 33.33%;
- /* #endif */
- text-align: center;
- font-size: 30rpx;
- &.item3{
- flex: 33.33%;
- }
- }
- .generate-posters .item .iconfont {
- font-size: 80rpx;
- color: #5eae72;
- }
- .generate-posters .item .iconfont.icon-haibao {
- color: #5391f1;
- }
- .generate-posters .item .iconfont.icon-fuzhikouling1 {
- color: #FBB324;
- }
- /* #ifdef MP */
- .group-con{
- padding-top: 30rpx;
- }
- /* #endif */
- .sColor{
- color: var(--view-theme);
- border: 1rpx solid var(--view-theme);
- }
- /*开团*/
- .group-con .header {
- width: 100%;
- height: 186rpx;
- background-color: #fff;
- border-top: 1px solid #f5f5f5;
- padding: 0 30rpx;
- position: relative;
- }
- .group-con .header .iconfont {
- font-size: 100rpx;
- position: absolute;
- color: #ccc;
- right: 33rpx;
- bottom: 20rpx;
- }
- .group-con .header .pictrue {
- width: 140rpx;
- height: 140rpx;
- }
- .group-con .header .pictrue uni-image,.group-con .header .pictrue image {
- width: 140rpx;
- height: 140rpx;
- border-radius: 6rpx;
- }
- .group-con .header .text {
- width: 540rpx;
- font-size: 30rpx;
- color: #222;
- }
- .group-con .header .text .money {
- font-size: 24rpx;
- font-weight: bold;
- margin-top: 15rpx;
- display: flex;
- align-items: center;
- }
- .group-con .header .text .money .num {
- font-size: 32rpx;
- }
- .group-con .header .text .money .team {
- // padding: 1rpx 10rpx;
- font-weight: normal;
- border-radius: 50rpx;
- font-size: 20rpx;
- vertical-align: 4rpx;
- margin-left: 15rpx;
- display: flex;
- min-width: 86rpx;
- height: 36rpx;
- align-items: center;
- justify-content: center;
- }
- .group-con .wrapper {
- background-color: #fff;
- margin-top: 20rpx;
- padding: 2rpx 0 35rpx 0;
- }
- .group-con .wrapper .title {
- margin-top: 30rpx;
- }
- .group-con .wrapper .title .line {
- width: 136rpx;
- height: 1px;
- background-color: #ddd;
- }
- .group-con .wrapper .title .name {
- margin: 0 45rpx;
- font-size: 28rpx;
- color: #282828;
- }
- .group-con .wrapper .title .name .time {
- margin: 0 14rpx;
- }
- /deep/.group-con .wrapper .styleAll {
- background-color: #ffcfcb;
- text-align: center;
- border-radius: 3rpx;
- font-size: 28rpx;
- font-weight: bold;
- display: inline-block;
- vertical-align: middle;
- background-color: var(--view-minorColor);
- padding: 2rpx 5rpx;
- }
- .gColor{
- background-color: var(--view-theme)!important;
- }
- .t-color{
- color: var(--view-theme)!important;
- }
- .group-con .wrapper .tips {
- font-size: 30rpx;
- font-weight: bold;
- text-align: center;
- margin-top: 30rpx;
- }
- .group-con .wrapper .list {
- padding: 0 30rpx;
- margin-top: 45rpx;
- }
- .group-con .wrapper .list.result {
- max-height: 240rpx;
- overflow: hidden;
- }
- .group-con .wrapper .list.result.on {
- max-height: 2000rpx;
- }
- .group-con .wrapper .list .pictrue {
- width: 94rpx;
- height: 94rpx;
- margin: 0 0 29rpx 35rpx;
- }
- .group-con .wrapper .list .pictrue uni-image,.group-con .wrapper .list .pictrue image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- .group-con .wrapper .list .img-none {
- border: none;
- width: 140rpx;
- height: 140rpx;
- }
- .group-con .wrapper .lookAll {
- font-size: 24rpx;
- color: #282828;
- padding-top: 10rpx;
- }
- .group-con .wrapper .lookAll .iconfont {
- font-size: 25rpx;
- margin: 2rpx 0 0 10rpx;
- }
- .group-con .wrapper .teamBnt {
- font-size: 30rpx;
- width: 620rpx;
- height: 86rpx;
- border-radius: 50rpx;
- text-align: center;
- line-height: 86rpx;
- color: #fff;
- margin: 21rpx auto 0 auto;
- background-color: var(--view-theme);
- }
- .group-con .wrapper .cancel,
- .group-con .wrapper .lookOrder {
- text-align: center;
- font-size: 24rpx;
- color: #282828;
- padding-top: 30rpx;
- }
- .group-con .wrapper .cancel .iconfont {
- font-size: 35rpx;
- color: #2c2c2c;
- vertical-align: -4rpx;
- margin-right: 9rpx;
- }
- .group-con .wrapper .lookOrder .iconfont {
- font-size: 25rpx;
- color: #2c2c2c;
- margin-left: 10rpx;
- }
- .group-con .group-recommend {
- background-color: #fff;
- margin-top: 25rpx;
- }
- .group-con .group-recommend .title {
- padding-right: 30rpx;
- margin-left: 30rpx;
- height: 85rpx;
- border-bottom: 1px solid #eee;
- font-size: 28rpx;
- color: #282828;
- }
- .group-con .group-recommend .title .more {
- color: #808080;
- }
- .group-con .group-recommend .title .more .iconfont {
- margin-left: 13rpx;
- font-size: 28rpx;
- }
- .group-con .group-recommend .list {
- margin-top: 30rpx;
- }
- .group-con .group-recommend .list .item {
- width: 210rpx;
- margin: 0 0 25rpx 30rpx;
- }
- .group-con .group-recommend .list .item .pictrue {
- width: 100%;
- height: 210rpx;
- position: relative;
- }
- .group-con .group-recommend .list .item .pictrue uni-image,.group-con .group-recommend .list .item .pictrue image {
- width: 210rpx;
- height: 210rpx;
- border-radius: 10rpx;
- }
- .group-con .group-recommend .list .item .pictrue .team {
- position: absolute;
- top: 28rpx;
- left: -5rpx;
- min-width: 100rpx;
- height: 36rpx;
- line-height: 36rpx;
- text-align: center;
- border-radius: 0 18rpx 18rpx 0;
- font-size: 20rpx;
- color: #fff;
- background-image: linear-gradient(to right, var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
- }
- .group-con .group-recommend .list .item .name {
- font-size: 28rpx;
- color: #333;
- margin-top: 0.18rem;
- }
- .group-con .group-recommend .list .item .money {
- font-weight: bold;
- font-size: 28rpx;
- color: var(--view-priceColor);
- }
- .share-box {
- z-index: 1000;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- image {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|