| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- <template>
- <view class="item-cmd_bx" @click="customNum">
- <!-- <view class="img_bx" @click="addEvents">-->
- <!-- <app-img :src="info.cover" alt="商品图" mode="aspectFit" :height="160" />-->
- <!-- </view>-->
- <view class="img_bx" >
- <image :src="info.cover"></image>
- </view>
- <view class="cmd-info_bx">
- <view class="tit" >{{ info.itemName || "" }}</view>
- <view class="kc num-open_bx flex-end" v-if="type == COMMODITY_TYPE.COMMON">
- <view class="price" v-if="!offPrice">¥{{ info.price }}</view>
- <view class="price" v-else></view>
- <view style="text-align: right" >
- <view class="open-bx" >
- <i class="iconfont iconjian" :class="delAnimationData?'animation':''" @click.stop="delEvent" v-if="bigCount > 0 || smallCount > 0"></i>
- <text class="num" @click.stop="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" :class="addAnimationData?'animation':''" @click.stop="addEvents"></i>
- </view>
- <text style="padding-right: 55rpx">还剩 {{ info.stock }}</text>
- </view>
- </view>
- <view class="num-open_bx flex-space" v-if="type == COMMODITY_TYPE.CHANGE">
- <view class="price" v-if="!offPrice">¥{{ showPrice }}</view>
- <view class="price" v-else></view>
- <view class="open-bx" style="padding-bottom: 40rpx" >
- <allSelectInput :inputType="'digit'" :isActive="isAloneAllActive" :isFocus="isAloneAllFocus" :value="changeAutoPrice" :placeholder="'自动调价'"
- @deleteInputVal="deleteInputVal" @initAllInput="initAloneAllInput" @moveAllInput="moveAllInput">
- </allSelectInput>
- <!--<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";
- import animationMins from "@/mixins/animation";
- import allSelectInput from "@/components/module/allSelectInput";
- import allSelectInputMins from "@/mixins/allSelectInput";
- //报错暂时注释
- //import easyLoadimage from '@/components/easy-loadimage/easy-loadimage.vue'
- export default {
- name: "Commodity",
- components: {
- AppImg,allSelectInput
- //easyLoadimage
- },
- mixins: [animationMins,allSelectInputMins],
- props: {
- info: {
- required: true,
- type: Object,
- default() {
- return {};
- }
- },
- type: {
- type: String,
- default: COMMODITY_TYPE.COMMON
- },
- bigCount: {
- type: Number,
- default: 0
- },
- scrollTop: {
- type: Number,
- default: 0
- },
- smallCount: {
- type: Number,
- default: 0
- },
- autoPrice: {},
- offPrice: {
- type: Boolean,
- default: false
- },
- offVerifyRepertory: {
- type: Boolean,
- default: false
- },
- },
- data() {
- return {
- COMMODITY_TYPE,
- // isAllActive: false,
- // isAllFocus: false,
- isAlterMoney:false,
- isAloneAllActive: false,
- isAloneAllFocus: false,
- 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: {
- //input点击删除按键
- deleteInputVal(){
- this.isAloneAllActive=false;
- this.changeAutoPrice = '';
- },
- //离开input
- moveAllInput(e){
- this.isAloneAllActive=false;
- this.isAloneAllFocus=false;
- // if(e==''){return}
- this.changeAutoPrice = e?e:0;
- if(this.isAlterMoney){
- this.isAlterMoney = false;
- // let self = this
- 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{
- this.$msg(res.msg)
- }
- })
- }
- },
- addEvents() {
- const ratio = Number(this.info.ratio);
- if(this.offVerifyRepertory){
- if (Number(this.bigCount) * ratio + Number(this.smallCount) >Number(this.info.bigNum) * ratio + Number(this.info.smallNum)) {
- this.$msg("库存不足");
- return
- }
- }
- this.animationFun('add');
- // let params = {
- // ...this.info,
- // bigCount: this.bigCount,
- // smallCount: this.smallCount
- // };
- // this.$emit("add", this.info,params);
- this.$emit("add", this.info);
- },
- delEvent() {
- this.animationFun('del');
- console.log(this.info,'this.info')
- this.$emit("del", this.info);
- },
- changePriceEvent(event) {
- this.isFocus = false;
- this.isAlterMoney = true;
- },
- customNum() {
- if(this.info.stock<=0){uni.showToast({title:'库存不足',icon:'none'});return;}
- // if(!this.info.bigCount){
- if(!this.bigCount && !this.smallCount){
- let params = {
- ...this.info,
- bigCount: this.bigCount,
- smallCount: this.smallCount
- };
- this.$emit("addOneEvent", this.info,params);
- }
- 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: 140px;
- width: 140px;
- position: absolute;
- left: 0px;
- top: 0px;
- image{
- width: 100%;
- height: 100%;
- }
- }
- .cmd-info_bx {
- padding-left: 160px;
- padding-bottom: 30rpx;
- & .tit {
- font-size: 32px;
- font-weight: 700;
- color: #333333;
- padding-top: 10px;
- }
- & .kc {
- position: relative;
- color: #999999;
- font-size: 24px;
- .price{
- position: absolute;
- left: 0;
- bottom: 0;
- }
- //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: 25rpx;
- }
- .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>
|