加班管理
This commit is contained in:
parent
633f9a38ec
commit
3d19cef801
@ -1,5 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<el-card >
|
||||||
|
<template #header>
|
||||||
|
<span style="font-size: 16px">创建车辆管理流程</span>
|
||||||
|
</template>
|
||||||
<el-form
|
<el-form
|
||||||
ref="formRef"
|
ref="formRef"
|
||||||
:model="formData"
|
:model="formData"
|
||||||
@ -104,8 +107,10 @@
|
|||||||
<el-input v-model="formData.carRemark" type="textarea" placeholder="请输入备注" />
|
<el-input v-model="formData.carRemark" type="textarea" placeholder="请输入备注" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||||
</ContentWrap>
|
</template>
|
||||||
|
</el-card>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<el-card>
|
||||||
|
<template #header>
|
||||||
|
<span style="font-size: 16px">车辆管理流程</span>
|
||||||
|
</template>
|
||||||
<el-form
|
<el-form
|
||||||
ref="formRef"
|
ref="formRef"
|
||||||
:model="formData"
|
:model="formData"
|
||||||
@ -108,7 +111,7 @@
|
|||||||
<el-input v-model="formData.carRemark" type="textarea" placeholder="请输入备注" disabled />
|
<el-input v-model="formData.carRemark" type="textarea" placeholder="请输入备注" disabled />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</ContentWrap>
|
</el-card>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<el-card >
|
||||||
|
<template #header>
|
||||||
|
<span style="font-size: 16px">创建请假管理流程</span>
|
||||||
|
</template>
|
||||||
<!-- <Dialog :title="dialogTitle" v-model="dialogVisible">-->
|
<!-- <Dialog :title="dialogTitle" v-model="dialogVisible">-->
|
||||||
<el-form
|
<el-form
|
||||||
ref="formRef"
|
ref="formRef"
|
||||||
@ -79,17 +82,20 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-form>
|
<!-- <el-form>-->
|
||||||
<el-form-item>
|
<!-- <el-form-item>-->
|
||||||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
<!-- <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>-->
|
||||||
</el-form-item>
|
<!-- </el-form-item>-->
|
||||||
</el-form>
|
<!-- </el-form>-->
|
||||||
<!-- <template #footer>-->
|
<!-- <template #footer>-->
|
||||||
<!-- <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>-->
|
<!-- <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>-->
|
||||||
<!-- <el-button @click="dialogVisible = false">取 消</el-button>-->
|
<!-- <el-button @click="dialogVisible = false">取 消</el-button>-->
|
||||||
<!-- </template>-->
|
<!-- </template>-->
|
||||||
<!-- </Dialog>-->
|
<!-- </Dialog>-->
|
||||||
</ContentWrap>
|
<template #footer>
|
||||||
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||||
|
</template>
|
||||||
|
</el-card>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<el-card>
|
||||||
<!-- <Dialog :title="dialogTitle" v-model="dialogVisible">-->
|
<template #header>
|
||||||
|
<span style="font-size: 16px">请假管理流程</span>
|
||||||
|
</template>
|
||||||
<el-form
|
<el-form
|
||||||
ref="formRef"
|
ref="formRef"
|
||||||
:model="formData"
|
:model="formData"
|
||||||
@ -74,7 +76,8 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
</ContentWrap>
|
</el-card>
|
||||||
|
<!-- <Dialog :title="dialogTitle" v-model="dialogVisible">-->
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||||
|
Loading…
Reference in New Issue
Block a user