增强办公
This commit is contained in:
@@ -1,627 +1,43 @@
|
||||
<template>
|
||||
<view class="hrm-page">
|
||||
<!-- 筛选栏 -->
|
||||
<view class="filter-bar">
|
||||
<view style="display: flex; align-items: center; gap: 16rpx; flex: 1">
|
||||
<span class="filter-label">申请类型:</span>
|
||||
<picker @change="handleBizTypeChange" :value="bizTypeIndex" :range="bizTypeList" range-key="label">
|
||||
<view class="picker-text">{{ bizTypeList[bizTypeIndex].label }}</view>
|
||||
</picker>
|
||||
</view>
|
||||
|
||||
<button class="refresh-btn" size="mini" @click="loadHistory">
|
||||
刷新
|
||||
</button>
|
||||
</view>
|
||||
|
||||
<!-- 待审批列表 -->
|
||||
<scroll-view class="approval-list" scroll-y>
|
||||
<!-- 加载中 -->
|
||||
<view v-if="loading" class="loading-container">
|
||||
<uni-load-more type="loading" color="#409EFF"></uni-load-more>
|
||||
</view>
|
||||
|
||||
<!-- 空数据 -->
|
||||
<view v-else-if="todoList.length === 0" class="empty-container">
|
||||
<uni-icons type="empty" size="60" color="#909399"></uni-icons>
|
||||
<view class="empty-text">暂无待审批任务</view>
|
||||
</view>
|
||||
|
||||
<!-- 列表项 -->
|
||||
<view v-else class="list-item" v-for="(item, index) in todoList" :key="index" @click="goDetail(item)">
|
||||
<!-- 申请类型标签 -->
|
||||
<view class="item-tag" :class="getBizTypeTagType(item.bizType)">
|
||||
{{ getBizTypeText(item.bizType) }}
|
||||
</view>
|
||||
|
||||
<!-- 核心信息 -->
|
||||
<view class="item-main">
|
||||
<view class="applicant">
|
||||
<uni-icons type="user" size="14" color="#8a8f99"></uni-icons>
|
||||
{{ item.bizTitle || '暂未标识' }}
|
||||
</view>
|
||||
<!-- <view class="request-info">{{ formatRequestInfo(item) }}</view> -->
|
||||
<!-- <view class="node-info">当前节点:{{ formatNodeName(item) }}</view> -->
|
||||
<view class="time-info">{{ formatDate(item.createTime) }}</view>
|
||||
</view>
|
||||
|
||||
<!-- 状态标签 -->
|
||||
<view class="status-tag" :class="statusType(item.status)">
|
||||
{{ statusText(item.status) }}
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<request-form
|
||||
title="拨款申请"
|
||||
subtitle="填写拨款信息,支持手机端快速提交"
|
||||
biz-type="appropriation"
|
||||
:request-api="submitApply"
|
||||
:initial-form="initialForm"
|
||||
:sections="sections"
|
||||
:flow-fields="flowFields"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listMyFlowInstance } from '@/api/hrm/flow';
|
||||
import RequestForm from '@/components/hrm/RequestForm.vue'
|
||||
import { addAppropriationReq } from '@/api/hrm/appropriation'
|
||||
|
||||
export default {
|
||||
name: 'HrmApproval',
|
||||
data() {
|
||||
return {
|
||||
// 员工列表
|
||||
employees: [],
|
||||
// 待审批列表
|
||||
todoList: [],
|
||||
loading: false,
|
||||
todoCount: 0,
|
||||
todayCount: 0,
|
||||
// 筛选条件
|
||||
query: {
|
||||
bizType: ''
|
||||
},
|
||||
// 申请类型筛选器配置
|
||||
bizTypeList: [{
|
||||
label: '全部',
|
||||
value: ''
|
||||
},
|
||||
{
|
||||
label: '请假',
|
||||
value: 'leave'
|
||||
},
|
||||
{
|
||||
label: '出差',
|
||||
value: 'travel'
|
||||
},
|
||||
{
|
||||
label: '用印',
|
||||
value: 'seal'
|
||||
},
|
||||
{
|
||||
label: '报销',
|
||||
value: 'reimburse'
|
||||
}
|
||||
],
|
||||
bizTypeIndex: 0,
|
||||
// 审批操作弹窗
|
||||
actionDialog: {
|
||||
visible: false,
|
||||
title: '',
|
||||
type: '', // approve/reject
|
||||
task: null
|
||||
},
|
||||
actionForm: {
|
||||
remark: ''
|
||||
},
|
||||
actionSubmitting: false
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.loadEmployees();
|
||||
},
|
||||
onShow() {
|
||||
this.loadHistory();
|
||||
},
|
||||
methods: {
|
||||
// async loadCurrentEmployee () {
|
||||
// try {
|
||||
// const userId = this.$store?.state?.user?.id
|
||||
// if (!userId) {
|
||||
// this.$message.warning('无法获取当前用户信息,请重新登录')
|
||||
// this.loadHistory() // Still try to load history if user is not found
|
||||
// return
|
||||
// }
|
||||
|
||||
// const res = await getEmployeeByUserId(userId)
|
||||
// if (res.code === 200 && res.data) {
|
||||
// this.currentEmp = res.data
|
||||
// } else {
|
||||
// this.$message.warning('未找到当前用户对应的员工信息')
|
||||
// }
|
||||
// } catch (err) {
|
||||
// console.error('加载员工信息失败', err)
|
||||
// this.$message.error('加载员工信息失败')
|
||||
// } finally {
|
||||
// this.loadHistory()
|
||||
// }
|
||||
// },
|
||||
async loadHistory() {
|
||||
try {
|
||||
const params = {
|
||||
pageNum: 1,
|
||||
pageSize: 100,
|
||||
// bizType: this.historyQuery.type || undefined, // 业务类型:leave/travel/seal/reimburse
|
||||
}
|
||||
const res = await listMyFlowInstance(params)
|
||||
if (res.code === 200) {
|
||||
this.todoList = res.rows || []
|
||||
this.todoCount = res.total || 0
|
||||
} else {
|
||||
this.historyList = []
|
||||
this.historyTotal = 0
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('加载申请历史失败:', err)
|
||||
this.historyList = []
|
||||
this.historyTotal = 0
|
||||
}
|
||||
},
|
||||
// 格式化员工信息展示
|
||||
formatEmpLabel(emp) {
|
||||
if (!emp) return '';
|
||||
const name = emp.empName || emp.nickName || emp.userName || '';
|
||||
const no = emp.empNo ? ` · ${emp.empNo}` : '';
|
||||
const dept = emp.deptName ? ` · ${emp.deptName}` : '';
|
||||
return `${name || '员工'}${no}${dept}`.trim();
|
||||
},
|
||||
// 格式化申请人信息
|
||||
formatApplicant(task) {
|
||||
if (!task.bizData) return '加载中...';
|
||||
const empId = task.bizData.empId;
|
||||
const emp = this.employees.find(e => String(e.empId) === String(empId));
|
||||
if (emp) {
|
||||
return this.formatEmpLabel(emp);
|
||||
}
|
||||
return empId ? `员工ID:${empId}` : '未指定';
|
||||
},
|
||||
// 格式化申请信息
|
||||
formatRequestInfo(task) {
|
||||
if (!task.bizData) return '加载中...';
|
||||
const biz = task.bizData;
|
||||
if (task.bizType === 'leave') {
|
||||
return `${biz.leaveType || '请假'} · ${this.formatDuration(biz)}`;
|
||||
} else if (task.bizType === 'travel') {
|
||||
return `${biz.travelType || '出差'} · ${biz.destination || ''}`;
|
||||
} else if (task.bizType === 'seal') {
|
||||
return `${biz.sealType || '用印'} · ${biz.applyFileIds ? '已上传文件' : '未上传'}`;
|
||||
} else if (task.bizType === 'reimburse') {
|
||||
const amt = biz.totalAmount != null ? biz.totalAmount : 0;
|
||||
return `${biz.reimburseType || '报销'} · 金额: ${amt}元`;
|
||||
}
|
||||
return '-';
|
||||
},
|
||||
// 格式化节点名称
|
||||
formatNodeName(task) {
|
||||
return `节点 #${task.nodeId}`;
|
||||
},
|
||||
// 获取申请类型文本
|
||||
getBizTypeText(type) {
|
||||
const map = {
|
||||
leave: '请假',
|
||||
travel: '出差',
|
||||
seal: '用印',
|
||||
reimburse: '报销'
|
||||
};
|
||||
return map[type] || type || '-';
|
||||
},
|
||||
// 获取申请类型标签样式
|
||||
getBizTypeTagType(type) {
|
||||
const map = {
|
||||
leave: 'primary',
|
||||
travel: 'success',
|
||||
seal: 'warning',
|
||||
reimburse: 'danger'
|
||||
};
|
||||
return map[type] || 'info';
|
||||
},
|
||||
// 获取状态文本
|
||||
statusText(status) {
|
||||
const map = {
|
||||
pending: '待审批',
|
||||
running: '待审批',
|
||||
draft: '草稿',
|
||||
approved: '已通过',
|
||||
rejected: '已驳回'
|
||||
};
|
||||
return map[status] || status || '-';
|
||||
},
|
||||
// 获取状态标签样式
|
||||
statusType(status) {
|
||||
if (!status) return 'info';
|
||||
const map = {
|
||||
pending: 'warning',
|
||||
running: 'warning',
|
||||
draft: 'info',
|
||||
approved: 'success',
|
||||
rejected: 'danger'
|
||||
};
|
||||
return map[status] || 'info';
|
||||
},
|
||||
// 格式化日期
|
||||
formatDate(val) {
|
||||
if (!val) return '';
|
||||
const d = new Date(val);
|
||||
const p = n => (n < 10 ? `0${n}` : n);
|
||||
return `${d.getFullYear()}-${p(d.getMonth() + 1)}-${p(d.getDate())} ${p(d.getHours())}:${p(d.getMinutes())}`;
|
||||
},
|
||||
// 格式化时长
|
||||
formatDuration(biz) {
|
||||
if (biz.hours) return `${biz.hours}h`;
|
||||
if (biz.startTime && biz.endTime) {
|
||||
const ms = new Date(biz.endTime).getTime() - new Date(biz.startTime).getTime();
|
||||
if (ms > 0) return `${(ms / 3600000).toFixed(1)}h`;
|
||||
}
|
||||
return '-';
|
||||
},
|
||||
// 加载员工列表
|
||||
loadEmployees() {
|
||||
listEmployee({
|
||||
pageNum: 1,
|
||||
pageSize: 1000
|
||||
}).then(res => {
|
||||
this.employees = res.rows || res.data || [];
|
||||
}).catch(() => {
|
||||
this.employees = [];
|
||||
});
|
||||
},
|
||||
// 加载待办列表
|
||||
async loadTodoList() {
|
||||
this.loading = true;
|
||||
try {
|
||||
const userId = this.$store?.getters.storeOaId;
|
||||
console.log(this.$store?.getters.storeOaId)
|
||||
if (!userId) {
|
||||
uni.showToast({
|
||||
title: '无法获取当前用户信息,请重新登录',
|
||||
icon: 'error'
|
||||
});
|
||||
this.loading = false;
|
||||
return;
|
||||
}
|
||||
const res = await listTodoFlowTask(userId);
|
||||
let list = res.data || [];
|
||||
// 前端过滤 bizType
|
||||
if (this.query.bizType) {
|
||||
list = list.filter(item => item.bizType === this.query.bizType);
|
||||
}
|
||||
|
||||
this.todoList = list;
|
||||
this.todoCount = list.length;
|
||||
this.todayCount = 0; // 可根据实际需求实现今日处理数量统计
|
||||
} catch (err) {
|
||||
console.error('加载待办任务失败:', err);
|
||||
uni.showToast({
|
||||
title: '加载待办任务失败',
|
||||
icon: 'error'
|
||||
});
|
||||
this.todoList = [];
|
||||
this.todoCount = 0;
|
||||
} finally {
|
||||
this.loading = false;
|
||||
}
|
||||
},
|
||||
// 跳转详情页
|
||||
goDetail(task) {
|
||||
if (!task || !task.bizId) {
|
||||
uni.showToast({
|
||||
title: '缺少bizId,无法打开详情',
|
||||
icon: 'none'
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (!task || !task.bizType) {
|
||||
uni.showToast({
|
||||
title: '未知的申请类型',
|
||||
icon: 'none'
|
||||
});
|
||||
return;
|
||||
}
|
||||
uni.navigateTo({
|
||||
url: `/pages/workbench/hrm/detail/detail?bizId=${task.bizId}&bizType=${task.bizType}`
|
||||
});
|
||||
},
|
||||
// 申请类型筛选变更
|
||||
handleBizTypeChange(e) {
|
||||
this.bizTypeIndex = e.detail.value;
|
||||
this.query.bizType = this.bizTypeList[this.bizTypeIndex].value;
|
||||
this.loadTodoList();
|
||||
},
|
||||
// 长按弹出操作菜单
|
||||
showActionMenu(task) {
|
||||
uni.showActionSheet({
|
||||
itemList: ['查看详情', '审批通过', '审批驳回'],
|
||||
success: (res) => {
|
||||
switch (res.tapIndex) {
|
||||
case 0: // 查看详情
|
||||
this.goDetail(task);
|
||||
break;
|
||||
case 1: // 审批通过
|
||||
approveFlowTask(task.taskId).then(() => {
|
||||
uni.showToast({
|
||||
title: '已通过审批',
|
||||
icon: 'none'
|
||||
})
|
||||
this.loadTodoList()
|
||||
})
|
||||
break;
|
||||
case 2: // 审批驳回
|
||||
rejectFlowTask(task.taskId).then(() => {
|
||||
uni.showToast({
|
||||
title: '已驳回',
|
||||
icon: 'none'
|
||||
})
|
||||
this.loadTodoList()
|
||||
})
|
||||
break;
|
||||
}
|
||||
},
|
||||
fail: (res) => {
|
||||
console.log('取消操作:', res);
|
||||
}
|
||||
});
|
||||
},
|
||||
// 提交审批操作
|
||||
submitAction() {
|
||||
if (!this.actionDialog.task) return;
|
||||
this.actionSubmitting = true;
|
||||
const {
|
||||
task,
|
||||
type
|
||||
} = this.actionDialog;
|
||||
const action = type === 'approve' ? approveFlowTask : rejectFlowTask;
|
||||
|
||||
action(task.taskId, {
|
||||
remark: this.actionForm.remark
|
||||
})
|
||||
.then(() => {
|
||||
uni.showToast({
|
||||
title: type === 'approve' ? '审批通过' : '已驳回',
|
||||
icon: 'success'
|
||||
});
|
||||
this.actionDialog.visible = false;
|
||||
this.loadTodoList();
|
||||
})
|
||||
.catch(err => {
|
||||
console.error('审批操作失败:', err);
|
||||
uni.showToast({
|
||||
title: '操作失败',
|
||||
icon: 'error'
|
||||
});
|
||||
})
|
||||
.finally(() => {
|
||||
this.actionSubmitting = false;
|
||||
this.actionForm.remark = '';
|
||||
});
|
||||
}
|
||||
export default {
|
||||
components: { RequestForm },
|
||||
data() {
|
||||
return {
|
||||
initialForm: { appropriationType: '', amount: '', reason: '', remark: '' },
|
||||
sections: [
|
||||
{ key: 'basic', title: '基础信息', fields: [
|
||||
{ key: 'appropriationType', label: '拨款类型', type: 'select', required: true, placeholder: '请选择拨款类型', options: ['项目拨款', '部门拨款', '专项拨款', '备用金拨款', '其他'] },
|
||||
{ key: 'amount', label: '拨款金额', type: 'input', inputType: 'digit', required: true, placeholder: '请输入金额' }
|
||||
]},
|
||||
{ key: 'desc', title: '说明', fields: [
|
||||
{ key: 'reason', label: '用途说明', type: 'textarea', required: true, placeholder: '请说明拨款用途与依据' },
|
||||
{ key: 'remark', label: '备注', type: 'textarea', required: false, placeholder: '可选' }
|
||||
]}
|
||||
],
|
||||
flowFields: [
|
||||
{ key: 'appropriationType', label: '拨款类型', required: true },
|
||||
{ key: 'amount', label: '拨款金额', required: true },
|
||||
{ key: 'reason', label: '用途说明', required: true }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: { submitApply(payload) { return addAppropriationReq(payload) } }
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.hrm-page {
|
||||
min-height: 100vh;
|
||||
background-color: #f8f9fb;
|
||||
padding: 16rpx;
|
||||
}
|
||||
|
||||
// 顶部统计栏
|
||||
.summary-bar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 16rpx;
|
||||
padding: 20rpx;
|
||||
margin-bottom: 16rpx;
|
||||
border: 1px solid #e6e8ed;
|
||||
border-radius: 10rpx;
|
||||
background: #ffffff;
|
||||
|
||||
.summary-left {
|
||||
.page-title {
|
||||
font-size: 32rpx;
|
||||
font-weight: 800;
|
||||
color: #2b2f36;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.page-desc {
|
||||
margin-top: 8rpx;
|
||||
font-size: 24rpx;
|
||||
color: #8a8f99;
|
||||
}
|
||||
}
|
||||
|
||||
.summary-right {
|
||||
display: flex;
|
||||
gap: 16rpx;
|
||||
|
||||
.metric {
|
||||
min-width: 100rpx;
|
||||
padding: 12rpx 16rpx;
|
||||
border: 1px solid #e6e8ed;
|
||||
border-radius: 10rpx;
|
||||
background: #fcfdff;
|
||||
text-align: center;
|
||||
|
||||
.metric-value {
|
||||
font-size: 32rpx;
|
||||
font-weight: 800;
|
||||
color: #2b2f36;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.metric-label {
|
||||
margin-top: 4rpx;
|
||||
font-size: 24rpx;
|
||||
color: #8a8f99;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 筛选栏
|
||||
.filter-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 16rpx;
|
||||
background: #fff;
|
||||
border-radius: 8rpx;
|
||||
margin-bottom: 16rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.filter-label {
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.picker-text {
|
||||
flex: 1;
|
||||
font-size: 28rpx;
|
||||
color: #666;
|
||||
padding: 8rpx 16rpx;
|
||||
border: 1px solid #e6e8ed;
|
||||
border-radius: 6rpx;
|
||||
}
|
||||
|
||||
.refresh-btn {
|
||||
background-color: #409eff;
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: 6rpx;
|
||||
font-size: 24rpx;
|
||||
padding: 8rpx 16rpx;
|
||||
}
|
||||
}
|
||||
|
||||
// 审批列表
|
||||
.approval-list {
|
||||
height: calc(100vh - 160rpx);
|
||||
|
||||
.loading-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 200rpx;
|
||||
}
|
||||
|
||||
.empty-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 100rpx 0;
|
||||
|
||||
.empty-text {
|
||||
margin-top: 20rpx;
|
||||
font-size: 28rpx;
|
||||
color: #909399;
|
||||
}
|
||||
}
|
||||
|
||||
.list-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 16rpx;
|
||||
padding: 20rpx;
|
||||
margin-bottom: 12rpx;
|
||||
background: #fff;
|
||||
border-radius: 10rpx;
|
||||
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
|
||||
|
||||
.item-tag {
|
||||
padding: 6rpx 12rpx;
|
||||
border-radius: 4rpx;
|
||||
font-size: 22rpx;
|
||||
color: #fff;
|
||||
|
||||
&.primary {
|
||||
background-color: #409eff;
|
||||
}
|
||||
|
||||
&.success {
|
||||
background-color: #67c23a;
|
||||
}
|
||||
|
||||
&.warning {
|
||||
background-color: #e6a23c;
|
||||
}
|
||||
|
||||
&.danger {
|
||||
background-color: #f56c6c;
|
||||
}
|
||||
|
||||
&.info {
|
||||
background-color: #909399;
|
||||
}
|
||||
}
|
||||
|
||||
.item-main {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8rpx;
|
||||
|
||||
.applicant {
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8rpx;
|
||||
}
|
||||
|
||||
.request-info {
|
||||
font-size: 26rpx;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.node-info {
|
||||
font-size: 24rpx;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.time-info {
|
||||
font-size: 22rpx;
|
||||
color: #999;
|
||||
margin-top: 4rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.status-tag {
|
||||
padding: 6rpx 12rpx;
|
||||
border-radius: 4rpx;
|
||||
font-size: 22rpx;
|
||||
color: #fff;
|
||||
|
||||
&.warning {
|
||||
background-color: #e6a23c;
|
||||
}
|
||||
|
||||
&.info {
|
||||
background-color: #909399;
|
||||
}
|
||||
|
||||
&.success {
|
||||
background-color: #67c23a;
|
||||
}
|
||||
|
||||
&.danger {
|
||||
background-color: #f56c6c;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 审批意见输入框
|
||||
.remark-textarea {
|
||||
width: 100%;
|
||||
min-height: 120rpx;
|
||||
padding: 16rpx;
|
||||
border: 1px solid #e6e8ed;
|
||||
border-radius: 8rpx;
|
||||
font-size: 28rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
</style>
|
||||
<style scoped></style>
|
||||
@@ -1,946 +1,50 @@
|
||||
<template>
|
||||
<view class="request-detail">
|
||||
<!-- 页面标题栏 -->
|
||||
<view class="page-header" v-if="!embedded">
|
||||
<uni-nav-bar
|
||||
left-icon="back"
|
||||
title="请假详情"
|
||||
@clickLeft="navigateBack"
|
||||
right-text="刷新"
|
||||
@clickRight="loadDetail"
|
||||
></uni-nav-bar>
|
||||
</view>
|
||||
|
||||
<!-- 主内容区 -->
|
||||
<scroll-view class="content-scroll" scroll-y>
|
||||
<!-- 加载中状态 -->
|
||||
<view v-if="loading" class="loading-container">
|
||||
<uni-load-more type="loading" color="#409EFF"></uni-load-more>
|
||||
</view>
|
||||
|
||||
<view v-else class="content-wrapper">
|
||||
<!-- 顶部摘要 -->
|
||||
<view class="form-summary">
|
||||
<view class="summary-left">
|
||||
<view class="summary-title">{{ detail.leaveType || '请假申请' }}</view>
|
||||
<view class="summary-sub">
|
||||
申请编号:{{ detail.bizId || '-' }} ·
|
||||
状态:<view class="status-tag" :class="statusType">{{ statusText }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="summary-right">
|
||||
<view class="summary-item">
|
||||
<view class="k">申请人</view>
|
||||
<view class="v">{{ detail.createBy || '-' }}<text v-if="detail.empNo" class="text-muted">({{ detail.empNo }})</text></view>
|
||||
</view>
|
||||
<view class="summary-item">
|
||||
<view class="k">请假时长</view>
|
||||
<view class="v">{{ detail.hours || '0' }} 小时</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 请假日期信息 -->
|
||||
<view class="block-title">请假日期</view>
|
||||
<view class="inner-card">
|
||||
<view class="descriptions-list">
|
||||
<view class="descriptions-item">
|
||||
<view class="label">开始时间</view>
|
||||
<view class="value date-time">{{ formatDate(detail.startTime) }}</view>
|
||||
</view>
|
||||
<view class="descriptions-item">
|
||||
<view class="label">结束时间</view>
|
||||
<view class="value date-time">{{ formatDate(detail.endTime) }}</view>
|
||||
</view>
|
||||
<view class="descriptions-item">
|
||||
<view class="label">请假类型</view>
|
||||
<view class="value">{{ detail.leaveType || '-' }}</view>
|
||||
</view>
|
||||
<view class="descriptions-item">
|
||||
<view class="label">时长(小时)</view>
|
||||
<view class="value">{{ detail.hours || '0' }} 小时</view>
|
||||
</view>
|
||||
<view class="descriptions-item">
|
||||
<view class="label">创建时间</view>
|
||||
<view class="value">{{ formatDate(detail.createTime) }}</view>
|
||||
</view>
|
||||
<view class="descriptions-item">
|
||||
<view class="label">更新时间</view>
|
||||
<view class="value">{{ formatDate(detail.updateTime) }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 请假理由说明 -->
|
||||
<view class="block-title">请假理由说明</view>
|
||||
<view class="inner-card">
|
||||
<view class="reason-section">
|
||||
<view class="reason-label">事由</view>
|
||||
<view class="reason-content">{{ detail.reason || '未填写' }}</view>
|
||||
</view>
|
||||
<view v-if="detail.handover" class="reason-section">
|
||||
<view class="reason-label">工作交接</view>
|
||||
<view class="reason-content">{{ detail.handover }}</view>
|
||||
</view>
|
||||
<view v-if="detail.remark" class="reason-section">
|
||||
<view class="reason-label">备注</view>
|
||||
<view class="reason-content">{{ detail.remark }}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 申请附件 -->
|
||||
<view class="block-title">申请附件</view>
|
||||
<view class="inner-card" v-if="attachmentLoading">
|
||||
<view class="loading-small">
|
||||
<uni-load-more type="loading" color="#409EFF" size="small"></uni-load-more>
|
||||
</view>
|
||||
</view>
|
||||
<view class="inner-card" v-else>
|
||||
<view v-if="attachmentList.length > 0" class="attachment-list">
|
||||
<view v-for="file in attachmentList" :key="file.ossId" class="attachment-item">
|
||||
<view class="file-info">
|
||||
<uni-icons type="paper" size="24" color="#9aa3b2"></uni-icons>
|
||||
<view class="file-details">
|
||||
<view class="file-name">{{ file.originalName || file.fileName || `文件${file.ossId}` }}</view>
|
||||
<view class="file-meta">
|
||||
<text v-if="file.fileSize">{{ formatFileSize(file.fileSize) }}</text>
|
||||
<text v-if="file.createTime" class="file-time">{{ formatDate(file.createTime) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="file-actions">
|
||||
<button class="file-btn" size="mini" @click="previewFile(file)">预览</button>
|
||||
<button class="file-btn" size="mini" @click="downloadFile(file.ossId)">下载</button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="empty">暂无附件</view>
|
||||
</view>
|
||||
|
||||
<!-- 审批意见 -->
|
||||
<view v-if="currentTask" class="approve-section">
|
||||
<view class="section-title">审批意见</view>
|
||||
<textarea
|
||||
v-model="approveForm.comment"
|
||||
placeholder="请输入审批意见(可选)"
|
||||
class="approve-textarea"
|
||||
></textarea>
|
||||
</view>
|
||||
|
||||
<!-- 审批操作按钮 -->
|
||||
<view v-if="!embedded && (canApprove || canWithdraw)" class="action-buttons">
|
||||
<button
|
||||
v-if="canApprove"
|
||||
class="btn approve-btn"
|
||||
:loading="actionLoading"
|
||||
@click="handleApprove"
|
||||
>
|
||||
通过
|
||||
</button>
|
||||
<button
|
||||
v-if="canApprove"
|
||||
class="btn reject-btn"
|
||||
:loading="actionLoading"
|
||||
@click="handleReject"
|
||||
>
|
||||
驳回
|
||||
</button>
|
||||
<button
|
||||
v-if="canWithdraw"
|
||||
class="btn withdraw-btn"
|
||||
:loading="actionLoading"
|
||||
@click="handleWithdraw"
|
||||
>
|
||||
撤回
|
||||
</button>
|
||||
</view>
|
||||
|
||||
<!-- 流转历史 -->
|
||||
<view class="flow-history">
|
||||
<view class="section-title">流转历史</view>
|
||||
<view v-if="flowHistory.length > 0" class="timeline">
|
||||
<view
|
||||
v-for="(item, index) in flowHistory"
|
||||
:key="index"
|
||||
class="timeline-item"
|
||||
>
|
||||
<!-- 时间轴点 -->
|
||||
<view class="timeline-dot" :class="getTimelineType(item.action)"></view>
|
||||
<!-- 时间轴内容 -->
|
||||
<view class="timeline-content">
|
||||
<view class="timeline-time">{{ formatDate(item.createTime) }}</view>
|
||||
<view class="timeline-card">
|
||||
<view class="action-text">{{ getActionText(item.action) }}</view>
|
||||
<view class="operator">处理人: {{ item.createBy || '系统' }}</view>
|
||||
<view v-if="item.comment" class="comment">意见: {{ item.comment }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="no-data">暂无流转记录</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<request-form
|
||||
title="请假申请"
|
||||
subtitle="请完善请假信息,支持手机端快速提交"
|
||||
biz-type="leave"
|
||||
:request-api="submitLeave"
|
||||
:initial-form="initialForm"
|
||||
:sections="sections"
|
||||
:flow-fields="flowFields"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// 导入API(需适配Uniapp的request请求,此处保留原API结构,实际需替换为uni.request)
|
||||
import { getLeaveReq } from '@/api/hrm/leave'
|
||||
import { getTodoTaskByBiz, approveFlowTask, rejectFlowTask, withdrawFlowTask, listFlowAction, queryInstanceByBiz, getFlowInstance, listFlowNode } from '@/api/hrm/flow'
|
||||
import { listByIds } from '@/api/oa/oss'
|
||||
import RequestForm from '@/components/hrm/RequestForm.vue'
|
||||
import { addLeaveReq } from '@/api/hrm/leave'
|
||||
|
||||
export default {
|
||||
name: 'LeaveDetail',
|
||||
props: {
|
||||
embedded: { type: Boolean, default: false }
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
loading: false,
|
||||
actionLoading: false,
|
||||
detail: {},
|
||||
currentTask: null,
|
||||
flowHistory: [],
|
||||
approveForm: {
|
||||
comment: ''
|
||||
},
|
||||
attachmentList: [],
|
||||
attachmentLoading: false,
|
||||
flowInstance: null, // 流程实例信息
|
||||
flowNodes: [], // 流程节点列表
|
||||
currentNode: null, // 当前节点信息
|
||||
bizId: null // 从onLoad获取的业务ID
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
statusText() {
|
||||
const statusMap = {
|
||||
'draft': '草稿',
|
||||
'pending': '审批中',
|
||||
'approved': '已通过',
|
||||
'rejected': '已驳回',
|
||||
'withdrawn': '已撤回'
|
||||
}
|
||||
return statusMap[this.detail.status] || this.detail.status || '未知'
|
||||
},
|
||||
statusType() {
|
||||
const typeMap = {
|
||||
'draft': 'info',
|
||||
'pending': 'warning',
|
||||
'approved': 'success',
|
||||
'rejected': 'danger',
|
||||
'withdrawn': 'info'
|
||||
}
|
||||
return typeMap[this.detail.status] || 'info'
|
||||
},
|
||||
canWithdraw() {
|
||||
// 只有待审批状态且是当前用户提交的才能撤回
|
||||
return this.detail.status === 'pending' && this.detail.createBy === this.$store.getters.name
|
||||
},
|
||||
canApprove() {
|
||||
// 只有待审批状态且是当前用户待审批的才能审批
|
||||
return this.detail.status === 'pending' && (this.currentTask?.assigneeUserName === this.$store.getters.name || this.currentTask?.assigneeUserId === this.$store.getters.id)
|
||||
}
|
||||
},
|
||||
onLoad(options) {
|
||||
// Uniapp通过onLoad获取页面参数
|
||||
this.bizId = options.bizId || options.id
|
||||
this.loadDetail()
|
||||
},
|
||||
methods: {
|
||||
// 返回上一页(适配Uniapp路由)
|
||||
navigateBack() {
|
||||
uni.navigateBack({
|
||||
delta: 1
|
||||
})
|
||||
},
|
||||
async loadDetail() {
|
||||
const bizId = this.bizId
|
||||
if (!bizId) return
|
||||
|
||||
this.loading = true
|
||||
try {
|
||||
// 加载请假单详情
|
||||
const detailRes = await getLeaveReq(bizId)
|
||||
this.detail = detailRes.data || {}
|
||||
|
||||
// 加载流程实例信息
|
||||
await this.loadFlowInstance()
|
||||
|
||||
// 加载当前待办任务
|
||||
await this.loadCurrentTask()
|
||||
|
||||
// 加载流转历史和附件
|
||||
await Promise.all([
|
||||
this.loadFlowHistory(),
|
||||
this.loadAttachments()
|
||||
])
|
||||
} catch (error) {
|
||||
console.error('加载详情失败:', error)
|
||||
uni.showToast({
|
||||
title: '加载详情失败',
|
||||
icon: 'error'
|
||||
})
|
||||
} finally {
|
||||
this.loading = false
|
||||
}
|
||||
},
|
||||
|
||||
async loadCurrentTask() {
|
||||
const bizId = this.bizId
|
||||
if (!bizId) {
|
||||
this.currentTask = null
|
||||
return
|
||||
}
|
||||
try {
|
||||
const res = await getTodoTaskByBiz('leave', bizId)
|
||||
this.currentTask = res?.data || null
|
||||
} catch (error) {
|
||||
console.error('加载待办任务失败:', error)
|
||||
this.currentTask = null
|
||||
}
|
||||
},
|
||||
async loadFlowInstance() {
|
||||
if (!this.detail.instId) {
|
||||
// 如果没有instId,尝试通过bizType和bizId查询
|
||||
try {
|
||||
const res = await queryInstanceByBiz('leave', this.bizId)
|
||||
const instances = res.data || []
|
||||
if (instances.length > 0) {
|
||||
this.flowInstance = instances[0]
|
||||
this.detail.instId = instances[0].instId
|
||||
// 加载流程节点信息
|
||||
await this.loadFlowNodes()
|
||||
// 根据当前节点ID查找节点信息
|
||||
if (this.flowInstance.currentNodeId) {
|
||||
this.currentNode = this.flowNodes.find(n => n.nodeId === this.flowInstance.currentNodeId) || null
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.error('加载流程实例失败:', e)
|
||||
}
|
||||
} else {
|
||||
// 如果有instId,直接加载
|
||||
try {
|
||||
const res = await getFlowInstance(this.detail.instId)
|
||||
this.flowInstance = res.data || null
|
||||
// 加载流程节点信息
|
||||
await this.loadFlowNodes()
|
||||
// 根据当前节点ID查找节点信息
|
||||
if (this.flowInstance && this.flowInstance.currentNodeId) {
|
||||
this.currentNode = this.flowNodes.find(n => n.nodeId === this.flowInstance.currentNodeId) || null
|
||||
}
|
||||
} catch (e) {
|
||||
console.error('加载流程实例失败:', e)
|
||||
}
|
||||
}
|
||||
},
|
||||
async loadFlowNodes() {
|
||||
if (!this.flowInstance || !this.flowInstance.tplId) {
|
||||
this.flowNodes = []
|
||||
return
|
||||
}
|
||||
try {
|
||||
const res = await listFlowNode({ tplId: this.flowInstance.tplId, pageNum: 1, pageSize: 500 })
|
||||
this.flowNodes = res.rows || res.data || []
|
||||
} catch (e) {
|
||||
console.error('加载流程节点失败:', e)
|
||||
this.flowNodes = []
|
||||
}
|
||||
},
|
||||
|
||||
async loadFlowHistory() {
|
||||
// 基于 instId 拉取流转历史(优先用 instId;无则不查)
|
||||
const instId = this.detail?.instId
|
||||
if (!instId) {
|
||||
this.flowHistory = []
|
||||
return
|
||||
}
|
||||
try {
|
||||
const res = await listFlowAction({ instId, pageNum: 1, pageSize: 200 })
|
||||
this.flowHistory = res.rows || res.data || []
|
||||
} catch (error) {
|
||||
this.flowHistory = []
|
||||
}
|
||||
},
|
||||
|
||||
async handleApprove() {
|
||||
await this.handleAction('approve', '通过成功', '通过')
|
||||
},
|
||||
|
||||
async handleReject() {
|
||||
await this.handleAction('reject', '已驳回', '驳回')
|
||||
},
|
||||
|
||||
async handleWithdraw() {
|
||||
await this.handleAction('withdraw', '已撤回', '撤回')
|
||||
},
|
||||
|
||||
async handleAction(action, successMsg, actionName) {
|
||||
if (!this.currentTask?.taskId) {
|
||||
uni.showToast({
|
||||
title: '未找到待办任务',
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
|
||||
// Uniapp确认弹窗
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: `确定${actionName}该申请吗?`,
|
||||
success: async (res) => {
|
||||
if (res.confirm) {
|
||||
this.actionLoading = true
|
||||
try {
|
||||
const payload = { remark: this.approveForm.comment }
|
||||
|
||||
if (action === 'approve') {
|
||||
await approveFlowTask(this.currentTask.taskId, payload)
|
||||
} else if (action === 'reject') {
|
||||
await rejectFlowTask(this.currentTask.taskId, payload)
|
||||
} else if (action === 'withdraw') {
|
||||
await withdrawFlowTask(this.currentTask.taskId, payload)
|
||||
}
|
||||
|
||||
uni.showToast({
|
||||
title: successMsg,
|
||||
icon: 'success'
|
||||
})
|
||||
await this.loadDetail()
|
||||
// 清空审批意见
|
||||
this.approveForm.comment = ''
|
||||
} catch (error) {
|
||||
console.error(`${actionName}失败:`, error)
|
||||
uni.showToast({
|
||||
title: error.message || `${actionName}失败`,
|
||||
icon: 'error'
|
||||
})
|
||||
} finally {
|
||||
this.actionLoading = false
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
formatDate(val) {
|
||||
if (!val) return '-'
|
||||
const d = new Date(val)
|
||||
const p = n => (n < 10 ? `0${n}` : n)
|
||||
return `${d.getFullYear()}-${p(d.getMonth() + 1)}-${p(d.getDate())} ${p(d.getHours())}:${p(d.getMinutes())}`
|
||||
},
|
||||
|
||||
getActionText(action) {
|
||||
const map = {
|
||||
'submit': '提交申请',
|
||||
'approve': '通过',
|
||||
'reject': '驳回',
|
||||
'withdraw': '撤回',
|
||||
'cancel': '取消'
|
||||
}
|
||||
return map[action] || action
|
||||
},
|
||||
|
||||
getTimelineType(action) {
|
||||
const map = {
|
||||
'submit': 'primary',
|
||||
'approve': 'success',
|
||||
'reject': 'danger',
|
||||
'withdraw': 'info',
|
||||
'cancel': 'info'
|
||||
}
|
||||
return map[action] || 'info'
|
||||
},
|
||||
async loadAttachments() {
|
||||
const fileIds = this.detail.accessoryApplyIds || this.detail.applyFileIds
|
||||
if (!fileIds) {
|
||||
this.attachmentList = []
|
||||
return
|
||||
}
|
||||
const ids = String(fileIds).split(',').map(id => id.trim()).filter(Boolean)
|
||||
if (ids.length === 0) {
|
||||
this.attachmentList = []
|
||||
return
|
||||
}
|
||||
this.attachmentLoading = true
|
||||
try {
|
||||
const res = await listByIds(ids)
|
||||
this.attachmentList = res.data || []
|
||||
} catch (e) {
|
||||
uni.showToast({
|
||||
title: '加载附件失败:' + (e.message || '未知错误'),
|
||||
icon: 'error'
|
||||
})
|
||||
this.attachmentList = []
|
||||
} finally {
|
||||
this.attachmentLoading = false
|
||||
}
|
||||
},
|
||||
formatFileSize(bytes) {
|
||||
if (!bytes) return '-'
|
||||
const units = ['B', 'KB', 'MB', 'GB']
|
||||
let size = Number(bytes)
|
||||
let unitIndex = 0
|
||||
while (size >= 1024 && unitIndex < units.length - 1) {
|
||||
size /= 1024
|
||||
unitIndex++
|
||||
}
|
||||
return `${size.toFixed(2)} ${units[unitIndex]}`
|
||||
},
|
||||
// 移动端附件预览
|
||||
previewFile(file) {
|
||||
if (file.url) {
|
||||
// 图片类文件直接预览,其他文件提示下载
|
||||
const fileExt = (file.originalName || '').split('.').pop().toLowerCase()
|
||||
const imageExts = ['jpg', 'jpeg', 'png', 'gif', 'bmp']
|
||||
|
||||
if (imageExts.includes(fileExt)) {
|
||||
uni.previewImage({
|
||||
urls: [file.url],
|
||||
current: file.url
|
||||
})
|
||||
} else {
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '该文件不支持预览,是否下载?',
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
this.downloadFile(file.ossId)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '文件URL不存在',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
},
|
||||
// 移动端附件下载
|
||||
downloadFile(ossId) {
|
||||
uni.showLoading({
|
||||
title: '下载中...'
|
||||
})
|
||||
// Uniapp下载文件API
|
||||
uni.downloadFile({
|
||||
url: `/system/oss/download/${ossId}`,
|
||||
success: (res) => {
|
||||
uni.hideLoading()
|
||||
if (res.statusCode === 200) {
|
||||
// 打开下载的文件
|
||||
uni.openDocument({
|
||||
filePath: res.tempFilePath,
|
||||
showMenu: true,
|
||||
fail: (err) => {
|
||||
uni.showToast({
|
||||
title: '打开文件失败',
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
})
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '下载失败',
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
},
|
||||
fail: (err) => {
|
||||
uni.hideLoading()
|
||||
uni.showToast({
|
||||
title: '下载失败:' + err.message,
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
components: { RequestForm },
|
||||
data() {
|
||||
return {
|
||||
initialForm: { leaveType: '', startTime: '', endTime: '', hours: '', reason: '', handover: '', remark: '' },
|
||||
sections: [
|
||||
{ key: 'basic', title: '基础信息', fields: [
|
||||
{ key: 'leaveType', label: '请假类型', type: 'select', required: true, placeholder: '请选择请假类型', options: ['年假', '事假', '病假', '调休', '婚假', '丧假', '其他'] },
|
||||
{ key: 'startTime', label: '开始时间', type: 'datetime', required: true, placeholder: '请选择开始时间' },
|
||||
{ key: 'endTime', label: '结束时间', type: 'datetime', required: true, placeholder: '请选择结束时间' },
|
||||
{ key: 'hours', label: '时长(小时)', type: 'computed', required: true, placeholder: '自动计算' }
|
||||
]},
|
||||
{ key: 'desc', title: '说明', fields: [
|
||||
{ key: 'reason', label: '事由', type: 'textarea', required: true, placeholder: '请填写请假原因' },
|
||||
{ key: 'handover', label: '工作交接', type: 'textarea', required: false, placeholder: '请填写交接安排(可选)' },
|
||||
{ key: 'remark', label: '备注', type: 'textarea', required: false, placeholder: '可选' }
|
||||
]}
|
||||
],
|
||||
flowFields: [
|
||||
{ key: 'leaveType', label: '请假类型', required: true },
|
||||
{ key: 'startTime', label: '开始时间', required: true },
|
||||
{ key: 'endTime', label: '结束时间', required: true },
|
||||
{ key: 'hours', label: '时长', required: true },
|
||||
{ key: 'reason', label: '事由', required: true }
|
||||
]
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
submitLeave(payload) { return addLeaveReq(payload) }
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.request-detail {
|
||||
min-height: 100vh;
|
||||
background-color: #f5f5f5;
|
||||
|
||||
.page-header {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.content-scroll {
|
||||
height: calc(100vh - 44px);
|
||||
padding: 16rpx;
|
||||
}
|
||||
|
||||
.loading-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 400rpx;
|
||||
}
|
||||
|
||||
.content-wrapper {
|
||||
gap: 16rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.form-summary {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12rpx;
|
||||
padding: 16rpx;
|
||||
border: 1px solid #e6e8ed;
|
||||
border-radius: 10rpx;
|
||||
background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
|
||||
}
|
||||
|
||||
.summary-title {
|
||||
font-size: 32rpx;
|
||||
font-weight: 800;
|
||||
color: #2b2f36;
|
||||
}
|
||||
|
||||
.summary-sub {
|
||||
font-size: 24rpx;
|
||||
color: #8a8f99;
|
||||
}
|
||||
|
||||
.status-tag {
|
||||
padding: 4rpx 8rpx;
|
||||
border-radius: 4rpx;
|
||||
font-size: 22rpx;
|
||||
color: #fff;
|
||||
|
||||
&.success {
|
||||
background-color: #67c23a;
|
||||
}
|
||||
&.danger {
|
||||
background-color: #f56c6c;
|
||||
}
|
||||
&.warning {
|
||||
background-color: #e6a23c;
|
||||
}
|
||||
&.info {
|
||||
background-color: #909399;
|
||||
}
|
||||
}
|
||||
|
||||
.summary-right {
|
||||
display: flex;
|
||||
gap: 24rpx;
|
||||
margin-top: 12rpx;
|
||||
}
|
||||
|
||||
.summary-item .k {
|
||||
font-size: 24rpx;
|
||||
color: #8a8f99;
|
||||
}
|
||||
|
||||
.summary-item .v {
|
||||
margin-top: 4rpx;
|
||||
font-weight: 700;
|
||||
color: #2b2f36;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
color: #909399;
|
||||
margin-left: 8rpx;
|
||||
font-size: 22rpx;
|
||||
}
|
||||
|
||||
.block-title {
|
||||
margin: 16rpx 0 8rpx;
|
||||
padding-left: 10rpx;
|
||||
font-weight: 700;
|
||||
color: #2f3440;
|
||||
border-left: 6rpx solid #9aa3b2;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.inner-card {
|
||||
border: 1px solid #e6e8ed;
|
||||
border-radius: 8rpx;
|
||||
background-color: #fff;
|
||||
padding: 16rpx;
|
||||
}
|
||||
|
||||
.descriptions-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.descriptions-item {
|
||||
width: 50%;
|
||||
margin-bottom: 16rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.descriptions-item .label {
|
||||
font-size: 24rpx;
|
||||
color: #8a8f99;
|
||||
margin-bottom: 4rpx;
|
||||
}
|
||||
|
||||
.descriptions-item .value {
|
||||
font-size: 26rpx;
|
||||
color: #2b2f36;
|
||||
}
|
||||
|
||||
.date-time {
|
||||
font-weight: 600;
|
||||
color: #2b2f36;
|
||||
}
|
||||
|
||||
.reason-section {
|
||||
margin-bottom: 16rpx;
|
||||
}
|
||||
|
||||
.reason-section:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.reason-label {
|
||||
font-size: 26rpx;
|
||||
font-weight: 600;
|
||||
color: #606266;
|
||||
margin-bottom: 8rpx;
|
||||
}
|
||||
|
||||
.reason-content {
|
||||
padding: 16rpx;
|
||||
background: #f8f9fa;
|
||||
border-radius: 6rpx;
|
||||
color: #2b2f36;
|
||||
line-height: 1.6;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.loading-small {
|
||||
padding: 20rpx 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.attachment-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10rpx;
|
||||
}
|
||||
|
||||
.attachment-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 10rpx 12rpx;
|
||||
border: 1px solid #e6e8ed;
|
||||
border-radius: 8rpx;
|
||||
background: #fafbfc;
|
||||
}
|
||||
|
||||
.file-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10rpx;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.file-details {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.file-name {
|
||||
font-weight: 600;
|
||||
color: #2b2f36;
|
||||
margin-bottom: 4rpx;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.file-meta {
|
||||
font-size: 22rpx;
|
||||
color: #8a8f99;
|
||||
display: flex;
|
||||
gap: 12rpx;
|
||||
}
|
||||
|
||||
.file-time {
|
||||
margin-left: 8rpx;
|
||||
}
|
||||
|
||||
.file-actions {
|
||||
display: flex;
|
||||
gap: 8rpx;
|
||||
}
|
||||
|
||||
.file-btn {
|
||||
font-size: 22rpx;
|
||||
padding: 4rpx 8rpx;
|
||||
background-color: #f5f7fa;
|
||||
color: #409eff;
|
||||
border: none;
|
||||
border-radius: 4rpx;
|
||||
}
|
||||
|
||||
.empty {
|
||||
color: #a0a3ad;
|
||||
font-size: 24rpx;
|
||||
padding: 20rpx 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.approve-section {
|
||||
margin-top: 20rpx;
|
||||
background: #f8f9fa;
|
||||
padding: 15rpx;
|
||||
border-radius: 8rpx;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 28rpx;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10rpx;
|
||||
color: #303133;
|
||||
}
|
||||
|
||||
.approve-textarea {
|
||||
width: 100%;
|
||||
padding: 12rpx;
|
||||
border: 1px solid #e6e8ed;
|
||||
border-radius: 8rpx;
|
||||
background-color: #fff;
|
||||
min-height: 120rpx;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.action-buttons {
|
||||
display: flex;
|
||||
gap: 16rpx;
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
|
||||
.btn {
|
||||
flex: 1;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
border-radius: 8rpx;
|
||||
font-size: 28rpx;
|
||||
border: none;
|
||||
|
||||
&.approve-btn {
|
||||
background-color: #67c23a;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
&.reject-btn {
|
||||
background-color: #f56c6c;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
&.withdraw-btn {
|
||||
background-color: #409eff;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.flow-history {
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
|
||||
.no-data {
|
||||
text-align: center;
|
||||
color: #909399;
|
||||
padding: 40rpx 0;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding-left: 30rpx;
|
||||
margin-left: 10rpx;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 10rpx;
|
||||
top: 10rpx;
|
||||
bottom: 10rpx;
|
||||
width: 2rpx;
|
||||
background-color: #e6e8ed;
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
margin-bottom: 30rpx;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-dot {
|
||||
position: absolute;
|
||||
left: -36rpx;
|
||||
top: 0;
|
||||
width: 20rpx;
|
||||
height: 20rpx;
|
||||
border-radius: 50%;
|
||||
|
||||
&.primary {
|
||||
background-color: #409eff;
|
||||
}
|
||||
&.success {
|
||||
background-color: #67c23a;
|
||||
}
|
||||
&.danger {
|
||||
background-color: #f56c6c;
|
||||
}
|
||||
&.info {
|
||||
background-color: #909399;
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-content {
|
||||
background-color: #fff;
|
||||
border-radius: 8rpx;
|
||||
padding: 16rpx;
|
||||
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.timeline-time {
|
||||
font-size: 22rpx;
|
||||
color: #909399;
|
||||
margin-bottom: 8rpx;
|
||||
}
|
||||
|
||||
.action-text {
|
||||
font-size: 26rpx;
|
||||
font-weight: 600;
|
||||
color: #303133;
|
||||
margin-bottom: 8rpx;
|
||||
}
|
||||
|
||||
.operator {
|
||||
font-size: 24rpx;
|
||||
color: #606266;
|
||||
margin-bottom: 4rpx;
|
||||
}
|
||||
|
||||
.comment {
|
||||
font-size: 24rpx;
|
||||
color: #606266;
|
||||
padding-top: 8rpx;
|
||||
border-top: 1px solid #f0f0f0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<style scoped></style>
|
||||
@@ -1,22 +1,44 @@
|
||||
<template>
|
||||
<view>
|
||||
|
||||
</view>
|
||||
<request-form
|
||||
title="报销申请"
|
||||
subtitle="填写报销信息,支持手机端快速提交"
|
||||
biz-type="reimburse"
|
||||
:request-api="submitReimburse"
|
||||
:initial-form="initialForm"
|
||||
:sections="sections"
|
||||
:flow-fields="flowFields"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
import RequestForm from '@/components/hrm/RequestForm.vue'
|
||||
import { addReimburseReq } from '@/api/hrm/reimburse'
|
||||
|
||||
export default {
|
||||
components: { RequestForm },
|
||||
data() {
|
||||
return {
|
||||
initialForm: { reimburseType: '', totalAmount: '', applyFileIds: '', reason: '', remark: '' },
|
||||
sections: [
|
||||
{ key: 'basic', title: '基础信息', fields: [
|
||||
{ key: 'reimburseType', label: '报销类型', type: 'select', required: true, placeholder: '请选择报销类型', options: ['差旅报销', '招待报销', '采购报销', '办公报销', '其他'] },
|
||||
{ key: 'totalAmount', label: '报销金额', type: 'input', inputType: 'digit', required: true, placeholder: '请输入金额' },
|
||||
{ key: 'applyFileIds', label: '附件', type: 'file', required: false, placeholder: '上传附件文件' }
|
||||
]},
|
||||
{ key: 'desc', title: '说明', fields: [
|
||||
{ key: 'reason', label: '事由', type: 'textarea', required: true, placeholder: '请说明报销用途' },
|
||||
{ key: 'remark', label: '备注', type: 'textarea', required: false, placeholder: '可选' }
|
||||
]}
|
||||
],
|
||||
flowFields: [
|
||||
{ key: 'reimburseType', label: '报销类型', required: true },
|
||||
{ key: 'totalAmount', label: '报销金额', required: true },
|
||||
{ key: 'reason', label: '事由', required: true }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: { submitReimburse(payload) { return addReimburseReq(payload) } }
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
<style scoped></style>
|
||||
@@ -1,22 +1,43 @@
|
||||
<template>
|
||||
<view>
|
||||
|
||||
</view>
|
||||
<request-form
|
||||
title="用印申请"
|
||||
subtitle="填写用印信息,支持手机端快速提交"
|
||||
biz-type="seal"
|
||||
:request-api="submitSeal"
|
||||
:initial-form="initialForm"
|
||||
:sections="sections"
|
||||
:flow-fields="flowFields"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
import RequestForm from '@/components/hrm/RequestForm.vue'
|
||||
import { addSealReq } from '@/api/hrm/seal'
|
||||
|
||||
export default {
|
||||
components: { RequestForm },
|
||||
data() {
|
||||
return {
|
||||
initialForm: { sealType: '', applyFileIds: '', reason: '', remark: '' },
|
||||
sections: [
|
||||
{ key: 'basic', title: '基础信息', fields: [
|
||||
{ key: 'sealType', label: '用印类型', type: 'select', required: true, placeholder: '请选择用印类型', options: ['合同用印', '公章', '财务章', '法人章', '其他'] },
|
||||
{ key: 'applyFileIds', label: '附件', type: 'file', required: true, placeholder: '上传盖章文件' }
|
||||
]},
|
||||
{ key: 'desc', title: '说明', fields: [
|
||||
{ key: 'reason', label: '用途说明', type: 'textarea', required: true, placeholder: '请说明盖章用途与背景' },
|
||||
{ key: 'remark', label: '备注', type: 'textarea', required: false, placeholder: '可选' }
|
||||
]}
|
||||
],
|
||||
flowFields: [
|
||||
{ key: 'sealType', label: '用印类型', required: true },
|
||||
{ key: 'applyFileIds', label: '附件', required: true },
|
||||
{ key: 'reason', label: '用途说明', required: true }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: { submitSeal(payload) { return addSealReq(payload) } }
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
<style scoped></style>
|
||||
@@ -1,22 +1,48 @@
|
||||
<template>
|
||||
<view>
|
||||
|
||||
</view>
|
||||
<request-form
|
||||
title="出差申请"
|
||||
subtitle="填写出差信息,支持手机端快速提交"
|
||||
biz-type="travel"
|
||||
:request-api="submitTravel"
|
||||
:initial-form="initialForm"
|
||||
:sections="sections"
|
||||
:flow-fields="flowFields"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
import RequestForm from '@/components/hrm/RequestForm.vue'
|
||||
import { addTravelReq } from '@/api/hrm/travel'
|
||||
|
||||
export default {
|
||||
components: { RequestForm },
|
||||
data() {
|
||||
return {
|
||||
initialForm: { travelType: '', startTime: '', endTime: '', destination: '', reason: '', applyFileIds: '', remark: '' },
|
||||
sections: [
|
||||
{ key: 'basic', title: '基础信息', fields: [
|
||||
{ key: 'travelType', label: '出差类型', type: 'select', required: true, placeholder: '请选择出差类型', options: ['客户拜访', '项目支持', '培训学习', '会议会展', '验收交付', '其他'] },
|
||||
{ key: 'startTime', label: '开始时间', type: 'datetime', required: true, placeholder: '请选择开始时间' },
|
||||
{ key: 'endTime', label: '结束时间', type: 'datetime', required: true, placeholder: '请选择结束时间' },
|
||||
{ key: 'destination', label: '目的地', type: 'city', required: true, placeholder: '请选择全球城市' }
|
||||
]},
|
||||
{ key: 'desc', title: '说明', fields: [
|
||||
{ key: 'reason', label: '事由', type: 'textarea', required: true, placeholder: '请说明出差目的与任务' },
|
||||
{ key: 'applyFileIds', label: '附件', type: 'file', required: false, placeholder: '上传附件文件' },
|
||||
{ key: 'remark', label: '备注', type: 'textarea', required: false, placeholder: '可选' }
|
||||
]}
|
||||
],
|
||||
flowFields: [
|
||||
{ key: 'travelType', label: '出差类型', required: true },
|
||||
{ key: 'startTime', label: '开始时间', required: true },
|
||||
{ key: 'endTime', label: '结束时间', required: true },
|
||||
{ key: 'destination', label: '目的地', required: true },
|
||||
{ key: 'reason', label: '事由', required: true }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: { submitTravel(payload) { return addTravelReq(payload) } }
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user