|
|
@@ -31,7 +31,7 @@
|
|
|
<div class="pull-left">
|
|
|
<span class="name">规格:</span>
|
|
|
<div class="specInput input">
|
|
|
- <input type="text" placeholder="请输入规格" v-model="chooseItem.spec" maxlength="50"/>
|
|
|
+ <input type="text" placeholder="请输入规格" v-model="chooseItem.spec" maxlength="50" />
|
|
|
<img src="/images/mobile/product/close_icon.png" @click="deleteText('spec')"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -123,7 +123,7 @@
|
|
|
<div class="cancel pull-right" @click="goLastPage()">取消</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div v-if="GetchooseItem && false"></div>
|
|
|
+ <!--<div v-if="GetchooseItem && false"></div>-->
|
|
|
<remind-box :title="collectResult" :timeoutCount="timeoutCount"></remind-box>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -161,10 +161,16 @@
|
|
|
packObj: ['Bulk-散装', 'Reel-卷装', 'Tape/Reel-编带', 'Tray-盘装', 'Tube-管装', '盒装', '袋装', '罐装', '瓶装', '桶装', '箱装', '其他']
|
|
|
}
|
|
|
},
|
|
|
+ mounted() {
|
|
|
+ this.chooseItem = deepCopy(this.$store.state.product.brand.onSaleDetails.data)
|
|
|
+ this.chooseItem.storeInfoOms = this.chooseItem.storeid === '33069557578d44e69bd91ad12d28a8d4' ? '寄售' : '自营'
|
|
|
+ },
|
|
|
computed: {
|
|
|
GetchooseItem() {
|
|
|
- this.chooseItem = deepCopy(this.$store.state.product.brand.onSaleDetails.data)
|
|
|
- this.chooseItem.storeInfoOms = this.chooseItem.storeid === '33069557578d44e69bd91ad12d28a8d4' ? '寄售' : '自营'
|
|
|
+ // if (!this.chooseItem.storeInfoOms) {
|
|
|
+ // return false
|
|
|
+ // }
|
|
|
+ // this.chooseItem.spec = this.chooseItem.spec || ''
|
|
|
},
|
|
|
storeInfoStore() {
|
|
|
return this.$store.state.option.storeStatus.data
|