From ea61f41e888d3de2001e0564f0147eee055894c6 Mon Sep 17 00:00:00 2001
From: shj <1790240199@qq.com>
Date: 星期四, 07 七月 2022 18:00:52 +0800
Subject: [PATCH] 目标

---
 src/views/goalManagement/processForms/component/formInformationTop.vue |   72 ++++++++++++++++++++++++++++++++++-
 1 files changed, 69 insertions(+), 3 deletions(-)

diff --git a/src/views/goalManagement/processForms/component/formInformationTop.vue b/src/views/goalManagement/processForms/component/formInformationTop.vue
index 5d837a3..ef75063 100644
--- a/src/views/goalManagement/processForms/component/formInformationTop.vue
+++ b/src/views/goalManagement/processForms/component/formInformationTop.vue
@@ -1,6 +1,6 @@
 <template>
     <el-form ref="form" :model="form" label-width="120px">
-			<el-row style="padding: 20px">
+			<el-row>
 				<el-col :span="11">
 					<el-form-item label="安全目标指标">
 						<el-input v-model="form.name"></el-input>
@@ -12,7 +12,7 @@
 					</el-form-item>
 				</el-col>
 			</el-row>
-			<el-row style="padding: 20px">
+			<el-row>
 				<el-col :span="11">
 					<el-form-item label="年度">
 						<el-input v-model="form.name"></el-input>
@@ -70,9 +70,75 @@
 			resource: '',
 			desc: '',
 		});
+        	const tableData = [
+			{
+				date: '2016-05-03',
+				name: 'Tom',
+				address: 'No. 189, Grove St, Los Angeles',
+			},
+		];
+        const activeName = ref('1');
         return{
-            form
+            form,
+            tableData,
+            activeName
         }
     },
 })
 </script>
+<style scoped>
+.title {
+	text-align: center;
+	font-size: 16px;
+	margin-bottom: 20px;
+}
+.box{
+	border: 1px solid #dcdfe6;
+	box-shadow: 0 2px 4px 0 rgb(0 0 0 / 12%), 0 0 6px 0 rgb(0 0 0 / 4%);
+}
+.navType {
+	background-color: #fff;
+}
+.tiao{
+	width: 100%;
+	height: 1px;
+	background-color: #dcdfe6;
+	margin: 30px 0 ;
+	position: relative;
+}
+.typeS{
+	width: 80px;
+	background-color: #fff;
+	position: absolute;
+    left: 30px;
+	top: -9px;
+	font-size: 14px;
+	text-align: center;
+}
+.logoColor{
+	background-color: #67c23a;
+	color: #fff;
+	padding:  5px 8px;
+	border-radius: 5px;
+	margin-right: 5px;
+}
+.btns{
+	width: 100%;
+	padding:20px 0;
+	background-color: #fff;
+	position: fixed;
+	bottom: 0px;
+	left: 0px;
+	text-align: center;
+	box-shadow: 0 -3px 5px 0 rgb(0 0 0 / 12%);
+	
+}
+.title2{
+	padding: 20px 0 20px 10px;
+	width: 100%;
+	border: 1px solid #dcdfe6;
+}
+.el-row{
+	padding:0 0 20px 0 ;
+}
+</style>

--
Gitblit v1.9.2