Administrator 4 anos atrás
pai
commit
e59f71a156
1 arquivos alterados com 58 adições e 0 exclusões
  1. 58 0
      components/cm-module/creatOrder/sellerRegulations.vue

+ 58 - 0
components/cm-module/creatOrder/sellerRegulations.vue

@@ -0,0 +1,58 @@
+<template name="regulations">
+	<view class="regulations-template">
+		<view class="regulations-title" @tap.stop="hanldOperationConfim">
+			<text class="text">售后条例:</text>
+			<text>{{regulaText}}</text>
+			<text class="iconfont icon-xiayibu"></text>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default{
+		name:'regulations',
+		props:{
+			regulaDatas:{
+				type:Object
+			}
+		},
+		data(){
+			return{
+				regulaText:'无条理',
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+	.regulations-template{
+		width: 100%;
+		height: auto;
+		background: #FFFFFF;
+		float: left;
+		margin-top: 24rpx;
+		.regulations-title{
+			width: 702rpx;
+			padding: 0 24rpx;
+			height: 88rpx;
+			line-height: 88rpx;
+			position: relative;
+			border-bottom: 1px solid #EBEBEB;
+			.text{
+				font-size: $font-size-28;
+				color: $text-color;
+			}
+			.iconfont{
+				width: 50rpx;
+				height: 88rpx;
+				line-height: 88rpx;
+				color: #999999;
+				display: block;
+				position: absolute;
+				right: 0;
+				top: 0;
+			}
+		}
+		
+	}
+</style>