fix: 修复活动过期输入框
This commit is contained in:
parent
111e31ecd6
commit
282c06eced
|
@ -51,9 +51,9 @@
|
||||||
<div class="swiper-pagination"></div>
|
<div class="swiper-pagination"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="ipt-acc" style="position: relative;z-index: 99;" @click="bindAvailable">
|
<div class="ipt-acc" style="position: relative;z-index: 99;">
|
||||||
<h4 class="title" v-if="goodInfo.product_type===2&&goodInfo.card_show==2">{{goodInfo.product_name}}</h4>
|
<h4 class="title" v-if="goodInfo.product_type===2&&goodInfo.card_show==2">{{goodInfo.product_name}}</h4>
|
||||||
<template v-if="goodInfo.product_type===1||goodInfo.product_type===2&&goodInfo.card_show==1">
|
<!-- <template v-if="goodInfo.product_type===1||goodInfo.product_type===2&&goodInfo.card_show==1">
|
||||||
<p v-if="acctype=='tel'"><span>账号:</span><input :type="acctype"
|
<p v-if="acctype=='tel'"><span>账号:</span><input :type="acctype"
|
||||||
onkeyup="this.value=this.value.replace(/\D/g,'')" :disabled="goodsDetail.available!=1"
|
onkeyup="this.value=this.value.replace(/\D/g,'')" :disabled="goodsDetail.available!=1"
|
||||||
onKeypress="return(/[\d]/.test(String.fromCharCode(event.keyCode)))" :maxlength="maxlen" v-model="account"
|
onKeypress="return(/[\d]/.test(String.fromCharCode(event.keyCode)))" :maxlength="maxlen" v-model="account"
|
||||||
|
@ -66,8 +66,44 @@
|
||||||
:disabled="goodsDetail.available!=1" :placeholder="placeholder" @focus="(e)=>focusFn(e)"></p>
|
:disabled="goodsDetail.available!=1" :placeholder="placeholder" @focus="(e)=>focusFn(e)"></p>
|
||||||
<p v-if="acctype!='tel'"><span>再次输入:</span><input :type="acctype" :maxlength="maxlen" v-model="reaccount"
|
<p v-if="acctype!='tel'"><span>再次输入:</span><input :type="acctype" :maxlength="maxlen" v-model="reaccount"
|
||||||
:disabled="goodsDetail.available!=1" placeholder="请再次输入" @focus="(e)=>focusFn(e)"></p>
|
:disabled="goodsDetail.available!=1" placeholder="请再次输入" @focus="(e)=>focusFn(e)"></p>
|
||||||
|
</template> -->
|
||||||
|
|
||||||
|
<div v-if="goodsDetail.available!=1" class="ipt-acc" style="position: relative;z-index: 99;"
|
||||||
|
@click="bindAvailable">
|
||||||
|
<p>
|
||||||
|
<span>账号:</span>
|
||||||
|
<!-- <input type="text" :placeholder="placeholder"> -->
|
||||||
|
<span class="j-input"
|
||||||
|
style="color: #ccc;height:0.32rem;padding-right: 0.1rem;line-height: 0.32rem;display: inline-block;width: 80%;">{{placeholder}}</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<span>再次输入:</span>
|
||||||
|
<!-- <input type="text" :placeholder="placeholder"> -->
|
||||||
|
<span class="j-input"
|
||||||
|
style="color: #ccc;height:0.32rem;padding-right: 0.1rem;line-height: 0.32rem;display: inline-block;width: 80%;">{{placeholder}}</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-else class="ipt-acc" style="position: relative;z-index: 99;">
|
||||||
|
<template v-if="goodInfo.product_type===1||goodInfo.product_type===2&&goodInfo.card_show==1">
|
||||||
|
<p v-if="acctype=='tel'"><span>账号:</span><input :type="acctype"
|
||||||
|
onkeyup="this.value=this.value.replace(/\D/g,'')" :disabled="goodsDetail.available!=1"
|
||||||
|
onKeypress="return(/[\d]/.test(String.fromCharCode(event.keyCode)))" :maxlength="maxlen"
|
||||||
|
v-model="account" :placeholder="placeholder" @focus="(e)=>focusFn(e)"></p>
|
||||||
|
<p v-if="acctype=='tel'"><span>再次输入:</span> <input :type="acctype"
|
||||||
|
onkeyup="this.value=this.value.replace(/\D/g,'')" :disabled="goodsDetail.available!=1"
|
||||||
|
onKeypress="return(/[\d]/.test(String.fromCharCode(event.keyCode)))" :maxlength="maxlen"
|
||||||
|
v-model="reaccount" placeholder="请再次输入" @focus="(e)=>focusFn(e)"></p>
|
||||||
|
<p v-if="acctype!='tel'"><span>账号:</span> <input :type="acctype" :maxlength="maxlen" v-model="account"
|
||||||
|
:disabled="goodsDetail.available!=1" :placeholder="placeholder" @focus="(e)=>focusFn(e)"></p>
|
||||||
|
<p v-if="acctype!='tel'"><span>再次输入:</span><input :type="acctype" :maxlength="maxlen" v-model="reaccount"
|
||||||
|
:disabled="goodsDetail.available!=1" placeholder="请再次输入" @focus="(e)=>focusFn(e)"></p>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="bottom" id="bottom" v-show="describe.type||detailUrl">
|
<div class="bottom" id="bottom" v-show="describe.type||detailUrl">
|
||||||
<img :src="detailUrl" v-show="detailUrl">
|
<img :src="detailUrl" v-show="detailUrl">
|
||||||
<img :src="describe.bg_image" v-show="describe.type==1&&describe.bg_image">
|
<img :src="describe.bg_image" v-show="describe.type==1&&describe.bg_image">
|
||||||
|
|
Loading…
Reference in New Issue