immediately-Alert.vue 862 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template name='alert'>
  2. <!--阶梯价格弹窗 -->
  3. <view class="popup spec" :class="specClass" @touchmove.stop.prevent="discard" @tap="hideSpec">
  4. <!-- 遮罩层 -->
  5. <view class="mask"></view>
  6. <view class="jieti_box">
  7. <view class="jieti_box_one">
  8. <view class="jieti_left" v-for="(ladder,index) in ladderPriceList" :key="index">
  9. <view>起订量:</view>
  10. <view class="ladder-a">1-10</view>
  11. </view>
  12. <view class="jieti_right" v-for="(ladder,index) in ladderPriceList" :key="index">
  13. <view>价格:</view>
  14. <view class="">¥12000.00</view>
  15. </view>
  16. </view>
  17. <view id="addbtn" >
  18. 知道了
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. }
  27. },
  28. methods: {
  29. openjietiConfim(){//阶梯价格弹窗
  30. this.specClass = 'show';
  31. },
  32. }
  33. }
  34. </script>
  35. <style>
  36. </style>