| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <route lang="json5" type="page">
- {
- layout: 'default',
- style: {
- navigationBarTitleText: '报告编制预览',
- navigationStyle: 'custom',
- },
- }
- </route>
- <template>
- <view class="preview-container">
- <!-- 导航栏 -->
- <NavBar title="报告编制预览" />
- <!-- 头部视图 -->
- <HeadView
- v-if="reportList.length > 0"
- :report-list="reportList"
- :select-report="selectReport"
- @update:select-report="handleReportSelect"
- />
- <!-- PDF 预览区域 -->
- <view class="pdf-container">
- <text class="preview-tip">报告预览功能待完善</text>
- <text class="preview-info">当前报告:{{ selectReport?.reportName || '-' }}</text>
- <text class="preview-info">报告类型:{{ getReportTypeName(selectReport?.reportType) }}</text>
- </view>
- <!-- 操作按钮 -->
- <view class="action-buttons">
- <button class="action-btn submit-btn" @click="handleSubmit">
- <text class="action-btn-text">提交报告</text>
- </button>
- </view>
- </view>
- </template>
- <script lang="ts" setup>
- import { ref, onMounted } from 'vue'
- import { submitApi } from '@/api/pendingPreparation'
- import HeadView from '@/pages/pendingVerification/preViewReport/HeadView.vue'
- import NavBar from '@/components/NavBar/NavBar.vue'
- defineOptions({
- name: 'PendingPreparationPreview',
- })
- // 从路由参数获取数据
- const pages = getCurrentPages()
- const currentPage = pages[pages.length - 1] as any
- const options = currentPage.options || {}
- const id = ref(options.id || '')
- const orderId = ref(options.orderId || '')
- const reportDOList = ref<any[]>([])
- const equipCode = ref(options.equipCode || '')
- // 解析报告列表
- try {
- if (options.reportDOList) {
- reportDOList.value = JSON.parse(decodeURIComponent(options.reportDOList))
- }
- } catch (error) {
- console.error('解析报告列表失败:', error)
- }
- const reportList = ref<any[]>(reportDOList.value)
- const selectReport = ref<any>(reportList.value?.[0] || null)
- // 处理报告选择
- const handleReportSelect = (report: any) => {
- selectReport.value = report
- console.log('选择报告:', report)
- }
- // 获取报告类型名称
- const getReportTypeName = (reportType: string) => {
- const typeMap: Record<string, string> = {
- '100': '主报告',
- '200': '附件报告',
- }
- return typeMap[reportType] || reportType
- }
- // 提交报告
- const handleSubmit = async () => {
- if (!selectReport.value) {
- return uni.showToast({ title: '请选择报告', icon: 'error' })
- }
- uni.showLoading({ title: '提交中...' })
- try {
- const result: any = await submitApi({
- id: selectReport.value.id,
- // 添加其他必要的参数
- })
- uni.hideLoading()
- if (result?.code === 0) {
- uni.showToast({ title: '提交成功', icon: 'success' })
- // 返回上一页
- setTimeout(() => {
- uni.navigateBack()
- }, 1000)
- } else {
- uni.showToast({ title: result?.msg || '提交失败', icon: 'error' })
- }
- } catch (error) {
- console.error('提交失败:', error)
- uni.hideLoading()
- uni.showToast({ title: '提交失败,请重试', icon: 'error' })
- }
- }
- onMounted(() => {
- console.log('报告列表:', reportList.value)
- console.log('当前选择:', selectReport.value)
- })
- </script>
- <style lang="scss" scoped>
- .preview-container {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- background-color: #f5f5f5;
- }
- .navigate-view {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 44px;
- background-color: #fff;
- border-bottom: 1px solid #eee;
- }
- .navigate-title {
- font-size: 17px;
- font-weight: 500;
- color: #333;
- }
- .pdf-container {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 20px;
- background-color: #fff;
- margin: 10px;
- border-radius: 5px;
- }
- .preview-tip {
- font-size: 18px;
- color: #666;
- margin-bottom: 20px;
- }
- .preview-info {
- font-size: 14px;
- color: #999;
- margin: 5px 0;
- }
- .action-buttons {
- padding: 20px;
- background-color: #fff;
- }
- .action-btn {
- height: 44px;
- border-radius: 5px;
- display: flex;
- justify-content: center;
- align-items: center;
- border: none;
- font-size: 16px;
- }
- .submit-btn {
- background-color: #2f8eff;
- color: #fff;
- }
- .action-btn-text {
- color: #fff;
- font-size: 16px;
- }
- </style>
|