From 1ad93b699ff890327de9a65f26611e9415140600 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Tue, 18 Jan 2022 01:31:56 +0800
Subject: [PATCH] 表单校验

---
 src/components/swichLabel/main1-show.vue |   74 +++++++++++++++++++++++++++++++++----
 1 files changed, 66 insertions(+), 8 deletions(-)

diff --git a/src/components/swichLabel/main1-show.vue b/src/components/swichLabel/main1-show.vue
index f20b673..1da01f3 100644
--- a/src/components/swichLabel/main1-show.vue
+++ b/src/components/swichLabel/main1-show.vue
@@ -12,26 +12,45 @@
 				:bodyStyle="{padding:'0px'}" :wrapStyle="{padding:'0px',top:'60px'}">
 				<boxRight></boxRight>
 			</a-drawer>
+			<a-row>
+				<a-col v-bind="colApiLeft">
+					<div class="myModal">
+						<a-modal v-model="visible" title="日志添加" on-ok="handleOk">
+							<template slot="footer">
+								<a-button key="back" @click="handleCancel">
+									歇会
+								</a-button>
+								<a-button key="submit" type="primary" :loading="loading" @click="handleOk">
+									完事<span style="font-size: 10px;">儿</span>..
+								</a-button>
+							</template>
+							<box10 ref="modalBox"></box10>
+						</a-modal>
+					</div>
+				</a-col>
+			</a-row>
 		</div>
 		<div class="blog-main">
-			
-			
 			<a-row>
 				<a-col v-bind="colApiLeft">
 					<boxLeft></boxLeft>
 				</a-col>
 				<a-col v-bind="colApiMain ">
-					
+
 					<a-button @click="showDrawer1">
 						小抽屉1
 					</a-button>
 					<a-button @click="showDrawer2">
 						小抽屉2
 					</a-button>
-					<articleListScorll/>
-					<!-- <router-view class="fade"></router-view> -->
+					<a-button @click="showModal">
+						日志
+						<a-icon type="plus-circle" style="margin-left: 0px;" />
+					</a-button>
+					<!-- <tempFormCheck></tempFormCheck> -->
+					<router-view class="fade"></router-view>
 				</a-col>
-				
+
 				<a-col v-bind="colApiRight" ref="myDrawer">
 					<boxRight></boxRight>
 				</a-col>
@@ -42,6 +61,8 @@
 </template>
 
 <script>
+	import tempFormCheck from "../group/tempFormCheck.vue"
+	import box10 from "../mini/box10-add.vue"
 	import boxLeft from "../group/boxLeft.vue"
 	import boxRight from "../group/boxRight.vue"
 	import articleList from "../group/articleList.vue"
@@ -50,13 +71,47 @@
 	export default {
 
 		components: {
+			tempFormCheck,
+			box10,
 			boxLeft,
 			boxRight,
 			articleList,
 			articleListScorll,
-			
+
+
 		},
 		methods: {
+			getCalendarContainer(trigger) {
+				return this.$refs.myModal;
+			},
+			showModal() {
+				this.visible = true;
+			},
+			handleOk(e) {
+				console.log(this.$refs.modalBox.form);
+				var res=this.$refs.modalBox.$refs.myForm.validate(valid => {
+					if (valid) {
+						this.$message.info("校验通过")
+					} else {
+						this.$message.info("校验失败")
+						return false;
+					}
+				});
+				
+				
+				if(!res)return;
+
+				this.$message.info("提交表单")
+
+				this.loading = true;
+				setTimeout(() => {
+					this.visible = false;
+					this.loading = false;
+				}, 3000);
+			},
+			handleCancel(e) {
+				this.visible = false;
+			},
 			afterVisibleChange(val) {},
 			showDrawer1() {
 				this.visible1 = true;
@@ -73,6 +128,8 @@
 		},
 		data() {
 			return {
+				loading: false,
+				visible: false,
 				visible1: false,
 				visible2: false,
 				colApiLeft: {
@@ -144,7 +201,8 @@
 		background-color: white;
 		border-radius: 15px;
 	}
-	.holdHeight{
+
+	.holdHeight {
 		min-height: 780px;
 	}
 

--
Gitblit v1.9.1