Administrator 5 年之前
父節點
當前提交
d2cd5a0006
共有 1 個文件被更改,包括 40 次插入0 次删除
  1. 40 0
      components/cm-module/modelAlert/immediately-Alert.vue

+ 40 - 0
components/cm-module/modelAlert/immediately-Alert.vue

@@ -0,0 +1,40 @@
+<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>