From 7bdc84b5844d2a481e2f17cdd2c8204fd4a403ee Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期一, 29 九月 2025 16:48:31 +0800
Subject: [PATCH] 业务管理相关页面添加`批号`查询条件
---
src/views/performance/manHour/index.vue | 24 ++++++------------------
1 files changed, 6 insertions(+), 18 deletions(-)
diff --git a/src/views/performance/manHour/index.vue b/src/views/performance/manHour/index.vue
index 9358001..1d8e620 100644
--- a/src/views/performance/manHour/index.vue
+++ b/src/views/performance/manHour/index.vue
@@ -1,27 +1,14 @@
<template>
<div class="work-time-management">
<div style="text-align: left">
- <el-radio-group
- v-model="currentComponent"
- size="small"
- style="margin-top: 16px; margin-left: 16px"
- >
- <el-radio-button
- v-if="checkPermi(['performance:manHour:workTimeStatistics'])"
- label="workTimeStatistics"
- >
+ <el-radio-group v-model="currentComponent" size="small" style="margin-top: 16px; margin-left: 16px">
+ <el-radio-button v-if="checkPermi(['performance:manHour:workTimeStatistics'])" label="workTimeStatistics">
宸ユ椂姹囨��
</el-radio-button>
- <el-radio-button
- v-if="checkPermi(['performance:manHour:workTimeManagement'])"
- label="workTimeManagement"
- >
+ <el-radio-button v-if="checkPermi(['performance:manHour:workTimeManagement'])" label="workTimeManagement">
鏃ュ伐鏃剁鐞�
</el-radio-button>
- <el-radio-button
- v-if="checkPermi(['performance:manHour:workTimeConfig'])"
- label="workTimeConfig"
- >
+ <el-radio-button v-if="checkPermi(['performance:manHour:workTimeConfig'])" label="workTimeConfig">
杈呭姪宸ユ椂閰嶇疆
</el-radio-button>
</el-radio-group>
@@ -35,12 +22,13 @@
import workTimeManagement from "./workTimeManagement.vue";
import workTimeConfig from "./workTimeConfig.vue";
export default {
+ name: "ManHour",
components: {
workTimeStatistics,
workTimeManagement,
workTimeConfig,
},
- created() {},
+ created() { },
data() {
return {
currentComponent: "workTimeStatistics",
--
Gitblit v1.9.3