12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template name='alert'>
- <!--阶梯价格弹窗 -->
- <view class="popup spec" :class="specClass" @touchmove.stop.prevent="discard" @tap="hideSpec">
- <!-- 遮罩层 -->
- <view class="mask"></view>
- <view class="jieti_box">
- <view class="jieti_box_one">
- <view class="jieti_left" v-for="(ladder,index) in ladderPriceList" :key="index">
- <view>起订量:</view>
- <view class="ladder-a">1-10</view>
- </view>
- <view class="jieti_right" v-for="(ladder,index) in ladderPriceList" :key="index">
- <view>价格:</view>
- <view class="">¥12000.00</view>
- </view>
- </view>
- <view id="addbtn" >
- 知道了
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- openjietiConfim(){//阶梯价格弹窗
- this.specClass = 'show';
- },
- }
- }
- </script>
- <style>
- </style>
|