全局属性-通知配置页面
This commit is contained in:
47
src/components/XnWorkflow/globalAttribute/notice.vue
Normal file
47
src/components/XnWorkflow/globalAttribute/notice.vue
Normal file
@@ -0,0 +1,47 @@
|
||||
<!-- 全局属性通知配置页面 -->
|
||||
<template>
|
||||
<div class="home">
|
||||
<div class="info">
|
||||
<navTitle>
|
||||
<template #nav_name>配置通知事项</template>
|
||||
</navTitle>
|
||||
</div>
|
||||
<div class="basic_form">
|
||||
<el-form :model="form" label-width="auto" label-position="top">
|
||||
<el-form-item label="开启退回通知">
|
||||
<el-switch v-model="form.delivery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="开启待办通知">
|
||||
<el-switch v-model="form.delivery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="开启抄送通知">
|
||||
<el-switch v-model="form.delivery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="开启完成通知">
|
||||
<el-switch v-model="form.delivery" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import navTitle from '../components/navTitle.vue';
|
||||
import { ref } from 'vue'
|
||||
const form = ref({})
|
||||
form.value = {
|
||||
delivery: false,
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
.home {
|
||||
width: 100%;
|
||||
height: calc(100vh - 100px);
|
||||
padding-top: 20px;
|
||||
overflow: auto;
|
||||
.basic_form {
|
||||
width:96%;
|
||||
padding-top: 10px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user