172 lines
4.2 KiB
Vue
Raw Normal View History

<template>
2025-07-26 21:29:04 +08:00
<BasicLayout>
<JsQjDetail :qjId="qjId" :dbFlag="dbFlag" v-if="qjId && qjId.length" />
2025-07-27 23:37:02 +08:00
<!-- 驳回弹窗 -->
<u-popup
:show="dlgFlag"
mode="center"
:closeOnClickOverlay="false"
@close="closeDlg"
>
<view class="popup-content">
<view class="popup-title">驳回原因</view>
<u-input
v-model="rejectReason"
type="textarea"
placeholder="请填写驳回原因"
:autoHeight="true"
maxlength="200"
/>
<view class="popup-actions flex-row justify-end mt-4">
<u-button class="mr-2" @click="closeDlg">取消</u-button>
<u-button type="primary" @click="handleReject">确定</u-button>
</view>
</view>
</u-popup>
2025-07-26 21:29:04 +08:00
<template #bottom>
<view class="white-bg-color py-5">
<view class="divider"></view>
<view class="flex-row items-center pb-10 pt-5">
<u-button
2025-07-27 23:37:02 +08:00
text="驳回"
2025-07-26 21:29:04 +08:00
class="ml-15 mr-7"
:plain="true"
2025-07-27 23:37:02 +08:00
@click="showDlg"
2025-07-26 21:29:04 +08:00
/>
<u-button
2025-07-27 23:37:02 +08:00
text="同意"
2025-07-26 21:29:04 +08:00
class="mr-15 mr-7"
type="primary"
@click="submit"
/>
</view>
</view>
</template>
</BasicLayout>
</template>
<script setup lang="ts">
2025-07-27 23:37:02 +08:00
import { jsQjSpApi } from "@/api/base/jsQjApi";
2025-08-01 20:11:36 +08:00
import { xxtsFindByIdApi } from "@/api/base/server";
import { useDataStore } from "@/store/modules/data";
2025-07-27 23:37:02 +08:00
import { useUserStore } from "@/store/modules/user";
import { navigateBack } from "@/utils/uniapp";
import { onLoad } from "@dcloudio/uni-app";
import { ref } from "vue";
import JsQjDetail from "./components/jsQjDetail.vue";
2025-07-26 21:29:04 +08:00
const { getJs } = useUserStore();
2025-08-01 20:11:36 +08:00
const { setData, getData, setXxts, getXxts } = useDataStore();
const dbFlag = ref(false);
2025-07-26 21:29:04 +08:00
const qjId = ref<string>();
2025-07-27 23:37:02 +08:00
const dlgFlag = ref(false);
const rejectReason = ref("");
2025-07-26 21:29:04 +08:00
const submit = async () => {
2025-07-27 23:37:02 +08:00
const params = {
qjId: qjId.value,
jsId: getJs.id,
spStatus: 2,
spYj: "同意",
};
2025-07-26 21:29:04 +08:00
uni.showLoading({ title: "审批中..." });
await jsQjSpApi(params);
uni.hideLoading();
navigateBack();
};
2025-07-27 23:37:02 +08:00
const showDlg = () => {
dlgFlag.value = true;
};
const closeDlg = () => {
dlgFlag.value = false;
};
// 驳回处理
const handleReject = async () => {
if (!rejectReason.value.trim()) {
uni.showToast({ title: "请填写驳回意见", icon: "none" });
return;
}
const params: any = {
qjId: qjId.value,
jsId: getJs.id,
spStatus: 1, // 1为拒绝
spYj: rejectReason.value,
};
uni.showLoading({ title: "正在驳回..." });
try {
await jsQjSpApi(params);
uni.hideLoading();
uni.showToast({ title: "已驳回", icon: "success" });
closeDlg();
setTimeout(() => {
navigateBack();
}, 500);
} catch (e) {
uni.hideLoading();
}
};
onLoad(async (data: any) => {
// 从待办过来的,需要从后端获取数据
if (data && data.from && data.from == "db") {
dbFlag.value = true;
2025-08-01 20:11:36 +08:00
try {
// 优先从后端根据url中的id去查询Xxts
const xxtsRes = await xxtsFindByIdApi({ id: data.id });
if (xxtsRes && xxtsRes.result) {
const xxts = xxtsRes.result;
// 检查待办状态
if (xxts.dbZt === "B") {
setData({ id: xxts.xxzbId });
let url = "/pages/view/hr/jsQj/detail";
uni.navigateTo({ url });
return;
}
setXxts(xxts);
// 使用消息推送中的主表ID
qjId.value = xxts.xxzbId;
}
} catch (error) {
console.error("获取待办信息失败", error);
// 如果获取Xxts失败回退到原来的逻辑
qjId.value = data.id;
const xxtsData = getXxts();
if (xxtsData && xxtsData.dbZt === "B") {
setData({ id: data.id });
let url = "/pages/view/hr/jsQj/detail";
uni.navigateTo({ url });
return;
}
2025-07-27 23:37:02 +08:00
}
} else {
2025-07-26 21:29:04 +08:00
qjId.value = getData.id;
dbFlag.value = false;
}
});
2025-07-26 21:29:04 +08:00
</script>
2025-07-27 23:37:02 +08:00
<style scoped>
.popup-content {
width: 80vw;
background: #fff;
border-radius: 12px;
padding: 24px 16px 16px 16px;
}
.popup-title {
font-size: 16px;
font-weight: bold;
margin-bottom: 12px;
}
.popup-actions {
margin-top: 16px;
}
</style>