123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- <template>
- <view class="specs">
- <!-- 规格 -->
- <view class="specs_1" v-if="popupShow=='1'">
- 111
- </view>
- <view class="specs_2" v-else-if="popupShow=='2'">
- 222
- </view>
- <view class="specs_3" v-else>
- 333
- </view>
- </view>
- <!-- <view class="info_3" v-else-if="popupShow=='2'">
- <scroll-view scroll-y="true" class="scroll-view">
- <view class="list" v-for="(item,index) in info.act" :key="index">
- <view class="list_1" @tap="toAct(item)">
- <view class="title_1">
- <view class="l">
- <text>{{item.tag||'暂无'}}</text>{{item.act_time.title}}
- </view>
- <view class="r">
- <text class="iconfont icon-jiantouyou"></text>
- </view>
- </view>
- <view class="title_2">
- <view class="text" v-if="item.type=='5'||item.type=='6'">{{item.text}}</view>
- <view class="time">{{item.config.time_start}}-{{item.config.time_end}}</view>
- </view>
- <view class="title_2" v-if="item.type=='2'">
- <view class="specList" v-for="(tag,indexx) in item.list" :key="indexx">
- <view class="name">规格:{{tag.spec_name}}</view>
- <view class="giftList" v-for="(tags,indexs) in tag.gift" :key="indexs"
- @tap.stop="tags.type=='0' && getDetail(tags)">
- <view class="left">
- <view class="goods">{{tags.goods_name}}{{tags.spec_name}}</view>
- <view class="goods">{{tags.desc}}</view>
- <view class="num">×{{tags.num}}</view>
- </view>
- <view class="right"><text class="iconfont icon-jiantouyou"></text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- <view class="info_4" v-else>
- <view class="info_4">
- <scroll-view scroll-y="true" class="scroll-view">
- <view class="list-scroll-view">
- <view class="list" v-for="(item,index) in info.sets" :key="index">
- <view class="name"><text class="set">套装</text>{{item.name}}</view>
- <view class="set">
- <view class="set_1" v-for="(tag,indexx) in item.set" :key="indexx"
- @tap="toDeatil(tag)">
- <image class="image" :src="tag.file&&tag.file.length>0?tag.file[0].url:''"
- mode="aspectFit">
- </image>
- <view class="goods textOver">{{tag.goods_name}}</view>
- <view class="spec textOver">{{tag.spec_name}}</view>
- </view>
- </view>
- <view class="bottom">
- <view class="money">
- 共{{item.goods_total||0}}件,套装价:<text>¥{{item.sell_money||0}}</text>
- </view>
- <view class="add">
- <button size="mini" @tap="toSetMarket(item)">加入购物车</button>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view> -->
- <!-- <view class="dialog" v-if="dialog.show==true" @tap="dialogClose">
- <view class="dialog_1" v-if="dialog.type=='1'">
- <swiper class="swiper" circular @change="diaSpecs" :current="is_specs">
- <swiper-item class="list" v-for="(item,index) in info.specs" :key="index">
- <view class="list_1">
- <image class="image"
- :src="item.file&&item.file.length>0?item.file[0].url:info.goods.file[0].url"
- mode="aspectFit"></image>
- </view>
- <view class="name">
- <text>{{item.name}}</text>
- </view>
- </swiper-item>
- </swiper>
- </view>
- </view> -->
- </template>
- <script>
- export default {
- props: {
- goodsInfo: {
- type: Object,
- },
- specsInfo: {
- type: Object,
- },
- btn_type: {
- type: String
- },
- popupShow: {
- type: String
- },
- is_specs: {
- type: Number
- },
- },
- data() {
- return {
- // 商品图片
- goodsfileList: [],
- // 规格图片
- specfileList: [],
- };
- },
- methods: {
- diaView() {
- const that = this;
- that.$emit('diaView')
- },
- toSpecs(item) {
- const that = this;
- that.$emit('diaView', item)
- },
- toCount() {
- const that = this;
- that.$emit('toCount')
- },
- toMarket() {
- const that = this;
- that.$emit('toMarket')
- },
- toBuy() {
- const that = this;
- that.$emit('toBuy')
- },
- toGroup() {
- const that = this;
- that.$emit('toGroup')
- },
- toAct(item) {
- const that = this;
- that.$emit('toAct', item)
- },
- getDetail(item) {
- const that = this;
- that.$emit('getDetail', item)
- },
- toSetMarket(item) {
- const that = this;
- that.$emit('toSetMarket', item)
- },
- },
- watch: {
- specsInfo: {
- deep: true,
- immediate: true,
- handler(val) {
- if (val && val.file.length > 0) this.$set(this, `specfileList`, val.file)
- }
- },
- goodsInfo: {
- deep: true,
- immediate: true,
- handler(val) {
- if (val && val.file.length > 0) this.$set(this, `goodsfileList`, val.file)
- }
- }
- },
- }
- </script>
- <style lang="scss">
- .specs {
- .specs_1 {
- position: relative;
- display: flex;
- flex-direction: column;
- height: 54vh;
- .info_1 {
- position: relative;
- flex-grow: 1;
- .one {
- padding: 2vw;
- .one_1 {
- display: flex;
- margin: 0 0 2vw 0;
- padding: 0 0 2vw 0;
- border-bottom: 0.5vw solid var(--f9Color);
- .l {
- width: 25vw;
- height: 25vw;
- .image {
- width: 100%;
- height: 100%;
- border-radius: 5px;
- }
- }
- .r {
- width: 70vw;
- padding: 0 0 0 2vw;
- .money {
- margin: 0 0 2vw 0;
- .money_2 {
- color: #23B67A;
- font-size: 20px;
- padding: 0 1vw 0 0;
- font-weight: bold;
- text {
- font-size: 14px;
- }
- }
- .money_1 {
- font-size: 20px;
- color: #ff0000;
- padding: 0 2vw 0 0;
- text {
- font-size: 14px;
- }
- }
- .money_1:last-child {
- font-size: 16px;
- color: #858585;
- text-decoration: line-through;
- }
- }
- .other_1 {
- font-size: 15px;
- color: #858585;
- text:last-child {
- color: #000000;
- }
- }
- }
- }
- .one_2 {
- margin: 0 0 2vw 0;
- border-bottom: 0.5vw solid var(--f9Color);
- .one_2_1 {
- font-size: 14px;
- margin: 0 0 2vw 0;
- }
- .one_2_2 {
- display: flex;
- flex-wrap: wrap;
- .list {
- background-color: #F5F5F5;
- margin: 0 2vw 2vw 0;
- padding: 0.5vw 1vw;
- border-radius: 5px;
- text {
- font-size: 14px;
- color: #000;
- }
- }
- .huilist {
- background-color: #DCDCDC;
- text {
- color: #858585;
- }
- }
- .redlist {
- background-color: #ff0000;
- text {
- color: #ffffff;
- }
- }
- .huiilist {
- background-color: #808080;
- text {
- color: #cccccc;
- }
- }
- }
- }
- .one_3 {
- display: flex;
- .one_3_1 {
- margin: 0 2vw 0 0;
- text {
- font-size: 14px;
- color: #858585;
- }
- .limit {
- color: #ff0000;
- padding: 0 0 0 2vw;
- }
- }
- }
- }
- }
- .info_2 {
- display: flex;
- text-align: center;
- justify-content: space-between;
- .btns {
- width: 50vw;
- }
- .btn {
- width: 100vw;
- }
- button {
- width: 100%;
- border-radius: 0;
- background-color: var(--fFB1Color);
- color: #fff;
- border: 1px solid #f1f1f1;
- }
- .btncolor {
- background: #f1f1f1;
- color: #858585;
- }
- }
- }
- }
- </style>
|