代码格式修改
This commit is contained in:
@@ -5,13 +5,13 @@
|
||||
<span class="el-icon-document">已发任务</span>
|
||||
<el-button style="float: right" size="mini" type="danger" @click="goBack">关闭</el-button>
|
||||
</div>
|
||||
<el-tabs tab-position="top" v-model="activeName" @tab-click="handleClick">
|
||||
<el-tabs v-model="activeName" tab-position="top" @tab-click="handleClick">
|
||||
<!--表单信息-->
|
||||
<el-tab-pane label="表单信息" name="1">
|
||||
<el-col :span="16" :offset="4">
|
||||
<div class="">
|
||||
<!-- 考勤表单 -->
|
||||
<el-descriptions class="margin-top" title="" :column="2" size="medium" border style="width: 100%" v-if="leaveForm">
|
||||
<el-descriptions v-if="leaveForm" class="margin-top" title="" :column="2" size="medium" border style="width: 100%">
|
||||
<el-descriptions-item>
|
||||
<template slot="label"> 学号 </template>
|
||||
{{ form.stuNo }}
|
||||
@@ -92,7 +92,7 @@
|
||||
</el-descriptions>
|
||||
|
||||
<!-- 处分表单 -->
|
||||
<el-descriptions class="margin-top" title="" :column="2" size="medium" border style="width: 100%" v-if="disposalForm">
|
||||
<el-descriptions v-if="disposalForm" class="margin-top" title="" :column="2" size="medium" border style="width: 100%">
|
||||
<el-descriptions-item>
|
||||
<template slot="label"> 学号 </template>
|
||||
{{ form.stuNo }}
|
||||
@@ -143,7 +143,7 @@
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item span="2">
|
||||
<template slot="label"> 违纪材料 </template>
|
||||
<Affix v-model="form.evidenceUpload" :disabled="true"></Affix>
|
||||
<Affix v-model="form.evidenceUpload" :disabled="true" />
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item span="2">
|
||||
<template slot="label"> 处分建议 </template>
|
||||
@@ -156,7 +156,7 @@
|
||||
</el-descriptions>
|
||||
|
||||
<!-- 解除处分表单 -->
|
||||
<el-descriptions class="margin-top" title="" :column="2" size="medium" border style="width: 100%" v-if="relieveForm">
|
||||
<el-descriptions v-if="relieveForm" class="margin-top" title="" :column="2" size="medium" border style="width: 100%">
|
||||
<el-descriptions-item>
|
||||
<template slot="label"> 学号 </template>
|
||||
{{ form.stuNo }}
|
||||
@@ -220,7 +220,7 @@
|
||||
</el-descriptions>
|
||||
|
||||
<!-- 休学申请表单 -->
|
||||
<el-descriptions class="margin-top" title="" :column="3" size="medium" border style="width: 100%" v-if="quitSchoolForm">
|
||||
<el-descriptions v-if="quitSchoolForm" class="margin-top" title="" :column="3" size="medium" border style="width: 100%">
|
||||
<el-descriptions-item>
|
||||
<template slot="label"> 学号 </template>
|
||||
{{ form.stuNo }}
|
||||
@@ -277,7 +277,7 @@
|
||||
|
||||
<el-descriptions-item span="3">
|
||||
<template slot="label"> 附件上传 </template>
|
||||
<Affix v-model="form.attachmentUpload" :disabled="true"></Affix>
|
||||
<Affix v-model="form.attachmentUpload" :disabled="true" />
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item span="3">
|
||||
@@ -287,7 +287,7 @@
|
||||
|
||||
<el-descriptions-item span="3">
|
||||
<template slot="label"> 签名 </template>
|
||||
<img v-if="form.applySignature" :src="form.applySignature" width="200px" height="200px" class="avatar" />
|
||||
<img v-if="form.applySignature" :src="form.applySignature" width="200px" height="200px" class="avatar">
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item span="3">
|
||||
@@ -313,28 +313,28 @@
|
||||
<el-card :body-style="{ padding: '10px' }">
|
||||
<el-descriptions class="margin-top" :column="1" size="small" border>
|
||||
<el-descriptions-item v-if="item.assigneeName" label-class-name="my-label">
|
||||
<template slot="label"><i class="el-icon-user"></i>办理人</template>
|
||||
<template slot="label"><i class="el-icon-user" />办理人</template>
|
||||
{{ item.assigneeName }}
|
||||
<el-tag type="info" size="mini">{{ item.deptName }}</el-tag>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item v-if="item.candidate" label-class-name="my-label">
|
||||
<template slot="label"><i class="el-icon-user"></i>候选办理</template>
|
||||
<template slot="label"><i class="el-icon-user" />候选办理</template>
|
||||
{{ item.candidate }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label-class-name="my-label">
|
||||
<template slot="label"><i class="el-icon-date"></i>接收时间</template>
|
||||
<template slot="label"><i class="el-icon-date" />接收时间</template>
|
||||
{{ item.createTime }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item v-if="item.finishTime" label-class-name="my-label">
|
||||
<template slot="label"><i class="el-icon-date"></i>处理时间</template>
|
||||
<template slot="label"><i class="el-icon-date" />处理时间</template>
|
||||
{{ item.finishTime }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item v-if="item.duration" label-class-name="my-label">
|
||||
<template slot="label"><i class="el-icon-time"></i>耗时</template>
|
||||
<template slot="label"><i class="el-icon-time" />耗时</template>
|
||||
{{ item.duration }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item v-if="item.comment" label-class-name="my-label">
|
||||
<template slot="label"><i class="el-icon-tickets"></i>处理意见</template>
|
||||
<template slot="label"><i class="el-icon-tickets" />处理意见</template>
|
||||
{{ item.comment.comment }}
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
@@ -346,7 +346,7 @@
|
||||
</el-tab-pane>
|
||||
<!--流程图-->
|
||||
<el-tab-pane label="流程图" name="3">
|
||||
<flow :flowData="flowData" />
|
||||
<flow :flow-data="flowData" />
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
</el-card>
|
||||
|
||||
Reference in New Issue
Block a user