更新班组
This commit is contained in:
31
src/views/group/Schedule/subStatus.vue
Normal file
31
src/views/group/Schedule/subStatus.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<!--
|
||||
* @Author: zwq
|
||||
* @Date: 2025-10-13 16:40:08
|
||||
* @LastEditors: zwq
|
||||
* @LastEditTime: 2025-10-13 16:43:11
|
||||
* @Description:
|
||||
-->
|
||||
<template>
|
||||
<el-tag
|
||||
v-if="injectData.status"
|
||||
size="medium"
|
||||
:type="['', '', 'success', 'warning'][injectData.status]">
|
||||
{{ ['', '草稿', '已确认', '已作废'][injectData.status] }}
|
||||
</el-tag>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
injectData: {
|
||||
type: Object,
|
||||
default: () => ({}),
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
created() {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user