Compare commits
2 Commits
50555ba5ea
...
24f4004eb7
Author | SHA1 | Date | |
---|---|---|---|
![]() |
24f4004eb7 | ||
![]() |
81076293c2 |
@ -323,14 +323,14 @@
|
|||||||
</el-card>
|
</el-card>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<Dialog :title="dialogTitle" v-model="dialogVisible" style="width: 85%">
|
<Dialog :title="dialogTitle" v-model="dialogVisible" style="width: 70%">
|
||||||
<el-form >
|
<el-form >
|
||||||
<el-form-item >
|
<el-form-item >
|
||||||
<span style="font-size: 20px; font-weight: bold;">{{formData.newsName}}</span>
|
<span style="font-size: 20px; font-weight: bold;">{{formData.newsName}}</span>
|
||||||
<el-divider style="border-top: none; margin: 0;"/>
|
<el-divider style="border-top: none; margin: 0;"/>
|
||||||
<span style="font-size: 12px">发布时间: {{formatTime(formData.newsCreatetime,'yyyy-MM-dd')}}</span>
|
<span style="font-size: 12px">发布时间: {{formatTime(formData.newsCreatetime,'yyyy-MM-dd')}}</span>
|
||||||
<el-divider style="margin-top: 10px"/>
|
<el-divider style="margin-top: 10px"/>
|
||||||
<span style="line-height: 1.2" v-html="formData.newsContent"></span>
|
<span style="line-height: 1.4" v-html="formData.newsContent"></span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
@ -341,7 +341,7 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { formatTime } from '@/utils'
|
import { formatTime } from '@/utils'
|
||||||
import type {Todo, Email} from './types'
|
import type {Todo, Email} from './types'
|
||||||
import {dateFormatter, dateFormatter2} from "@/utils/formatTime";
|
import {dateFormatter2} from "@/utils/formatTime";
|
||||||
import {DICT_TYPE} from "@/utils/dict";
|
import {DICT_TYPE} from "@/utils/dict";
|
||||||
import {imgApi, imgVO} from "@/api/home/homeimg";
|
import {imgApi, imgVO} from "@/api/home/homeimg";
|
||||||
import {CalendarDateType, CalendarInstance} from "element-plus";
|
import {CalendarDateType, CalendarInstance} from "element-plus";
|
||||||
@ -587,6 +587,7 @@ const getList = async () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const getAllApi = async () => {
|
const getAllApi = async () => {
|
||||||
|
loading.value = true
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
getTableData(),
|
getTableData(),
|
||||||
getTodo(),
|
getTodo(),
|
||||||
@ -618,11 +619,13 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style>
|
<style scoped>
|
||||||
.SystemThem {
|
.SystemThem {
|
||||||
background-color: var(--el-color-primary);
|
background-color: var(--el-color-primary);
|
||||||
}
|
}
|
||||||
.SystemThemFont {
|
.SystemThemFont {
|
||||||
|
font-size: 18px !important;
|
||||||
|
font-weight: bold !important;
|
||||||
color: var(--el-color-primary);
|
color: var(--el-color-primary);
|
||||||
}
|
}
|
||||||
.custom-calendar {
|
.custom-calendar {
|
||||||
|
@ -157,7 +157,7 @@ const formRules = reactive({
|
|||||||
const formRef = ref() // 表单 Ref
|
const formRef = ref() // 表单 Ref
|
||||||
|
|
||||||
// 指定审批人
|
// 指定审批人
|
||||||
const processDefineKey = 'test-001' // 流程定义 Key
|
const processDefineKey = 'car-001' // 流程定义 Key
|
||||||
const startUserSelectTasks = ref([]) // 发起人需要选择审批人的用户任务列表
|
const startUserSelectTasks = ref([]) // 发起人需要选择审批人的用户任务列表
|
||||||
const startUserSelectAssignees = ref({}) // 发起人选择审批人的数据
|
const startUserSelectAssignees = ref({}) // 发起人选择审批人的数据
|
||||||
const startUserSelectAssigneesFormRef = ref() // 发起人选择审批人的表单 Ref
|
const startUserSelectAssigneesFormRef = ref() // 发起人选择审批人的表单 Ref
|
||||||
|
Loading…
Reference in New Issue
Block a user