Admin 3 rokov pred
rodič
commit
a1c6776951
1 zmenil súbory, kde vykonal 74 pridanie a 5 odobranie
  1. 74 5
      pages/distinguish/nosms.vue

+ 74 - 5
pages/distinguish/nosms.vue

@@ -20,13 +20,41 @@
 					</view>
 				</view>
 				<view class="section-rows">
-					<view class="rows-label">款项类型</view>
+					<view class="rows-label">款项类型</view>
 					<view class="rows-mains">
-						
+						<input class="input" type="text" disabled="true" placeholder="请选择款项类型"/>
 					</view>
+					<text class="iconfont icon-xiayibu"></text>
 				</view>
+				<view class="section-rows">
+					<view class="rows-label">收款时间:</view>
+					<view class="rows-mains">
+						<input class="input" type="text" disabled="true" placeholder="请选择收款时间"/>
+					</view>
+					<text class="iconfont icon-xiayibu"></text>
+				</view>
+				<view class="section-rows">
+					<view class="rows-label">收款类型:</view>
+					<view class="rows-mains">
+						<input class="input" type="text" disabled="true" placeholder="请选择收款类型"/>
+					</view>
+					<text class="iconfont icon-xiayibu"></text>
+				</view>
+				<view class="section-rows">
+					<view class="rows-label">收款金额:</view>
+					<view class="rows-mains">
+						<input class="input" type="text" placeholder="请输入收款金额"/>
+					</view>
+				</view>
+				<view class="section-rows">
+					<view class="rows-label">手续费:</view>
+					<view class="rows-mains">
+						<input class="input" type="text" placeholder="请输入手续费"/>
+					</view>
+				</view>
+				<view class="section-text">收款短信(备注,必填)</view>
 				<view class="section-textarea">
-					<textarea class="textarea" placeholder="收款短信内容..." v-model="textarea" @input="onTextareaInput" />
+					<textarea class="textarea" placeholder="请输入收款短信备注..." v-model="textarea" @input="onTextareaInput" />
 				</view>
 			</view>
 			<view class="distinguish-button">
@@ -57,6 +85,9 @@
 					bgColor: '#D33020',
 					textColor: '#ffffff'
 				},
+				params:{
+					type:''
+				},
 				textarea: '',
 				infoData: {},
 				isCmcustomClass: 'left',
@@ -237,11 +268,49 @@
 		.section-rows{
 			width: 100%;
 			height: 80rpx;
-			
+			box-sizing: border-box;
+			padding: 0 20rpx;
+			border-radius: 8rpx;
+			background: #F8F8F8;
+			margin-bottom: 20rpx;
+			line-height: 80rpx;
+			display: flex;
+			position: relative;
+			.rows-label{
+				flex: 3;
+			}
+			.rows-mains{
+				flex: 7;
+				.input{
+					width: 100%;
+					height: 80rpx;
+					box-sizing: border-box;
+					padding-right: 40rpx;
+					text-align: left;
+					font-size: $font-size-28;
+					color: #333333;
+				}
+			}
+			.iconfont{
+				display: block;
+				width: 40rpx;
+				height: 80rpx;
+				position: absolute;
+				right: 0;
+				text-align: center;
+				font-size: $font-size-32;
+			}
+		}
+		.section-text{
+			width: 100%;
+			height: 66rpx;
+			line-height: 66rpx;
+			font-size: $font-size-24;
+			color: #333333;
 		}
 		.section-textarea {
 			width: 100%;
-			height: 360rpx;
+			height: 260rpx;
 			box-sizing: border-box;
 			padding: 20rpx;
 			background: #F7F7F7;