2025-07-05 16:09:43 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view class="container">
|
2025-07-11 10:07:03 +08:00
|
|
|
|
<!-- Tab切换 -->
|
|
|
|
|
|
<view class="tab-container">
|
|
|
|
|
|
<view
|
|
|
|
|
|
class="tab-item"
|
|
|
|
|
|
:class="{ active: activeTab === 'all' }"
|
|
|
|
|
|
@click="switchTab('all')"
|
|
|
|
|
|
>
|
|
|
|
|
|
<text>全部报工</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view
|
|
|
|
|
|
class="tab-item"
|
|
|
|
|
|
:class="{ active: activeTab === 'my' }"
|
|
|
|
|
|
@click="switchTab('my')"
|
|
|
|
|
|
>
|
|
|
|
|
|
<text>我的报工</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 卡片列表 -->
|
|
|
|
|
|
<view class="card-list-container">
|
|
|
|
|
|
<scroll-view
|
|
|
|
|
|
scroll-y
|
|
|
|
|
|
class="card-scroll"
|
|
|
|
|
|
@scrolltolower="loadMore"
|
|
|
|
|
|
refresher-enabled
|
|
|
|
|
|
:refresher-triggered="refreshing"
|
|
|
|
|
|
@refresherrefresh="onRefresh"
|
|
|
|
|
|
:style="{ height: scrollHeight + 'px' }"
|
|
|
|
|
|
>
|
|
|
|
|
|
<view class="card-list">
|
|
|
|
|
|
<ReportCard
|
|
|
|
|
|
v-for="(item, index) in projectReportList"
|
|
|
|
|
|
:key="item.reportId"
|
|
|
|
|
|
:item="item"
|
|
|
|
|
|
:show-avatar="activeTab === 'all'"
|
|
|
|
|
|
@card-click="handleCardClick"
|
|
|
|
|
|
></ReportCard>
|
2025-07-05 16:48:46 +08:00
|
|
|
|
|
2025-07-11 10:07:03 +08:00
|
|
|
|
<!-- 空状态 -->
|
|
|
|
|
|
<view v-if="!loading && projectReportList.length === 0" class="empty-state">
|
|
|
|
|
|
<image src="/static/images/empty_lable.png" class="empty-image"></image>
|
|
|
|
|
|
<text class="empty-text">暂无报工数据</text>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-07-11 10:07:03 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 加载更多 -->
|
|
|
|
|
|
<u-loadmore
|
|
|
|
|
|
v-if="total > 0"
|
|
|
|
|
|
:status="loadMoreStatus"
|
|
|
|
|
|
@loadmore="loadMore"
|
|
|
|
|
|
></u-loadmore>
|
2025-07-05 16:48:46 +08:00
|
|
|
|
</scroll-view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
<!-- 圆形新增按钮 -->
|
|
|
|
|
|
<view class="fab-button" @click="handleAdd">
|
|
|
|
|
|
<u-icon name="plus" color="#fff" size="30"></u-icon>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
2025-07-05 16:09:43 +08:00
|
|
|
|
<!-- 新增弹窗 -->
|
2025-07-05 18:37:20 +08:00
|
|
|
|
<uni-popup ref="popup" type="bottom" :mask-click="false">
|
|
|
|
|
|
<view class="form-popup-content">
|
2025-07-05 16:09:43 +08:00
|
|
|
|
<view class="popup-header">
|
|
|
|
|
|
<text class="popup-title">{{ title }}</text>
|
|
|
|
|
|
<u-icon name="close" @click="cancel" size="40"></u-icon>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<scroll-view scroll-y class="form-content">
|
2025-07-05 18:37:20 +08:00
|
|
|
|
<view class="form-container">
|
|
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">工作地点</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
<u-input v-model="form.workPlace" placeholder="请输入工作地点"></u-input>
|
2025-07-05 18:37:20 +08:00
|
|
|
|
</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">是否出差</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
<u-radio-group v-model="form.isTrip">
|
|
|
|
|
|
<u-radio :name="1" label="是"></u-radio>
|
|
|
|
|
|
<u-radio :name="0" label="否"></u-radio>
|
|
|
|
|
|
</u-radio-group>
|
2025-07-05 18:37:20 +08:00
|
|
|
|
</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
<view v-if="form.isTrip === 1" class="form-item">
|
|
|
|
|
|
<view class="form-label">国内/国外</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
<u-radio-group v-model="form.workType">
|
|
|
|
|
|
<u-radio :name="0" label="国内"></u-radio>
|
|
|
|
|
|
<u-radio :name="1" label="国外"></u-radio>
|
|
|
|
|
|
</u-radio-group>
|
2025-07-05 18:37:20 +08:00
|
|
|
|
</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">请选择项目</view>
|
2025-09-05 15:24:42 +08:00
|
|
|
|
<oa-project-select
|
2025-07-05 16:09:43 +08:00
|
|
|
|
v-model="form.projectId"
|
|
|
|
|
|
placeholder="请选择项目"
|
2025-09-05 15:38:16 +08:00
|
|
|
|
></oa-project-select>
|
2025-07-05 18:37:20 +08:00
|
|
|
|
</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">报工内容</view>
|
2025-07-31 16:27:16 +08:00
|
|
|
|
<Quill
|
2025-07-05 16:09:43 +08:00
|
|
|
|
v-model="form.content"
|
|
|
|
|
|
placeholder="请输入报工内容"
|
|
|
|
|
|
:height="200"
|
2025-07-31 16:27:16 +08:00
|
|
|
|
></Quill>
|
2025-07-05 18:37:20 +08:00
|
|
|
|
</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
<view class="form-item">
|
|
|
|
|
|
<view class="form-label">备注</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
<u-input v-model="form.remark" placeholder="请输入备注"></u-input>
|
2025-07-05 18:37:20 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
</scroll-view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="popup-footer">
|
|
|
|
|
|
<u-button type="primary" @click="submitForm" :loading="buttonLoading">确定</u-button>
|
|
|
|
|
|
<u-button @click="cancel">取消</u-button>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-07-05 18:37:20 +08:00
|
|
|
|
</uni-popup>
|
2025-07-11 10:07:03 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 报工详情弹窗 -->
|
|
|
|
|
|
<ReportDetail
|
|
|
|
|
|
ref="reportDetail"
|
|
|
|
|
|
:detail="reportDetail"
|
|
|
|
|
|
></ReportDetail>
|
2025-07-05 16:09:43 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-07-11 10:07:03 +08:00
|
|
|
|
import { listProjectReport, addProjectReport, getProjectReport } from '@/api/oa/projectReport'
|
2025-07-05 16:09:43 +08:00
|
|
|
|
import { listProject } from '@/api/oa/project'
|
|
|
|
|
|
import { listDept } from '@/api/oa/dept'
|
2025-07-11 10:07:03 +08:00
|
|
|
|
import ReportCard from '@/components/ReportCard/index.vue'
|
|
|
|
|
|
import ReportDetail from '@/components/ReportDetail/index.vue'
|
|
|
|
|
|
import { mapState } from 'vuex'
|
2025-07-05 16:09:43 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
2025-07-11 10:07:03 +08:00
|
|
|
|
components: {
|
|
|
|
|
|
ReportCard,
|
|
|
|
|
|
ReportDetail,
|
|
|
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
|
|
|
...mapState('user', ['selfInfo'])
|
|
|
|
|
|
},
|
2025-07-05 16:09:43 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2025-07-11 10:07:03 +08:00
|
|
|
|
// 当前激活的tab
|
|
|
|
|
|
activeTab: 'all',
|
|
|
|
|
|
// 滚动区域高度
|
|
|
|
|
|
scrollHeight: 0,
|
2025-07-05 16:09:43 +08:00
|
|
|
|
// 按钮loading
|
|
|
|
|
|
buttonLoading: false,
|
|
|
|
|
|
// 遮罩层
|
|
|
|
|
|
loading: true,
|
|
|
|
|
|
// 总条数
|
|
|
|
|
|
total: 0,
|
2025-07-11 10:07:03 +08:00
|
|
|
|
// 项目报工列表数据
|
2025-07-05 16:09:43 +08:00
|
|
|
|
projectReportList: [],
|
|
|
|
|
|
// 弹出层标题
|
|
|
|
|
|
title: "",
|
2025-07-05 18:37:20 +08:00
|
|
|
|
|
2025-07-05 16:09:43 +08:00
|
|
|
|
// 项目列表
|
|
|
|
|
|
projectList: [],
|
|
|
|
|
|
// 部门列表
|
|
|
|
|
|
deptList: [],
|
|
|
|
|
|
// 表单参数
|
|
|
|
|
|
form: {},
|
|
|
|
|
|
// 加载更多状态
|
|
|
|
|
|
loadMoreStatus: 'loadmore',
|
2025-07-11 10:07:03 +08:00
|
|
|
|
// 下拉刷新状态
|
|
|
|
|
|
refreshing: false,
|
|
|
|
|
|
// 报工详情数据
|
|
|
|
|
|
reportDetail: {},
|
2025-07-05 16:09:43 +08:00
|
|
|
|
// 分页参数
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10
|
|
|
|
|
|
},
|
|
|
|
|
|
// 表单校验规则
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
workPlace: [
|
|
|
|
|
|
{ required: true, message: "工作地点不能为空", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
projectId: [
|
|
|
|
|
|
{ required: true, message: "项目不能为空", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
content: [
|
|
|
|
|
|
{ required: true, message: "报工内容不能为空", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
isTrip: [
|
|
|
|
|
|
{ required: true, message: '请选择是否出差', trigger: 'change' }
|
|
|
|
|
|
],
|
|
|
|
|
|
workType: [
|
|
|
|
|
|
{
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
message: '请选择出差地点',
|
|
|
|
|
|
trigger: 'change',
|
|
|
|
|
|
validator: (rule, value, callback) => {
|
|
|
|
|
|
if (this.form.isTrip === 1 && !value && value !== 0) {
|
|
|
|
|
|
callback(new Error('请选择出差地点'));
|
|
|
|
|
|
} else {
|
|
|
|
|
|
callback();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
onLoad() {
|
2025-07-11 10:07:03 +08:00
|
|
|
|
this.calculateScrollHeight();
|
2025-07-05 16:09:43 +08:00
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
2025-07-11 10:07:03 +08:00
|
|
|
|
onReady() {
|
|
|
|
|
|
// 页面渲染完成后重新计算高度
|
|
|
|
|
|
this.calculateScrollHeight();
|
|
|
|
|
|
},
|
2025-07-05 16:09:43 +08:00
|
|
|
|
methods: {
|
2025-07-11 10:07:03 +08:00
|
|
|
|
// 计算滚动区域高度
|
|
|
|
|
|
calculateScrollHeight() {
|
|
|
|
|
|
const systemInfo = uni.getSystemInfoSync();
|
|
|
|
|
|
const tabHeight = 100; // tab高度
|
|
|
|
|
|
const containerPadding = 40; // 容器padding
|
|
|
|
|
|
// 悬浮按钮是固定定位,不需要预留空间,让卡片列表到达底部
|
2025-07-11 18:05:05 +08:00
|
|
|
|
// 我也不知道为什么要 + 80, 不然滚动高度下面一大片空白,这个不太好调试
|
|
|
|
|
|
this.scrollHeight = systemInfo.windowHeight - tabHeight - containerPadding + 80;
|
2025-07-11 10:07:03 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 切换tab
|
|
|
|
|
|
switchTab(tab) {
|
|
|
|
|
|
if (this.activeTab === tab) return;
|
|
|
|
|
|
this.activeTab = tab;
|
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
|
this.projectReportList = [];
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 下拉刷新
|
|
|
|
|
|
onRefresh() {
|
|
|
|
|
|
this.refreshing = true;
|
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
|
this.getList().finally(() => {
|
|
|
|
|
|
this.refreshing = false;
|
|
|
|
|
|
});
|
2025-07-05 16:09:43 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 获取项目列表
|
|
|
|
|
|
getProjectList() {
|
|
|
|
|
|
listProject({ pageNum: 1, pageSize: 9999 }).then(res => {
|
2025-07-05 18:37:20 +08:00
|
|
|
|
const rawData = res.rows || [];
|
|
|
|
|
|
// 按照 uni-data-select 的标准格式处理数据
|
|
|
|
|
|
this.projectList = rawData.map(item => ({
|
|
|
|
|
|
value: item.projectId,
|
|
|
|
|
|
text: item.projectName || '未命名项目',
|
|
|
|
|
|
// 保留原始数据用于提交
|
|
|
|
|
|
projectId: item.projectId,
|
|
|
|
|
|
projectName: item.projectName || '未命名项目',
|
|
|
|
|
|
projectNum: item.projectNum,
|
|
|
|
|
|
projectCode: item.projectCode
|
|
|
|
|
|
}));
|
|
|
|
|
|
console.log('处理后的项目列表数据:', this.projectList);
|
|
|
|
|
|
// 检查数据结构
|
|
|
|
|
|
if (this.projectList.length > 0) {
|
|
|
|
|
|
console.log('第一个项目数据:', this.projectList[0]);
|
|
|
|
|
|
}
|
2025-07-05 16:09:43 +08:00
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
console.error('获取项目列表失败:', err);
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '获取项目列表失败',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 获取部门列表
|
|
|
|
|
|
getDeptList() {
|
|
|
|
|
|
listDept().then(res => {
|
|
|
|
|
|
this.deptList = res.data || [];
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
console.error('获取部门列表失败:', err);
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 查询项目报工列表
|
|
|
|
|
|
getList() {
|
2025-07-11 10:07:03 +08:00
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
|
|
|
|
|
|
// 根据当前tab设置查询参数
|
|
|
|
|
|
const params = {
|
|
|
|
|
|
...this.queryParams
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 如果是我的报工,添加用户ID过滤
|
|
|
|
|
|
if (this.activeTab === 'my') {
|
|
|
|
|
|
// 使用当前登录用户的ID
|
|
|
|
|
|
const oaId = uni.getStorageSync('oaId');
|
|
|
|
|
|
if (oaId) {
|
|
|
|
|
|
params.userId = oaId;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
listProjectReport(params).then(response => {
|
|
|
|
|
|
if (this.queryParams.pageNum === 1) {
|
|
|
|
|
|
this.projectReportList = response.rows || [];
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.projectReportList = [...this.projectReportList, ...(response.rows || [])];
|
|
|
|
|
|
}
|
|
|
|
|
|
this.total = response.total || 0;
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
|
|
|
|
// 更新加载更多状态
|
|
|
|
|
|
if (this.queryParams.pageNum > 1) {
|
|
|
|
|
|
this.loadMoreStatus = 'loadmore';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this.getProjectList();
|
|
|
|
|
|
// this.getDeptList();
|
|
|
|
|
|
resolve(response);
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
console.error('获取报工列表失败:', err);
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
this.loadMoreStatus = 'loadmore';
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '获取数据失败',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
|
|
|
|
|
reject(err);
|
2025-07-05 16:09:43 +08:00
|
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 新增
|
|
|
|
|
|
handleAdd() {
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
this.title = "添加项目报工";
|
2025-07-05 18:37:20 +08:00
|
|
|
|
this.$refs.popup.open();
|
2025-07-05 16:09:43 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
2025-07-11 10:07:03 +08:00
|
|
|
|
// 卡片点击事件
|
|
|
|
|
|
handleCardClick(item) {
|
|
|
|
|
|
console.log('点击了报工卡片:', item);
|
|
|
|
|
|
// 获取报工详情
|
|
|
|
|
|
this.getReportDetail(item.reportId);
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 获取报工详情
|
|
|
|
|
|
getReportDetail(reportId) {
|
|
|
|
|
|
// 先打开弹窗显示加载状态
|
|
|
|
|
|
this.$refs.reportDetail.open();
|
|
|
|
|
|
|
|
|
|
|
|
getProjectReport(reportId).then(response => {
|
|
|
|
|
|
// 根据API返回的数据结构处理
|
|
|
|
|
|
this.reportDetail = response.data || response || {};
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
console.error('获取报工详情失败:', err);
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '获取详情失败',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
|
|
|
|
|
// 关闭弹窗
|
|
|
|
|
|
this.$refs.reportDetail.close();
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
// 提交表单
|
|
|
|
|
|
submitForm() {
|
|
|
|
|
|
// 手动验证表单
|
|
|
|
|
|
if (!this.form.workPlace) {
|
2025-07-05 16:09:43 +08:00
|
|
|
|
uni.showToast({
|
2025-07-05 18:37:20 +08:00
|
|
|
|
title: '工作地点不能为空',
|
2025-07-05 16:09:43 +08:00
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
if (this.form.isTrip === undefined) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请选择是否出差',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (this.form.isTrip === 1 && this.form.workType === undefined) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请选择出差地点',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.form.projectId) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '项目不能为空',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.form.content) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '报工内容不能为空',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 验证通过,提交表单
|
|
|
|
|
|
this.buttonLoading = true;
|
|
|
|
|
|
|
|
|
|
|
|
// 获取选中的项目信息
|
|
|
|
|
|
const selectedProject = this.projectList.find(p => p.value === this.form.projectId);
|
|
|
|
|
|
|
|
|
|
|
|
const submitData = {
|
|
|
|
|
|
...this.form,
|
|
|
|
|
|
projectName: selectedProject?.projectName || '',
|
|
|
|
|
|
projectNum: selectedProject?.projectNum || '',
|
|
|
|
|
|
projectCode: selectedProject?.projectCode || null
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
addProjectReport(submitData).then(response => {
|
|
|
|
|
|
this.buttonLoading = false;
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '新增成功',
|
|
|
|
|
|
icon: 'success'
|
|
|
|
|
|
});
|
|
|
|
|
|
this.$refs.popup.close();
|
|
|
|
|
|
this.getList(); // 重新获取列表
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
this.buttonLoading = false;
|
|
|
|
|
|
console.error('新增失败:', err);
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '新增失败',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
});
|
2025-07-05 16:09:43 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 取消
|
|
|
|
|
|
cancel() {
|
2025-07-05 18:37:20 +08:00
|
|
|
|
this.$refs.popup.close();
|
2025-07-05 16:09:43 +08:00
|
|
|
|
this.reset();
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 重置表单
|
|
|
|
|
|
reset() {
|
|
|
|
|
|
this.form = {
|
|
|
|
|
|
workPlace: '',
|
|
|
|
|
|
projectId: null,
|
|
|
|
|
|
content: '',
|
|
|
|
|
|
remark: '',
|
|
|
|
|
|
isTrip: undefined,
|
|
|
|
|
|
workType: undefined
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 加载更多
|
|
|
|
|
|
loadMore() {
|
|
|
|
|
|
if (this.projectReportList.length >= this.total) {
|
|
|
|
|
|
this.loadMoreStatus = 'nomore';
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this.queryParams.pageNum++;
|
|
|
|
|
|
this.loadMoreStatus = 'loading';
|
|
|
|
|
|
|
2025-07-11 10:07:03 +08:00
|
|
|
|
this.getList();
|
2025-07-05 18:37:20 +08:00
|
|
|
|
},
|
2025-07-05 16:09:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.container {
|
|
|
|
|
|
background-color: #f5f5f5;
|
2025-07-11 10:07:03 +08:00
|
|
|
|
height: 100vh;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2025-07-05 16:09:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 10:07:03 +08:00
|
|
|
|
.tab-container {
|
|
|
|
|
|
display: flex;
|
2025-07-05 16:09:43 +08:00
|
|
|
|
background-color: #fff;
|
2025-07-11 10:07:03 +08:00
|
|
|
|
padding: 0 20rpx;
|
|
|
|
|
|
border-bottom: 1rpx solid #e9ecef;
|
|
|
|
|
|
|
|
|
|
|
|
.tab-item {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #666;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
|
color: #007bff;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
width: 60rpx;
|
|
|
|
|
|
height: 4rpx;
|
|
|
|
|
|
background-color: #007bff;
|
|
|
|
|
|
border-radius: 2rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-07-05 16:09:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 10:07:03 +08:00
|
|
|
|
.card-list-container {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
|
overflow: hidden;
|
2025-07-05 16:48:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 10:07:03 +08:00
|
|
|
|
.card-scroll {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
2025-07-05 16:48:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 10:07:03 +08:00
|
|
|
|
.empty-state {
|
2025-07-05 16:09:43 +08:00
|
|
|
|
display: flex;
|
2025-07-11 10:07:03 +08:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
padding: 100rpx 0;
|
2025-07-05 16:09:43 +08:00
|
|
|
|
|
2025-07-11 10:07:03 +08:00
|
|
|
|
.empty-image {
|
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
|
height: 200rpx;
|
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
|
opacity: 0.6;
|
2025-07-05 16:09:43 +08:00
|
|
|
|
}
|
2025-07-11 10:07:03 +08:00
|
|
|
|
|
|
|
|
|
|
.empty-text {
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #999;
|
2025-07-05 16:09:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-05 18:37:20 +08:00
|
|
|
|
.form-popup-content {
|
2025-07-05 16:09:43 +08:00
|
|
|
|
background-color: #fff;
|
2025-07-05 18:37:20 +08:00
|
|
|
|
border-radius: 20rpx 20rpx 0 0;
|
2025-07-05 16:09:43 +08:00
|
|
|
|
overflow: hidden;
|
2025-07-05 18:37:20 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
max-height: 80vh;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2025-07-31 16:27:16 +08:00
|
|
|
|
box-sizing: border-box;
|
2025-07-05 16:09:43 +08:00
|
|
|
|
|
|
|
|
|
|
.popup-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
|
border-bottom: 1rpx solid #e9ecef;
|
|
|
|
|
|
|
|
|
|
|
|
.popup-title {
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-content {
|
|
|
|
|
|
padding: 30rpx;
|
2025-07-05 18:37:20 +08:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
overflow-y: auto;
|
2025-07-31 16:27:16 +08:00
|
|
|
|
box-sizing: border-box;
|
2025-07-05 18:37:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-container {
|
2025-07-31 16:27:16 +08:00
|
|
|
|
box-sizing: border-box;
|
2025-07-05 18:37:20 +08:00
|
|
|
|
.form-item {
|
|
|
|
|
|
margin-bottom: 40rpx;
|
2025-07-31 16:27:16 +08:00
|
|
|
|
box-sizing: border-box;
|
2025-07-05 18:37:20 +08:00
|
|
|
|
.form-label {
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-07-05 16:09:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.popup-footer {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 20rpx;
|
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
|
border-top: 1rpx solid #e9ecef;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-07-05 18:37:20 +08:00
|
|
|
|
|
|
|
|
|
|
.fab-button {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
bottom: 20rpx;
|
|
|
|
|
|
right: 20rpx;
|
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background-color: #007bff;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
padding: 20rpx;
|
2025-07-11 10:07:03 +08:00
|
|
|
|
z-index: 999;
|
2025-07-05 18:37:20 +08:00
|
|
|
|
}
|
2025-07-05 16:09:43 +08:00
|
|
|
|
</style>
|