From 94f2a5bed82ae0281ce5b821570597f6d73c1ce9 Mon Sep 17 00:00:00 2001
From: Your Name <123456>
Date: 星期六, 20 八月 2022 16:51:38 +0800
Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/gtqt

---
 src/views/specialWorkSystem/workTicket/workApply/components/hoist.vue |   32 ++++++++------------------------
 1 files changed, 8 insertions(+), 24 deletions(-)

diff --git a/src/views/specialWorkSystem/workTicket/workApply/components/hoist.vue b/src/views/specialWorkSystem/workTicket/workApply/components/hoist.vue
index f9617a3..ca95264 100644
--- a/src/views/specialWorkSystem/workTicket/workApply/components/hoist.vue
+++ b/src/views/specialWorkSystem/workTicket/workApply/components/hoist.vue
@@ -9,9 +9,9 @@
 						<el-select v-model="form.operatorUids" multiple>
 							<el-option
 									v-for="item in workerList"
-									:key="item.value"
-									:label="item.label"
-									:value="item.value"
+									:key="item.uid"
+									:label="item.username"
+									:value="item.uid"
 							/>
 						</el-select>
 					</el-form-item>
@@ -83,7 +83,9 @@
 								v-model="form.workDetail.weightMass"
 								type="number"
 								placeholder="请输入"
-						/>
+						>
+							<template #append>吨(t)</template>
+						</el-input>
 					</el-form-item>
 				</el-col>
 			</el-row>
@@ -110,12 +112,12 @@
 
 	interface stateType {
 		form: Object,
-		workerList: Array<any>,
 		workLevelList: Array<any>
 	}
 	export default defineComponent({
 		name: 'hoistForm',
 		components: {},
+		props:['workerList'],
 		setup() {
 			const userInfo = useUserInfo()
 			const { userInfos } = storeToRefs(userInfo);
@@ -134,24 +136,6 @@
 					expStartTime: '',
 					expEndTime: ''
 				},
-				workerList:[
-					{
-						label: "张三",
-						value: 53
-					},
-					{
-						label: "李四",
-						value: 54
-					},
-					{
-						label: "测试一",
-						value: 55
-					},
-					{
-						label: "测试二",
-						value: 56
-					}
-				],
 				workLevelList: [
 					{
 						label: "一级吊装作业",
@@ -238,7 +222,7 @@
 		.applyBtn{
 			width: 100%;
 			background: #fff;
-			height: 80px;
+			padding-top: 15px;
 			z-index: 5;
 			box-shadow: 0 -3px 8px rgba(150,150,150,.1);
 			display: flex;

--
Gitblit v1.9.2