Administrator 4 years ago
parent
commit
d10086ca84
2 changed files with 68 additions and 2 deletions
  1. 15 0
      pages.json
  2. 53 2
      supplier/pages/user/information.vue

+ 15 - 0
pages.json

@@ -608,6 +608,21 @@
 					"style": {
 						"navigationBarTitleText": "账户设置"
 					}
+				},{
+					"path": "pages/user/operator/list",
+					"style": {
+						"navigationBarTitleText": "运营人员管理"
+					}
+				},{
+					"path": "pages/user/operator/addoperator",
+					"style": {
+						"navigationBarTitleText": "添加运营人员"
+					}
+				},{
+					"path": "pages/user/information",
+					"style": {
+						"navigationBarTitleText": "资料信息"
+					}
 				}
 			]	
 		}	

+ 53 - 2
supplier/pages/user/information.vue

@@ -21,13 +21,49 @@
 					 <text class="iconfont icon-xiayibu"></text>
 				</view> 
 			</view>
+			<textarea value="" placeholder="请填写详细地址,如街道/小区/门牌等" maxlength="50" class="address-details"/>
+			<view class="info-from">
+				<view class="label">联系人</view>
+				<input class="row-input" type="text" placeholder="请输入联系人姓名" maxlength="6"/>
+			</view>
+			<view class="info-from">
+				<view class="label">邮箱</view>
+				<input class="row-input" type="text" placeholder="请输入邮箱地址 " maxlength="6"/>
+			</view>
+			 <text class="info-email">邮箱可用作登录账号,请使用公司邮箱或法人邮箱</text>
+			<view class="info-from">
+				<view class="label">固定电话</view>
+				<input class="row-input" type="text" placeholder="请在号码前加区 " maxlength="6"/>
+			</view>
+			<view class="info-from">
+				<view class="label">传真</view>
+				<input class="row-input" type="text" placeholder="请输入公司传真号 " maxlength="6"/>
+			</view>
+			<view class="info-from">
+				<view class="label">法人代表</view>
+				<input class="row-input" type="text" placeholder="请输入公司法人代表姓名 " maxlength="6"/>
+			</view>
+			<view class="info-from">
+				<view class="label">注册资本</view>
+				<input class="row-input" type="text" placeholder="请填写公司注册资本 " maxlength="6"/>
+			</view>
+			<view class="info-from">
+				<view class="label">公司性质</view>
+				<input class="row-input" type="text" placeholder="请填写公司性质 " maxlength="6"/>
+			</view>
+			<view class="info-from">
+				<view class="label">年营业额</view>
+				<input class="row-input" type="text" placeholder="请输入公司年营业额  " maxlength="6"/>
+			</view>
 		</view>
+		
 		<view class="wrap-content">
 			<view class="row">
 				<view class="info-title">经营信息</view>	
 			</view>
 			
 		</view>
+		
 		<view class="wrap-image">
 			<view class="row">
 				<view class="info-title">资质证明</view>
@@ -54,6 +90,7 @@
 		},
 		data(){
 			return{
+				isShowInput:false,
 				addressData:{
 					address:'请选择公司所在地区',
 					townID:'',			//区ID
@@ -122,11 +159,25 @@
 			.icon-xiayibu{
 				position: absolute;
 				right: 0;
-				color: #666666;
+				color: #b2b2b2;
 			}
 			.none{
-				color: #666666;
+				color: #b2b2b2;
 			}
 		}
 	}
+	.address-details{
+		height: 146rpx;
+		border-bottom: 2rpx solid #e1e1e1;
+		width: 702rpx;
+		margin: auto;
+		font-size: $font-size-28;
+		padding-top: 20rpx;
+	}
+	 input[type="text"]::placeholder,textarea::placeholder{color: #b2b2b2;}
+	 .info-email{
+		 color: #fea785;
+		 font-size: $font-size-20;
+		 padding-left: 24rpx ;
+	 }
 </style>