From 68404100b734b63d1220bb3637d665676eeb32a3 Mon Sep 17 00:00:00 2001 From: songshankun <songshankun@foxmail.com> Date: 星期一, 06 十一月 2023 16:01:53 +0800 Subject: [PATCH] feat: 工艺参数列表添加滚动加载 --- src/views/dashboard/components/ProcessInfo.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/dashboard/components/ProcessInfo.vue b/src/views/dashboard/components/ProcessInfo.vue index 65ab682..95ba326 100644 --- a/src/views/dashboard/components/ProcessInfo.vue +++ b/src/views/dashboard/components/ProcessInfo.vue @@ -13,7 +13,7 @@ </div> <div v-if="craftModel.isUpdate" class="tip-current">褰撳墠浣跨敤</div> <div class="btn"> - <el-button type="primary" class="color_organge" @click="onUpdateClick"> 鏇存柊宸ヨ壓 </el-button> + <el-button type="primary" @click="onUpdateClick"> 鏇存柊宸ヨ壓 </el-button> </div> </div> </template> @@ -31,10 +31,10 @@ }>() function onDetailClick() { - emit('detail', craftModel) + emit('detail', craftModel.value) } function onUpdateClick() { - emit('update', craftModel) + emit('update', craftModel.value) } </script> @@ -51,7 +51,7 @@ padding: 23px 10px 10px; background: $status-done; border-radius: 8px; - float: left; + //float: left; overflow: hidden; font-size: 15px; position: relative; -- Gitblit v1.8.0