| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <template>
- <view class="item-cmd_bx">
- <view class="img_bx">
- <app-img :src="info.cover" alt="商品图" mode="aspectFit" :height="160" />
- </view>
- <view class="cmd-info_bx">
- <view class="tit">{{ info.itemName || "" }}</view>
- <view class="kc">库存 {{ info.stock }}</view>
- <view class="num-open_bx">
- <view class="price">¥{{ showPrice }}</view>
- <view class="open-bx" v-if="type == COMMODITY_TYPE.COMMON">
- <i
- class="iconfont iconjian"
- @click="delEvent"
- v-if="bigCount > 0 || smallCount > 0"
- ></i>
- <text class="num" @click="customNum">
- <text v-if="bigCount > 0 || smallCount > 0">{{ `${bigCount}` }}</text>
- <text v-if="smallCount > 0">/</text>
- <text v-if="smallCount > 0">{{ `${smallCount}` }}</text>
- </text>
- <i class="iconfont iconzeng" @click="addEvent"></i>
- </view>
- <view class="open-bx" v-else-if="type == COMMODITY_TYPE.CHANGE">
- <input class="change-input" v-model="changeAutoPrice" type="digit" placeholder="自动调价" selection-start="0" selection-end="1" />
- <i :class="isShowSucceed?'position iconfont iconjihuo':'position'" ></i>
- <view class="btn-box" @click="changePriceEvent">确定</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { COMMODITY_TYPE } from "@/utils/declare";
- import AppImg from "@/components/app-img";
- import { autoPriceByIdApi, changePriceByIdApi } from '@/api/product/index'
- import productMins from "@/mixins/productContrapose";
- export default {
- name: "Commodity",
- components: {
- AppImg
- },
- mixins: [productMins],
- props: {
- info: {
- required: true,
- type: Object,
- default() {
- return {};
- }
- },
- type: {
- type: String,
- default: COMMODITY_TYPE.COMMON
- },
- bigCount: {
- type: Number,
- default: 0
- },
- smallCount: {
- type: Number,
- default: 0
- },
- autoPrice: {}
- },
- data() {
- return {
- COMMODITY_TYPE,
- isShowSucceed:false,
- changeAutoPrice:'',
- showPrice:0.00,
- ifFocus:false
- };
- },
- created() {},
- mounted() {
- if(this.info.priceLabel == 2){
- this.changeAutoPrice = this.info.price
- }
- this.showPrice = this.info.price
- },
- methods: {
- addEvent() {
- this.$emit("add", this.info);
- },
- delEvent() {
- this.$emit("del", this.info);
- },
- async changePriceEvent(event) {
- let self = this
- await changePriceByIdApi({
- productId: this.info.id,
- price: this.changeAutoPrice
- }).then(res => {
- if(res.code == 1){
- this.showPrice = res.data.price
- this.isShowSucceed = true
- setTimeout(()=>{
- this.isShowSucceed = false
- },1000)
- }else{
- self.$msg(res.msg)
- }
- })
- },
- customNum() {
- this.$emit("customNum", {
- ...this.info,
- bigCount: this.bigCount,
- smallCount: this.smallCount
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .item-cmd_bx {
- position: relative;
- margin-bottom: 20px;
- .img_bx {
- height: 160px;
- width: 160px;
- position: absolute;
- left: 0px;
- top: 0px;
- }
- .cmd-info_bx {
- padding-left: 177px;
- & .tit {
- font-size: 28px;
- font-weight: 400;
- color: #333333;
- padding-top: 10px;
- }
- & .kc {
- color: #999999;
- font-size: 24px;
- padding: 8px 0 24px;
- }
- & .num-open_bx {
- display: flex;
- align-items: center;
- & .price {
- font-size: 28px;
- color: #ff2842;
- flex: 1;
- }
- & .open-bx {
- display: flex;
- align-items: center;
- & .iconfont {
- //margin-left: 15rpx;
- color: #3385ff;
- font-size: 42px;
- }
- .position{
- display: block;
- width: 70rpx;
- text-align: center;
- }
- .iconcachu {
- margin: 0 6px 0 20px;
- color: #ccc;
- &.edit {
- color: #3385ff;
- }
- }
- & > .num {
- display: inline-block;
- width: 120rpx;
- height:45rpx;
- text-align:center;
- margin: 0 8px;
- color: #868686;
- border-radius: 22px;
- background-color: #f5f5f5;
- padding: 3px 0;
- font-size: 30rpx;
- }
- .change-input {
- width: 164px;
- height: 60px;
- line-height: 60px;
- text-align: center;
- background: #ffffff;
- border: 1px solid #dddddd;
- border-radius: 4px;
- font-size: 25px;
- }
- .btn-box{
- width: 100rpx;
- height: 60rpx;
- line-height: 60rpx;
- color: #ffffff;
- background: #3385ff;
- text-align: center;
- border-radius: 10rpx;
- }
- }
- }
- }
- }
- </style>
|