From ba48054b6f2680cfa1a0b3b912880925a8b5861b Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期三, 13 八月 2025 15:33:47 +0800 Subject: [PATCH] fix: 验收管理 --- apps/cMiniApp/src/subpackages/user/complaint/complaint.vue | 43 ++++++++++++++++++++++++------------------- 1 files changed, 24 insertions(+), 19 deletions(-) diff --git a/apps/cMiniApp/src/subpackages/user/complaint/complaint.vue b/apps/cMiniApp/src/subpackages/user/complaint/complaint.vue index 32c86ac..afd4841 100644 --- a/apps/cMiniApp/src/subpackages/user/complaint/complaint.vue +++ b/apps/cMiniApp/src/subpackages/user/complaint/complaint.vue @@ -1,5 +1,11 @@ <template> - <PageLayout title="鎶曡瘔涓炬姤" class="cooperation-page-wrapper" hasBorder :needAuth="false"> + <PageLayout + title="鎶曡瘔涓炬姤" + class="cooperation-page-wrapper" + hasBorder + :needAuth="false" + developing + > <ContentScrollView :paddingH="false"> <nut-form :model-value="form" ref="formRef" :rules="rules"> <nut-form-item label="浼佷笟鍚嶇О:" class="bole-form-item" prop="companyName" required> @@ -52,7 +58,6 @@ <script setup lang="ts"> import { FormRules } from '@nutui/nutui-taro/dist/types/__VUE/form/types'; -import * as cooperationApplyServices from '@12333/services/api/CooperationApply'; import { CooperateTypeText, CooperateApplyTypeEnum } from '@12333/constants'; import { FormValidator, Message } from '@12333/utils'; import Taro from '@tarojs/taro'; @@ -94,23 +99,23 @@ async function createPlatformCooperationApply() { try { - let params: API.CreatePlatformCooperationApplyInput = { - title: CooperateTypeText.Complaint, - contact: form.contact, - contactPhone: form.contactPhone, - applyDescription: form.remark, - companyName: form.companyName, - applyType: CooperateApplyTypeEnum.Complaint, - }; - let res = await cooperationApplyServices.createPlatformCooperationApply(params); - if (res) { - await Message.confirm({ - message: '淇℃伅宸叉彁浜わ紝璇疯�愬績绛夊緟宸ヤ綔浜哄憳鐨勮仈绯�', - }); - Taro.navigateBack({ - delta: 1, - }); - } + // let params: API.CreatePlatformCooperationApplyInput = { + // title: CooperateTypeText.Complaint, + // contact: form.contact, + // contactPhone: form.contactPhone, + // applyDescription: form.remark, + // companyName: form.companyName, + // applyType: CooperateApplyTypeEnum.Complaint, + // }; + // let res = await cooperationApplyServices.createPlatformCooperationApply(params); + // if (res) { + // await Message.confirm({ + // message: '淇℃伅宸叉彁浜わ紝璇疯�愬績绛夊緟宸ヤ綔浜哄憳鐨勮仈绯�', + // }); + // Taro.navigateBack({ + // delta: 1, + // }); + // } } catch (error) {} } </script> -- Gitblit v1.9.1