Procházet zdrojové kódy

Merge branch 'master' of http://git.aseanbusiness.cn/qzyReal/market-app-ui

mym před 1 rokem
rodič
revize
91636da526
2 změnil soubory, kde provedl 74 přidání a 11 odebrání
  1. 6 3
      common/style.scss
  2. 68 8
      pages/authentication/info.vue

+ 6 - 3
common/style.scss

@@ -28,11 +28,14 @@
 .btn {
 	color: white;
 	background-color: $main-color;
-	border-radius: 30px;
+	border-radius: 8px;
 	font-size: 15px;
 	text-align: center;
 	padding: 5px 5px;
 }
+.cmain {
+	padding: 15px;
+}
 .form_group {
 	padding: 9px 10px 9px 10px;
 	overflow: hidden;
@@ -105,8 +108,8 @@
 		border-radius: 5px;
 		padding: 10px;
 		margin-top: 12px;
-		border: 1px solid #d0d0d0;
 		color: $font-c;
+		background-color: #f6f6f6;
 	}
 	.ops {
 		position: absolute;
@@ -325,7 +328,7 @@
 		}
 		.welcome {
 			position: absolute;
-			color:white;
+			color: white;
 			z-index: 1111;
 			top: 25%;
 			left: 10%;

+ 68 - 8
pages/authentication/info.vue

@@ -1,19 +1,79 @@
 <template>
-	<view>
-		
+	<view class="cmain">
+		<view class="form_group">
+			<view class="lable re">名称</view>
+			<input type="text" placeholder="请输入" v-model="item.typeCode" />
+		</view>
+		<view class="form_group">
+			<view class="lable re">税号</view>
+			<input type="text" placeholder="请输入" v-model="item.typeCode" />
+		</view>
+		<view class="form_group">
+			<view class="lable re">法人姓名</view>
+			<input type="text" placeholder="请输入" v-model="item.typeCode" />
+		</view>
+		<view class="form_group">
+			<view class="lable re">法人身份证</view>
+			<input type="text" placeholder="请输入" v-model="item.typeCode" />
+		</view>
+		<view class="form_group">
+			<view class="lable re">联系号码</view>
+			<input type="text" placeholder="请输入" v-model="item.typeCode" />
+		</view>
+		<view class="form_group">
+			<view class="lable re">开户行</view>
+			<input type="text" placeholder="请输入" v-model="item.typeCode" />
+		</view>
+		<view class="form_group">
+			<view class="lable re">银行账号</view>
+			<input type="text" placeholder="请输入" v-model="item.typeCode" />
+		</view>
+		<view class="form_group">
+			<view class="lable re">营业执照</view>
+			<card v-model="item.pic" pic="../../static/images/yyzz.png"></card>
+		</view>
+		<button class="btn" @click="save()">提交审核</button>
 	</view>
 </template>
 
 <script>
-	export default {
-		data() {
-			return {
-				
-			};
+export default {
+	data() {
+		return {
+			item: {}
+		};
+	},
+	onLoad(e) {},
+	methods: {
+		save() {
+			let rule = [
+				{ name: 'typeCode', checkType: 'notnull', errorMsg: '请输入编码' },
+				{ name: 'typeName', checkType: 'notnull', errorMsg: '请输入名称' },
+				{ name: 'status', checkType: 'notnull', errorMsg: '请选择状态' }
+			];
+			if (!this.verify.check(this.item, rule)) {
+				uni.showModal({ content: this.verify.error, showCancel: false });
+				return false;
+			}
+			this.http.request({
+				url: '/project/projectType',
+				method:'POST',
+				data: this.item,
+				success: res => {
+					uni.showToast({ title: '操作成功' });
+					setTimeout(() => {
+						uni.$emit('ctype');
+						uni.navigateBack();
+					}, 1000);
+				}
+			});
 		}
 	}
+};
 </script>
 
 <style lang="scss">
-
+.btn {
+	margin-top: 25px;
+}
 </style>