From bd87e01aefaeb972f8d980a563773249f9e9e639 Mon Sep 17 00:00:00 2001
From: Lou <luzhiping@qqyjz.com>
Date: Fri, 29 Mar 2024 18:51:49 +0800
Subject: [PATCH] 更新

---
 subPackage/workbench/views/workLog.vue |   36 +++++++++++++++++++++++++++++++++++-
 1 files changed, 35 insertions(+), 1 deletions(-)

diff --git a/subPackage/workbench/views/workLog.vue b/subPackage/workbench/views/workLog.vue
index 7b4a359..dfd0293 100644
--- a/subPackage/workbench/views/workLog.vue
+++ b/subPackage/workbench/views/workLog.vue
@@ -77,7 +77,12 @@
 			@cancel="isShowTypePicker = false" @confirm="confirmType()" keyName="dictValue"></u-picker>
 		<u-picker :show="isShowLabelPicker" :columns="labelList" :defaultIndex="labelIndex"
 			@cancel="isShowLabelPicker = false" @confirm="confirmLabelType()" keyName="name"></u-picker>
-		<footer-btn @click="submitInfo" :text="isEdit?'保存':'提交'" />
+
+		<!-- <footer-btn @click="submitInfo" :text="isEdit?'保存':'提交'" /> -->
+
+		<button class="submit-btn" @click="sumitInfo">{{isEdit?"保存":"提交"}}</button>
+		<button class="list-btn" @click="navToRecord">走访记录</button>
+
 
 		<u-popup :show="isShowPopup" mode="bottom" :round="10" closeable="true" @close="isShowPopup = false">
 			<view class="popup-content">
@@ -419,6 +424,13 @@
 				uni.navigateBack();
 			},
 
+
+			navToRecord() {
+				uni.navigateTo({
+					url: "/subPackage/workLog/list"
+				})
+			}
+
 		}
 	}
 </script>
@@ -513,4 +525,26 @@
 		font-size: 28rpx;
 		padding: 2rpx 10rpx;
 	}
+
+	.submit-btn {
+		width: 690rpx;
+		height: 78rpx;
+		line-height: 78rpx;
+		background: linear-gradient(163deg, #01BDFC 0%, #017BFC 100%);
+		border-radius: 8rpx 8rpx 8rpx 8rpx;
+		font-size: 32rpx;
+		color: #fff;
+		margin-top: 50rpx;
+	}
+
+	.list-btn {
+		width: 690rpx;
+		height: 78rpx;
+		line-height: 78rpx;
+		background: linear-gradient(163deg, #c7d7dc 0%, #c3cdd8 100%);
+		border-radius: 8rpx 8rpx 8rpx 8rpx;
+		font-size: 32rpx;
+		color: #fff;
+		margin-top: 50rpx;
+	}
 </style>
\ No newline at end of file

--
Gitblit v1.9.3