外反app-开发
This commit is contained in:
257
src/pages/business/EQF/components/chooseCus.vue
Normal file
257
src/pages/business/EQF/components/chooseCus.vue
Normal file
@@ -0,0 +1,257 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户名称列表'" :leftFlag="true" :rightFlag="false">
|
||||
<template #right>
|
||||
<view class="head-right" @click="handleAdd">
|
||||
<uni-icons type="plus" size="24" color="#B7D2FF"></uni-icons>
|
||||
新增
|
||||
</view>
|
||||
</template>
|
||||
</customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view class="all-body">
|
||||
<!-- 搜索 @blur="blur" @focus="focus" @input="input" @cancel="cancel" @clear="clear"-->
|
||||
<view class="search">
|
||||
<uni-search-bar class="custom-search" radius="28" placeholder="请输入客户名称" clearButton="auto"
|
||||
cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"
|
||||
v-model="searchValue" @clear="searchValue=''"
|
||||
/>
|
||||
<!-- <button type="default" @click="searchValue=''" size="mini" class="btn-search">清空</button>-->
|
||||
</view>
|
||||
|
||||
<!-- 分页部分 -->
|
||||
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
|
||||
:up="upOption" :down="downOption" :fixed="false" textColor="#ffffff" bgColor="#ffffff"
|
||||
class="scroll-h" :class="{'loading-scroll':cssFlag}"
|
||||
><!-- @down="downCallback"-->
|
||||
<radio-group class="block" @change="radioChange">
|
||||
<view class="white-bg" v-for="(item, index) in list" :key="index" @click="handleDetail(item)">
|
||||
<radio class='radio'
|
||||
:class="index === selectIndex ? 'checked' : ''"
|
||||
:checked="index === selectIndex"
|
||||
:value="index+''">
|
||||
</radio>
|
||||
|
||||
<view class="report-list">
|
||||
<view class="title">{{ item.cusName }}</view>
|
||||
<!-- <view class="r-list">
|
||||
<view class="r-name">{{ item.shortName }}</view>
|
||||
<view class="r-right btn-orange" size="mini">{{ item.statusName }}</view>
|
||||
</view>-->
|
||||
<view class="border-bottom"></view>
|
||||
<!-- <view class="r-list">
|
||||
<view class="r-left">日期</view>
|
||||
<view class="r-right">{{ new Date(item.createTime).toLocaleDateString()}}</view>
|
||||
</view>-->
|
||||
</view>
|
||||
</view>
|
||||
</radio-group>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
import {ref, onMounted, getCurrentInstance, watch} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
import {onLoad} from "@dcloudio/uni-app";
|
||||
import {getCustomerList} from "@/api/crm/customer/getCustomer";
|
||||
|
||||
let instance = null;
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
const mescrollRef = ref(null);
|
||||
let searchValue = ref('')
|
||||
|
||||
let cssFlag=ref(false);//控制样式
|
||||
|
||||
const upOption = ref({
|
||||
page: { num: 0, size: 10 },
|
||||
noMoreSize: 5,
|
||||
empty: {
|
||||
tip: '~ 空空如也 ~',
|
||||
icon: "../../../../static/images/mescroll-empty.png"
|
||||
},
|
||||
textLoading: '加载中...',
|
||||
textNoMore: '已经到底了'
|
||||
});
|
||||
|
||||
const downOption = ref({
|
||||
auto: true,
|
||||
textInOffset: '下拉刷新',
|
||||
textOutOffset: '释放更新',
|
||||
textLoading: '刷新中...'
|
||||
});
|
||||
|
||||
const mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
|
||||
|
||||
onLoad((options)=>{
|
||||
instance = getCurrentInstance().proxy;
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.on('requestCusList', async (res) => {
|
||||
let {cusName} = res.data;
|
||||
// console.log(cusName, "客户选择页读取到参数");
|
||||
searchValue.value = cusName;
|
||||
})
|
||||
})
|
||||
|
||||
let timerId = null;
|
||||
// 搜索
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
// console.log(`新值: ${newValue}, 旧值: ${oldValue}`);
|
||||
if(timerId) clearTimeout(timerId);
|
||||
timerId = setTimeout(async ()=>{
|
||||
handleSearch();
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}, 500);
|
||||
});
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
const res = await getList(1, upOption.value.page.size);
|
||||
list.value = res.list;
|
||||
// 正确结束下拉刷新状态
|
||||
mescroll.endSuccess(res.list.length, res.total >= upOption.value.page.size);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
// 发生错误时结束下拉刷新
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
const res = await getList(mescroll.num, mescroll.size);
|
||||
if (mescroll.num === 1) {
|
||||
list.value = res.list;
|
||||
} else {
|
||||
list.value.push(...res.list);
|
||||
}
|
||||
// 正确结束上拉加载状态
|
||||
mescroll.endSuccess(res.list.length, res.list.length >= mescroll.size);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
// 发生错误时结束上拉加载
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 查询搜索跳转
|
||||
let handleSearch = async () => {
|
||||
// 触发下拉刷新以重新加载数据
|
||||
if (mescrollRef.value) {
|
||||
cssFlag.value = true;
|
||||
uni.showLoading()
|
||||
await downCallback(mescrollRef.value.mescroll);
|
||||
uni.hideLoading()
|
||||
cssFlag.value = false;
|
||||
}
|
||||
}
|
||||
// 获取数据列表
|
||||
const getList = async (pageIndex, pageSize) => {
|
||||
let param = {
|
||||
pageNum: pageIndex,
|
||||
pageSize,
|
||||
cusName: searchValue.value
|
||||
}
|
||||
let { rows, total } = await getCustomerList(param)
|
||||
return {list: rows, total};
|
||||
}
|
||||
// 选中项的索引号
|
||||
const selectIndex = ref(null);
|
||||
const radioChange = (e) => {
|
||||
const selectedIndex = e.detail.value;
|
||||
//发送全局事件
|
||||
uni.$emit('onCustomerSelected',list.value[selectedIndex])
|
||||
uni.navigateBack()
|
||||
}
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.all-body {
|
||||
/* #ifdef APP-PLUS */
|
||||
top: 150rpx;
|
||||
height: calc(100vh - 75px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
top: 120rpx;
|
||||
height: calc(100vh);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.search .btn-search {
|
||||
border: none;
|
||||
background: none;
|
||||
line-height: normal;
|
||||
color: #fff;
|
||||
line-height: 56rpx !important;
|
||||
padding: 10rpx 0 0;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search .btn-search::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.scroll-h {
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
//padding-bottom:10rpx;
|
||||
margin-bottom: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.radio {
|
||||
padding-right: 20rpx;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 32rpx;
|
||||
line-height: 48rpx;
|
||||
}
|
||||
|
||||
.report-list {
|
||||
width: calc(100% - 70rpx);
|
||||
//background-color: pink;
|
||||
}
|
||||
|
||||
.border-bottom {
|
||||
margin-top: 6rpx;
|
||||
}
|
||||
</style>
|
||||
297
src/pages/business/EQF/components/customerOrder.vue
Normal file
297
src/pages/business/EQF/components/customerOrder.vue
Normal file
@@ -0,0 +1,297 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户订单列表'" :leftFlag="true" :rightFlag="true">
|
||||
<template #right>
|
||||
<view class="head-right" @click="handleConfirm">
|
||||
确定
|
||||
</view>
|
||||
</template>
|
||||
</customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view class="all-body">
|
||||
<!-- 搜索 -->
|
||||
<view class="search">
|
||||
<uni-search-bar class="custom-search" radius="28" placeholder="请输入合同名称" clearButton="auto"
|
||||
cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"
|
||||
v-model="cusCode" @clear="cusCode=''"></uni-search-bar>
|
||||
</view>
|
||||
|
||||
<!-- 分页部分 -->
|
||||
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
|
||||
:up="upOption" :down="downOption" :fixed="false" textColor="#ffffff" bgColor="#ffffff"
|
||||
class="scroll-h" :class="{'loading-scroll':cssFlag}"
|
||||
>
|
||||
<checkbox-group class="block">
|
||||
<view class="white-bg" v-for="(item, index) in list" :key="index">
|
||||
<checkbox class='checkbox'
|
||||
:checked="selectedItems.includes(index)"
|
||||
@click.stop="toggleItem(index)"
|
||||
></checkbox>
|
||||
|
||||
<view class="report-list">
|
||||
<view class="title">批号:{{ item.tokenCode }}</view>
|
||||
<view class="title">数量:{{ item.amount }}</view>
|
||||
<view class="title">合同号:{{ item.orderCoode }}</view>
|
||||
<view class="title">母批:{{ item.texing }}</view>
|
||||
<view class="title">产品大类:{{ item.code }}</view>
|
||||
<view class="title">规格型号:{{ item.name }}</view>
|
||||
<view class="title">产品ID:{{ item.materialId }}</view>
|
||||
<view class="border-bottom"></view>
|
||||
</view>
|
||||
</view>
|
||||
</checkbox-group>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
import {ref, onMounted, getCurrentInstance, watch} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
import {onLoad} from "@dcloudio/uni-app";
|
||||
import {getCustomerOrderList} from "@/api/eqf/qualityFeedback.js";
|
||||
|
||||
let instance = null;
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
const mescrollRef = ref(null);
|
||||
let cusCode = ref('')
|
||||
|
||||
let cssFlag=ref(false);//控制样式
|
||||
|
||||
const upOption = ref({
|
||||
page: { num: 0, size: 10 },
|
||||
noMoreSize: 5,
|
||||
empty: {
|
||||
tip: '~ 空空如也 ~',
|
||||
icon: "../../../../static/images/mescroll-empty.png"
|
||||
},
|
||||
textLoading: '加载中...',
|
||||
textNoMore: '已经到底了'
|
||||
});
|
||||
|
||||
const downOption = ref({
|
||||
auto: true,
|
||||
textInOffset: '下拉刷新',
|
||||
textOutOffset: '释放更新',
|
||||
textLoading: '刷新中...'
|
||||
});
|
||||
|
||||
const mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
|
||||
|
||||
onLoad((options)=>{
|
||||
instance = getCurrentInstance().proxy;
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.on('requestCusList', async (res) => {
|
||||
let {cusName} = res.data;
|
||||
cusCode.value = cusName;
|
||||
})
|
||||
})
|
||||
|
||||
let timerId = null;
|
||||
// 搜索
|
||||
watch(cusCode, (newValue, oldValue) => {
|
||||
if(timerId) clearTimeout(timerId);
|
||||
timerId = setTimeout(async ()=>{
|
||||
handleSearch();
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}, 500);
|
||||
});
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
const res = await getList(1, upOption.value.page.size);
|
||||
list.value = res.list;
|
||||
// 清空选中状态
|
||||
selectedItems.value = [];
|
||||
// 正确结束下拉刷新状态
|
||||
if (mescroll && typeof mescroll.endSuccess === 'function') {
|
||||
mescroll.endSuccess(res.list.length, res.total >= upOption.value.page.size);
|
||||
}
|
||||
} catch (error) {
|
||||
// 发生错误时结束下拉刷新,添加空值检查
|
||||
if (mescroll && typeof mescroll.endErr === 'function') {
|
||||
mescroll.endErr();
|
||||
} else {
|
||||
console.error('mescroll 对象不存在或 endErr 方法未定义', error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
const res = await getList(mescroll.num, mescroll.size);
|
||||
if (mescroll.num === 1) {
|
||||
list.value = res.list;
|
||||
// 清空选中状态
|
||||
selectedItems.value = [];
|
||||
} else {
|
||||
list.value.push(...res.list);
|
||||
}
|
||||
// 正确结束上拉加载状态
|
||||
if (mescroll && typeof mescroll.endSuccess === 'function') {
|
||||
mescroll.endSuccess(res.list.length, res.list.length >= mescroll.size);
|
||||
}
|
||||
} catch (error) {
|
||||
// 发生错误时结束上拉加载,添加空值检查
|
||||
if (mescroll && typeof mescroll.endErr === 'function') {
|
||||
mescroll.endErr();
|
||||
} else {
|
||||
console.error('mescroll 对象不存在或 endErr 方法未定义', error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 查询搜索跳转
|
||||
let handleSearch = async () => {
|
||||
// 触发下拉刷新以重新加载数据
|
||||
if (mescrollRef.value) {
|
||||
cssFlag.value = true;
|
||||
uni.showLoading()
|
||||
await downCallback(mescrollRef.value.mescroll);
|
||||
uni.hideLoading()
|
||||
cssFlag.value = false;
|
||||
}
|
||||
}
|
||||
// 获取数据列表
|
||||
const getList = async (pageIndex, pageSize) => {
|
||||
const param = {
|
||||
pageNum: pageIndex,
|
||||
pageSize,
|
||||
cusCode: cusCode.value
|
||||
}
|
||||
let { rows, total } = await getCustomerOrderList(param)
|
||||
return {list: rows, total};
|
||||
}
|
||||
|
||||
// 存储选中项的索引数组
|
||||
const selectedItems = ref([]);
|
||||
|
||||
// 切换单项选中状态
|
||||
const toggleItem = (index) => {
|
||||
if (selectedItems.value.includes(index)) {
|
||||
// 取消选中
|
||||
selectedItems.value = selectedItems.value.filter(item => item !== index);
|
||||
} else {
|
||||
// 选中
|
||||
selectedItems.value.push(index);
|
||||
}
|
||||
console.log('当前选中的索引:', selectedItems.value);
|
||||
}
|
||||
|
||||
// 不再需要checkboxChange函数,因为已经通过toggleItem处理了所有选择逻辑
|
||||
|
||||
// 确认选择并返回
|
||||
const handleConfirm = () => {
|
||||
// 确保list.value和selectedItems.value有效
|
||||
if (!list.value || !selectedItems.value || selectedItems.value.length === 0) {
|
||||
uni.showToast({ title: '请选择数据', icon: 'none' });
|
||||
return;
|
||||
}
|
||||
|
||||
// 获取选中的实际数据项,添加安全检查
|
||||
const selectedData = selectedItems.value
|
||||
.filter(index => index >= 0 && index < list.value.length) // 确保索引有效
|
||||
.map(index => list.value[index]);
|
||||
|
||||
console.log('所有选中的数据:', selectedData);
|
||||
|
||||
// 发送全局事件,传递选中的数据和逗号分隔的字符串
|
||||
uni.$emit('onCustomerSelected', {
|
||||
originalData: selectedData,
|
||||
});
|
||||
|
||||
// 设置标记,表示从选择页面返回
|
||||
uni.setStorageSync('isFromCustomerOrderPage', true);
|
||||
|
||||
// 返回上一页
|
||||
uni.navigateBack();
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.all-body {
|
||||
/* #ifdef APP-PLUS */
|
||||
top: 150rpx;
|
||||
height: calc(100vh - 75px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
top: 120rpx;
|
||||
height: calc(100vh);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.search .btn-search {
|
||||
border: none;
|
||||
background: none;
|
||||
line-height: normal;
|
||||
color: #fff;
|
||||
line-height: 56rpx !important;
|
||||
padding: 10rpx 0 0;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search .btn-search::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.scroll-h {
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
//padding-bottom:10rpx;
|
||||
margin-bottom: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
padding-right: 20rpx;
|
||||
transform: scale(0.8); // 调整复选框大小以匹配UI
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 32rpx;
|
||||
line-height: 48rpx;
|
||||
}
|
||||
|
||||
.report-list {
|
||||
width: calc(100% - 70rpx);
|
||||
//background-color: pink;
|
||||
}
|
||||
|
||||
.border-bottom {
|
||||
margin-top: 6rpx;
|
||||
}
|
||||
</style>
|
||||
300
src/pages/business/EQF/components/gkCustomerOrder.vue
Normal file
300
src/pages/business/EQF/components/gkCustomerOrder.vue
Normal file
@@ -0,0 +1,300 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'管壳订单列表'" :leftFlag="true" :rightFlag="true">
|
||||
<template #right>
|
||||
<view class="head-right" @click="handleConfirm">
|
||||
确定
|
||||
</view>
|
||||
</template>
|
||||
</customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view class="all-body">
|
||||
<!-- 搜索 -->
|
||||
<view class="search">
|
||||
<uni-search-bar class="custom-search" radius="28" placeholder="请输入合同名称" clearButton="auto"
|
||||
cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"
|
||||
v-model="gkOrder" @clear="gkOrder=''"></uni-search-bar>
|
||||
</view>
|
||||
|
||||
<!-- 分页部分 -->
|
||||
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
|
||||
:up="upOption" :down="downOption" :fixed="false" textColor="#ffffff" bgColor="#ffffff"
|
||||
class="scroll-h" :class="{'loading-scroll':cssFlag}"
|
||||
>
|
||||
<checkbox-group class="block">
|
||||
<view class="white-bg" v-for="(item, index) in list" :key="index">
|
||||
<checkbox class='checkbox'
|
||||
:checked="selectedItems.includes(index)"
|
||||
@click.stop="toggleItem(index)"
|
||||
></checkbox>
|
||||
|
||||
<view class="report-list">
|
||||
<view class="title">合同号:{{ item.gkOrder }}</view>
|
||||
<view class="title">客户名称:{{ item.gkCustomerName }}</view>
|
||||
<view class="title">产品名称:{{ item.gkCpName }}</view>
|
||||
<view class="title">产品型号:{{ item.gkProductSpec }}</view>
|
||||
<view class="title">数量:{{ item.gkAmount }}</view>
|
||||
<view class="title">批号:{{ item.gkTokenCode }}</view>
|
||||
<view class="title">母令:{{ item.gkMotherorderCode }}</view>
|
||||
<view class="title">图纸编号:{{ item.gkDrawingNumber }}</view>
|
||||
<view class="title">技术负责人:{{ item.gkTechnicalDirector }}</view>
|
||||
<view class="title">产品ID:{{ item.gkProductId }}</view>
|
||||
<view class="border-bottom"></view>
|
||||
</view>
|
||||
</view>
|
||||
</checkbox-group>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
import {ref, onMounted, getCurrentInstance, watch} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
import {onLoad} from "@dcloudio/uni-app";
|
||||
import {getGkCustomerOrderList} from "@/api/eqf/qualityFeedback.js";
|
||||
|
||||
let instance = null;
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
const mescrollRef = ref(null);
|
||||
let gkOrder = ref('')
|
||||
|
||||
let cssFlag=ref(false);//控制样式
|
||||
|
||||
const upOption = ref({
|
||||
page: { num: 0, size: 10 },
|
||||
noMoreSize: 5,
|
||||
empty: {
|
||||
tip: '~ 空空如也 ~',
|
||||
icon: "../../../../static/images/mescroll-empty.png"
|
||||
},
|
||||
textLoading: '加载中...',
|
||||
textNoMore: '已经到底了'
|
||||
});
|
||||
|
||||
const downOption = ref({
|
||||
auto: true,
|
||||
textInOffset: '下拉刷新',
|
||||
textOutOffset: '释放更新',
|
||||
textLoading: '刷新中...'
|
||||
});
|
||||
|
||||
const mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
|
||||
|
||||
onLoad((options)=>{
|
||||
instance = getCurrentInstance().proxy;
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.on('requestCusList', async (res) => {
|
||||
let {cusName} = res.data;
|
||||
gkOrder.value = cusName;
|
||||
})
|
||||
})
|
||||
|
||||
let timerId = null;
|
||||
// 搜索
|
||||
watch(gkOrder, (newValue, oldValue) => {
|
||||
if(timerId) clearTimeout(timerId);
|
||||
timerId = setTimeout(async ()=>{
|
||||
handleSearch();
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}, 500);
|
||||
});
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
const res = await getList(1, upOption.value.page.size);
|
||||
list.value = res.list;
|
||||
// 清空选中状态
|
||||
selectedItems.value = [];
|
||||
// 正确结束下拉刷新状态
|
||||
if (mescroll && typeof mescroll.endSuccess === 'function') {
|
||||
mescroll.endSuccess(res.list.length, res.total >= upOption.value.page.size);
|
||||
}
|
||||
} catch (error) {
|
||||
// 发生错误时结束下拉刷新,添加空值检查
|
||||
if (mescroll && typeof mescroll.endErr === 'function') {
|
||||
mescroll.endErr();
|
||||
} else {
|
||||
console.error('mescroll 对象不存在或 endErr 方法未定义', error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
const res = await getList(mescroll.num, mescroll.size);
|
||||
if (mescroll.num === 1) {
|
||||
list.value = res.list;
|
||||
// 清空选中状态
|
||||
selectedItems.value = [];
|
||||
} else {
|
||||
list.value.push(...res.list);
|
||||
}
|
||||
// 正确结束上拉加载状态
|
||||
if (mescroll && typeof mescroll.endSuccess === 'function') {
|
||||
mescroll.endSuccess(res.list.length, res.list.length >= mescroll.size);
|
||||
}
|
||||
} catch (error) {
|
||||
// 发生错误时结束上拉加载,添加空值检查
|
||||
if (mescroll && typeof mescroll.endErr === 'function') {
|
||||
mescroll.endErr();
|
||||
} else {
|
||||
console.error('mescroll 对象不存在或 endErr 方法未定义', error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 查询搜索跳转
|
||||
let handleSearch = async () => {
|
||||
// 触发下拉刷新以重新加载数据
|
||||
if (mescrollRef.value) {
|
||||
cssFlag.value = true;
|
||||
uni.showLoading()
|
||||
await downCallback(mescrollRef.value.mescroll);
|
||||
uni.hideLoading()
|
||||
cssFlag.value = false;
|
||||
}
|
||||
}
|
||||
// 获取数据列表
|
||||
const getList = async (pageIndex, pageSize) => {
|
||||
const param = {
|
||||
pageNum: pageIndex,
|
||||
pageSize,
|
||||
gkOrder: gkOrder.value
|
||||
}
|
||||
let { rows, total } = await getGkCustomerOrderList(param)
|
||||
return {list: rows, total};
|
||||
}
|
||||
|
||||
// 存储选中项的索引数组
|
||||
const selectedItems = ref([]);
|
||||
|
||||
// 切换单项选中状态
|
||||
const toggleItem = (index) => {
|
||||
if (selectedItems.value.includes(index)) {
|
||||
// 取消选中
|
||||
selectedItems.value = selectedItems.value.filter(item => item !== index);
|
||||
} else {
|
||||
// 选中
|
||||
selectedItems.value.push(index);
|
||||
}
|
||||
console.log('当前选中的索引:', selectedItems.value);
|
||||
}
|
||||
|
||||
// 不再需要checkboxChange函数,因为已经通过toggleItem处理了所有选择逻辑
|
||||
|
||||
// 确认选择并返回
|
||||
const handleConfirm = () => {
|
||||
// 确保list.value和selectedItems.value有效
|
||||
if (!list.value || !selectedItems.value || selectedItems.value.length === 0) {
|
||||
uni.showToast({ title: '请选择数据', icon: 'none' });
|
||||
return;
|
||||
}
|
||||
|
||||
// 获取选中的实际数据项,添加安全检查
|
||||
const selectedData = selectedItems.value
|
||||
.filter(index => index >= 0 && index < list.value.length) // 确保索引有效
|
||||
.map(index => list.value[index]);
|
||||
|
||||
console.log('所有选中的数据:', selectedData);
|
||||
|
||||
// 发送全局事件,传递选中的数据和逗号分隔的字符串
|
||||
uni.$emit('onCustomerSelected', {
|
||||
originalData: selectedData,
|
||||
});
|
||||
|
||||
// 设置标记,表示从选择页面返回
|
||||
uni.setStorageSync('isFromCustomerOrderPage', true);
|
||||
|
||||
// 返回上一页
|
||||
uni.navigateBack();
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.all-body {
|
||||
/* #ifdef APP-PLUS */
|
||||
top: 150rpx;
|
||||
height: calc(100vh - 75px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
top: 120rpx;
|
||||
height: calc(100vh);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.search .btn-search {
|
||||
border: none;
|
||||
background: none;
|
||||
line-height: normal;
|
||||
color: #fff;
|
||||
line-height: 56rpx !important;
|
||||
padding: 10rpx 0 0;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search .btn-search::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.scroll-h {
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
//padding-bottom:10rpx;
|
||||
margin-bottom: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
padding-right: 20rpx;
|
||||
transform: scale(0.8); // 调整复选框大小以匹配UI
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 32rpx;
|
||||
line-height: 48rpx;
|
||||
}
|
||||
|
||||
.report-list {
|
||||
width: calc(100% - 70rpx);
|
||||
//background-color: pink;
|
||||
}
|
||||
|
||||
.border-bottom {
|
||||
margin-top: 6rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,388 @@
|
||||
<template>
|
||||
<uni-forms ref="formRef" :model="formData" :rules="rules" label-width="100px" label-position="top">
|
||||
<uni-forms-item label="合同号" name="cusName" class="f-c-right">
|
||||
<view @click="chooseCustomer" class="form-item-container">
|
||||
<text class="name">{{ formData.gkOrder || '点击选择合同数据' }}</text>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="合同号" name="gkOrder" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.gkOrder" placeholder="请输入合同号" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="产品规格型号" name="gkProductSpec" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.gkProductSpec" placeholder="请输入产品规格型号" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="数量" name="gkAmount" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.gkAmount" type="text" placeholder="请输入供货数量" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="批号" name="gkTokenCode" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.gkTokenCode" placeholder="请输入批号" name="input" :disabled="isDisabled" />
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="母批号" name="gkMotherorderCode" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.gkMotherorderCode" placeholder="请输入母批号" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="图纸编号" name="gkDrawingNumber" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.gkDrawingNumber" placeholder="请输入图纸编号" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="技术负责人" name="gkTechnicalDirector" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.gkTechnicalDirector" placeholder="请输入技术负责人" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="产品ID" name="gkProductId" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.gkProductId" placeholder="请输入产品ID" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
</uni-forms>
|
||||
<view class="footer-con">
|
||||
<button class="btn-default" type="default" @click="handleDeleteDetailItem" size="mini" v-if="false">删除</button>
|
||||
<button class="btn-primary" type="primary" @click="submitForm" size="mini">保存</button>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup name="gkQualityFeedbackDetailComponent">
|
||||
import { ref, reactive } from 'vue'
|
||||
import cache from '../../../../utils/cache'
|
||||
import { onShow,onLoad, onUnload } from '@dcloudio/uni-app';
|
||||
import {
|
||||
qualityFeedbackGkDetailAdd
|
||||
} from '@/api/eqf/qualityFeedback.js'
|
||||
|
||||
let isDisabled = ref(false)
|
||||
const props = defineProps({
|
||||
cusName: String, //客户单位名称
|
||||
cusId: Number, //客户ID
|
||||
feedbackId: Number, //质量反馈ID
|
||||
status: String //状态
|
||||
})
|
||||
|
||||
// 表单数据
|
||||
const formData = ref({
|
||||
customerCode: '',
|
||||
batchNumber: '',
|
||||
supplyQuantity: '',
|
||||
specificationModel: '',
|
||||
motherBatch: '',
|
||||
materialId: '',
|
||||
eqfId: '',
|
||||
drawingNumber:'',
|
||||
technicalDirector:'',
|
||||
});
|
||||
|
||||
// 验证规则
|
||||
const rules = {
|
||||
contractNumber: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '请输入合同号' }
|
||||
]
|
||||
},
|
||||
batchNumber: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '请输入批号' }
|
||||
]
|
||||
},
|
||||
supplyQuantity: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '请输入供货数量' },
|
||||
{ type: 'number', errorMessage: '请输入数字' }
|
||||
]
|
||||
},
|
||||
specificationModel: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '请输入产品规格型号' }
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
// 表单ref
|
||||
const formRef = ref(null);
|
||||
|
||||
|
||||
onLoad((options) => {
|
||||
//清空表单
|
||||
clearForm()
|
||||
// 然后设置eqfId
|
||||
if (options && options.id) {
|
||||
formData.value.eqfId = options.id;
|
||||
}
|
||||
// 清除相关缓存,确保首次加载时没有旧数据干扰
|
||||
cache.remove(`qualityFeedbackDetail_${options?.id || ''}`);
|
||||
})
|
||||
|
||||
//获取当前外反的明细
|
||||
const detailList = ref([])
|
||||
const getQualityFeedbackDetail = async () => {
|
||||
let param = {
|
||||
eqfId: formData.value.eqfId
|
||||
}
|
||||
let detailRes = await qualityFeedbackDetailAdd(param);
|
||||
detailList.value = detailRes.rows[0];
|
||||
}
|
||||
|
||||
//删除明细项的内容
|
||||
function handleDeleteDetailItem() {
|
||||
// 使用本地存储或其他方式暂存删除操作
|
||||
uni.showToast({
|
||||
title: '删除成功',
|
||||
duration: 2000
|
||||
});
|
||||
//清空表单
|
||||
clearForm()
|
||||
}
|
||||
|
||||
// 清空表单
|
||||
function clearForm() {
|
||||
formData.value.gkOrder = ''
|
||||
formData.value.gkProductSpec = ''
|
||||
formData.value.gkAmount = ''
|
||||
formData.value.gkTokenCode = ''
|
||||
formData.value.gkMotherorderCode = ''
|
||||
formData.value.gkDrawingNumber = ''
|
||||
formData.value.gkTechnicalDirector = ''
|
||||
formData.value.gkProductId = ''
|
||||
}
|
||||
|
||||
// 选择合同页面跳转
|
||||
function chooseCustomer() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/EQF/components/gkCustomerOrder'
|
||||
})
|
||||
}
|
||||
|
||||
// 提交表单
|
||||
const submitForm = async () => {
|
||||
try {
|
||||
// 表单校验
|
||||
await formRef.value.validate()
|
||||
console.log(formData,"5555")
|
||||
const res = await qualityFeedbackGkDetailAdd(formData.value);
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
// 发送刷新列表事件,同时支持两种事件名称以兼容现有代码
|
||||
uni.$emit('refreshMarketList');
|
||||
uni.$emit('refreshFeedbackList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
console.log('表单数据:', formData.value)
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//页面渲染完成后,查询详情
|
||||
onShow(() => {
|
||||
// Try to load from cache if available
|
||||
const cachedData = cache.get(`qualityFeedbackDetail_${props.feedbackId}`);
|
||||
if (cachedData) {
|
||||
formData.value = {
|
||||
...formData.value,
|
||||
...cachedData
|
||||
};
|
||||
}
|
||||
|
||||
if (props.status == '完成') {
|
||||
isDisabled.value = true
|
||||
} else {
|
||||
isDisabled.value = false
|
||||
}
|
||||
|
||||
// 监听客户订单选择事件
|
||||
uni.$on('onCustomerSelected', handleCustomerSelected);
|
||||
});
|
||||
|
||||
// 处理客户订单选择结果
|
||||
function handleCustomerSelected(data) {
|
||||
// 确保数据存在
|
||||
if (!data || typeof data !== 'object') {
|
||||
console.error('无效的数据:', data);
|
||||
return;
|
||||
}
|
||||
|
||||
// 如果返回的是对象
|
||||
let selectedItems = [];
|
||||
|
||||
console.log('接收到的数据:', data);
|
||||
|
||||
// 兼容新格式
|
||||
selectedItems = data.originalData || [];
|
||||
|
||||
if (selectedItems && selectedItems.length > 0) {
|
||||
// 清空表单
|
||||
clearForm();
|
||||
|
||||
console.log('选中的项目数量:', selectedItems.length);
|
||||
console.log('选中的项目详情:', selectedItems);
|
||||
|
||||
// 循环拼接所有选中项目的字段
|
||||
const gkOrder = selectedItems.map(item => item.gkOrder || '').filter(Boolean);
|
||||
const gkProductSpec = selectedItems.map(item => item.gkProductSpec || '').filter(Boolean);
|
||||
const gkAmount = selectedItems.map(item => item.gkAmount || '').filter(Boolean);
|
||||
const gkTokenCode = selectedItems.map(item => item.gkTokenCode || '').filter(Boolean);
|
||||
const gkMotherorderCode = selectedItems.map(item => item.gkMotherorderCode || '').filter(Boolean);
|
||||
const gkDrawingNumber = selectedItems.map(item => item.gkDrawingNumber || '').filter(Boolean);
|
||||
const gkTechnicalDirector = selectedItems.map(item => item.gkTechnicalDirector || '').filter(Boolean);
|
||||
const gkProductId = selectedItems.map(item => item.gkProductId || '').filter(Boolean);
|
||||
|
||||
|
||||
console.log('拼接前的合同号:', gkOrder);
|
||||
|
||||
// 使用nextTick确保DOM更新
|
||||
setTimeout(() => {
|
||||
formData.value.gkOrder = gkOrder.join(',');
|
||||
formData.value.gkProductSpec = gkProductSpec.join(',');
|
||||
formData.value.gkAmount = gkAmount.join(',');
|
||||
formData.value.gkTokenCode = gkTokenCode.join(',');
|
||||
formData.value.gkMotherorderCode = gkMotherorderCode.join(',');
|
||||
formData.value.gkDrawingNumber = gkDrawingNumber.join(',');
|
||||
formData.value.gkTechnicalDirector = gkTechnicalDirector.join(',');
|
||||
formData.value.gkProductId = gkProductId.join(',');
|
||||
|
||||
console.log('设置后的表单数据:', formData.value);
|
||||
}, 0);
|
||||
|
||||
// 显示提示信息
|
||||
uni.showToast({
|
||||
title: `已选择${selectedItems.length}个批次`,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
|
||||
// 保存到缓存
|
||||
cache.set(`qualityFeedbackDetail_${props.feedbackId || ''}`, formData.value);
|
||||
}
|
||||
};
|
||||
|
||||
// 页面卸载时移除事件监听
|
||||
onUnload(() => {
|
||||
uni.$off('onCustomerSelected', handleCustomerSelected);
|
||||
});
|
||||
|
||||
// 处理批号变化,自动查询数据
|
||||
const handleBatchNumberChange = async (value) => {
|
||||
const trimmedValue = value?.trim() || '';
|
||||
// 防止空值查询
|
||||
if (!trimmedValue) {
|
||||
console.log('批号为空,不执行查询');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// 显示加载提示
|
||||
uni.showLoading({
|
||||
title: '查询中...',
|
||||
});
|
||||
const param = { batchNumber: value };
|
||||
console.log('查询参数:', param);
|
||||
// 尝试从缓存获取数据,减少重复请求
|
||||
const cacheKey = `batchInfo_${trimmedValue}`;
|
||||
let batchInfo = cache.get(cacheKey);
|
||||
console.log('缓存数据:', batchInfo);
|
||||
|
||||
if (1==1) {
|
||||
// 调用API获取数据
|
||||
console.log('准备调用API...');
|
||||
let apiData
|
||||
try {
|
||||
const res = await getMockBatchData(param);
|
||||
console.log('API响应原始数据:', res);
|
||||
// 根据isTransformResponse=false的设置,正确处理响应数据
|
||||
// 修复4: 处理可能的嵌套数据结构
|
||||
apiData = res;
|
||||
// 检查是否有data字段,适应不同的响应结构
|
||||
if (res.data !== undefined) {
|
||||
apiData = res.data;
|
||||
}
|
||||
} catch (apiError) {
|
||||
console.error('API调用直接失败:', apiError);
|
||||
// 重新抛出错误,让外层catch处理
|
||||
throw new Error(`API调用失败: ${apiError?.message || '未知错误'}`);
|
||||
}
|
||||
|
||||
console.log('处理后的数据:', apiData);
|
||||
|
||||
if (typeof apiData === 'object' && apiData !== null) {
|
||||
// 提取并格式化有用的数据
|
||||
batchInfo = {
|
||||
supplyQuantity: apiData.supplyQuantity || '',
|
||||
specificationModel: apiData.specificationModel || '',
|
||||
motherBatch: apiData.motherBatch || '',
|
||||
materialId: apiData.materialId || '',
|
||||
batchNumber: trimmedValue // 确保不会覆盖用户已输入的批号
|
||||
};
|
||||
|
||||
// 保存到缓存,过期时间设置为1小时
|
||||
cache.set(cacheKey, batchInfo, 3600000);
|
||||
|
||||
// 安全更新表单数据,避免覆盖整个formData对象
|
||||
formData.value.batchNumber = trimmedValue;
|
||||
formData.value.supplyQuantity = apiData.rows[0].amount || '';
|
||||
formData.value.specificationModel = apiData.rows[0].itemName || '';
|
||||
formData.value.motherBatch = apiData.rows[0].texing || '';
|
||||
formData.value.materialId = apiData.rows[0].materialId || '';
|
||||
formData.value.customerCode = apiData.rows[0].orderCode || '';
|
||||
|
||||
console.log('apiData:', apiData.rows[0]);
|
||||
console.log('更新后的formData:', formData.value);
|
||||
|
||||
// 显示查询成功提示
|
||||
uni.showToast({
|
||||
title: '查询成功',
|
||||
duration: 2000
|
||||
});
|
||||
} else {
|
||||
// 没有数据时的处理
|
||||
console.log('未查询到相关数据');
|
||||
uni.showToast({
|
||||
title: '未查询到相关数据',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
}
|
||||
} else {
|
||||
// 使用缓存数据更新表单
|
||||
formData.value = {
|
||||
...formData.value,
|
||||
...batchInfo,
|
||||
// 确保不会覆盖用户正在输入的批号
|
||||
batchNumber: trimmedValue
|
||||
};
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('查询批号数据失败:', error);
|
||||
uni.showToast({
|
||||
title: '查询失败,请重试',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
} finally {
|
||||
// 隐藏加载提示
|
||||
uni.hideLoading();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// 明确暴露给父组件的方法
|
||||
defineExpose({
|
||||
clearForm
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.footer-con {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: 20rpx;
|
||||
gap: 20rpx;
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
background-color: #f0f0f0;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: #6FA2F8;
|
||||
color: #fff;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,379 @@
|
||||
<template>
|
||||
<uni-forms ref="formRef" :model="formData" :rules="rules" label-width="100px" label-position="top">
|
||||
<uni-forms-item label="合同号" name="cusName" class="f-c-right">
|
||||
<view @click="chooseCustomer" class="form-item-container">
|
||||
<text class="name">{{ formData.customerCode || '点击选择合同数据' }}</text>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="合同号" name="customerCode" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.customerCode" placeholder="请输入合同号" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
|
||||
<uni-forms-item label="批号" name="batchNumber" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.batchNumber" placeholder="请输入批号" name="input" :disabled="isDisabled" @input="handleBatchNumberChange"/>
|
||||
</uni-forms-item>
|
||||
|
||||
<uni-forms-item label="供货数量" name="supplyQuantity" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.supplyQuantity" type="text" placeholder="请输入供货数量" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
|
||||
<uni-forms-item label="产品规格型号" name="specificationModel" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.specificationModel" placeholder="请输入产品规格型号" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
|
||||
<uni-forms-item label="母批号" name="motherBatch" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.motherBatch" placeholder="请输入母批号" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
|
||||
<uni-forms-item label="产品ID" name="materialId" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.materialId" placeholder="请输入产品ID" name="input" :disabled="isDisabled"/>
|
||||
</uni-forms-item>
|
||||
</uni-forms>
|
||||
<view class="footer-con">
|
||||
<button class="btn-default" type="default" @click="handleDeleteDetailItem" size="mini" v-if="false">删除</button>
|
||||
<button class="btn-primary" type="primary" @click="submitForm" size="mini">保存</button>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup name="qualityFeedbackDetailComponent">
|
||||
import { ref, reactive } from 'vue'
|
||||
import cache from '../../../../utils/cache'
|
||||
import { onShow,onLoad, onUnload } from '@dcloudio/uni-app';
|
||||
import {
|
||||
getMockBatchData,
|
||||
qualityFeedbackDetailAdd
|
||||
} from '@/api/eqf/qualityFeedback.js'
|
||||
|
||||
let isDisabled = ref(false)
|
||||
const props = defineProps({
|
||||
cusName: String, //客户单位名称
|
||||
cusId: Number, //客户ID
|
||||
feedbackId: Number, //质量反馈ID
|
||||
status: String //状态
|
||||
})
|
||||
|
||||
// 表单数据
|
||||
const formData = ref({
|
||||
customerCode: '',
|
||||
batchNumber: '',
|
||||
supplyQuantity: '',
|
||||
specificationModel: '',
|
||||
motherBatch: '',
|
||||
materialId: '',
|
||||
eqfId: '',
|
||||
});
|
||||
|
||||
// 验证规则
|
||||
const rules = {
|
||||
contractNumber: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '请输入合同号' }
|
||||
]
|
||||
},
|
||||
batchNumber: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '请输入批号' }
|
||||
]
|
||||
},
|
||||
supplyQuantity: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '请输入供货数量' },
|
||||
{ type: 'number', errorMessage: '请输入数字' }
|
||||
]
|
||||
},
|
||||
specificationModel: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '请输入产品规格型号' }
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
// 表单ref
|
||||
const formRef = ref(null);
|
||||
|
||||
|
||||
onLoad((options) => {
|
||||
//清空表单
|
||||
clearForm()
|
||||
// 然后设置eqfId
|
||||
if (options && options.id) {
|
||||
formData.value.eqfId = options.id;
|
||||
}
|
||||
// 清除相关缓存,确保首次加载时没有旧数据干扰
|
||||
cache.remove(`qualityFeedbackDetail_${options?.id || ''}`);
|
||||
})
|
||||
|
||||
//获取当前外反的明细
|
||||
const detailList = ref([])
|
||||
const getQualityFeedbackDetail = async () => {
|
||||
let param = {
|
||||
eqfId: formData.value.eqfId
|
||||
}
|
||||
let detailRes = await qualityFeedbackDetailAdd(param);
|
||||
detailList.value = detailRes.rows[0];
|
||||
}
|
||||
|
||||
//删除明细项的内容
|
||||
function handleDeleteDetailItem() {
|
||||
// 使用本地存储或其他方式暂存删除操作
|
||||
uni.showToast({
|
||||
title: '删除成功',
|
||||
duration: 2000
|
||||
});
|
||||
//清空表单
|
||||
clearForm()
|
||||
}
|
||||
|
||||
// 清空表单
|
||||
function clearForm() {
|
||||
formData.value.customerCode = ''
|
||||
formData.value.batchNumber = ''
|
||||
formData.value.supplyQuantity = ''
|
||||
formData.value.specificationModel = ''
|
||||
formData.value.motherBatch = ''
|
||||
formData.value.materialId = ''
|
||||
}
|
||||
|
||||
// 选择合同页面跳转
|
||||
function chooseCustomer() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/EQF/components/customerOrder'
|
||||
})
|
||||
}
|
||||
|
||||
// 提交表单
|
||||
const submitForm = async () => {
|
||||
try {
|
||||
// 表单校验
|
||||
await formRef.value.validate()
|
||||
console.log(formData,"5555")
|
||||
const res = await qualityFeedbackDetailAdd(formData.value);
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
// 发送刷新列表事件,同时支持两种事件名称以兼容现有代码
|
||||
uni.$emit('refreshMarketList');
|
||||
uni.$emit('refreshFeedbackList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
console.log('表单数据:', formData.value)
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//页面渲染完成后,查询详情
|
||||
onShow(() => {
|
||||
// Try to load from cache if available
|
||||
const cachedData = cache.get(`qualityFeedbackDetail_${props.feedbackId}`);
|
||||
if (cachedData) {
|
||||
formData.value = {
|
||||
...formData.value,
|
||||
...cachedData
|
||||
};
|
||||
}
|
||||
|
||||
if (props.status == '完成') {
|
||||
isDisabled.value = true
|
||||
} else {
|
||||
isDisabled.value = false
|
||||
}
|
||||
|
||||
// 监听客户订单选择事件
|
||||
uni.$on('onCustomerSelected', handleCustomerSelected);
|
||||
});
|
||||
|
||||
// 处理客户订单选择结果
|
||||
function handleCustomerSelected(data) {
|
||||
// 确保数据存在
|
||||
if (!data || typeof data !== 'object') {
|
||||
console.error('无效的数据:', data);
|
||||
return;
|
||||
}
|
||||
|
||||
// 如果返回的是对象
|
||||
let selectedItems = [];
|
||||
|
||||
console.log('接收到的数据:', data);
|
||||
|
||||
// 兼容新格式
|
||||
selectedItems = data.originalData || [];
|
||||
|
||||
if (selectedItems && selectedItems.length > 0) {
|
||||
// 清空表单
|
||||
clearForm();
|
||||
|
||||
console.log('选中的项目数量:', selectedItems.length);
|
||||
console.log('选中的项目详情:', selectedItems);
|
||||
|
||||
// 循环拼接所有选中项目的字段
|
||||
const customerCodes = selectedItems.map(item => item.orderCoode || '').filter(Boolean);
|
||||
const supplyQuantities = selectedItems.map(item => item.amount || '').filter(Boolean);
|
||||
const specificationModels = selectedItems.map(item => item.name || '').filter(Boolean);
|
||||
const motherBatches = selectedItems.map(item => item.texing || '').filter(Boolean);
|
||||
const materialIds = selectedItems.map(item => item.materialId || '').filter(Boolean);
|
||||
const batchNumbers = selectedItems.map(item => item.tokenCode || '').filter(Boolean);
|
||||
|
||||
console.log('拼接前的合同号:', customerCodes);
|
||||
|
||||
// 使用nextTick确保DOM更新
|
||||
setTimeout(() => {
|
||||
formData.value.customerCode = customerCodes.join(',');
|
||||
formData.value.supplyQuantity = supplyQuantities.join(',');
|
||||
formData.value.specificationModel = specificationModels.join(',');
|
||||
formData.value.motherBatch = motherBatches.join(',');
|
||||
formData.value.materialId = materialIds.join(',');
|
||||
formData.value.batchNumber = batchNumbers.join(',');
|
||||
|
||||
console.log('设置后的表单数据:', formData.value);
|
||||
}, 0);
|
||||
|
||||
// 显示提示信息
|
||||
uni.showToast({
|
||||
title: `已选择${selectedItems.length}个批次`,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
|
||||
// 保存到缓存
|
||||
cache.set(`qualityFeedbackDetail_${props.feedbackId || ''}`, formData.value);
|
||||
}
|
||||
};
|
||||
|
||||
// 页面卸载时移除事件监听
|
||||
onUnload(() => {
|
||||
uni.$off('onCustomerSelected', handleCustomerSelected);
|
||||
});
|
||||
|
||||
// 处理批号变化,自动查询数据
|
||||
const handleBatchNumberChange = async (value) => {
|
||||
const trimmedValue = value?.trim() || '';
|
||||
// 防止空值查询
|
||||
if (!trimmedValue) {
|
||||
console.log('批号为空,不执行查询');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// 显示加载提示
|
||||
uni.showLoading({
|
||||
title: '查询中...',
|
||||
});
|
||||
const param = { batchNumber: value };
|
||||
console.log('查询参数:', param);
|
||||
// 尝试从缓存获取数据,减少重复请求
|
||||
const cacheKey = `batchInfo_${trimmedValue}`;
|
||||
let batchInfo = cache.get(cacheKey);
|
||||
console.log('缓存数据:', batchInfo);
|
||||
|
||||
if (1==1) {
|
||||
// 调用API获取数据
|
||||
console.log('准备调用API...');
|
||||
let apiData
|
||||
try {
|
||||
const res = await getMockBatchData(param);
|
||||
console.log('API响应原始数据:', res);
|
||||
// 根据isTransformResponse=false的设置,正确处理响应数据
|
||||
// 修复4: 处理可能的嵌套数据结构
|
||||
apiData = res;
|
||||
// 检查是否有data字段,适应不同的响应结构
|
||||
if (res.data !== undefined) {
|
||||
apiData = res.data;
|
||||
}
|
||||
} catch (apiError) {
|
||||
console.error('API调用直接失败:', apiError);
|
||||
// 重新抛出错误,让外层catch处理
|
||||
throw new Error(`API调用失败: ${apiError?.message || '未知错误'}`);
|
||||
}
|
||||
|
||||
console.log('处理后的数据:', apiData);
|
||||
|
||||
if (typeof apiData === 'object' && apiData !== null) {
|
||||
// 提取并格式化有用的数据
|
||||
batchInfo = {
|
||||
supplyQuantity: apiData.supplyQuantity || '',
|
||||
specificationModel: apiData.specificationModel || '',
|
||||
motherBatch: apiData.motherBatch || '',
|
||||
materialId: apiData.materialId || '',
|
||||
batchNumber: trimmedValue // 确保不会覆盖用户已输入的批号
|
||||
};
|
||||
|
||||
// 保存到缓存,过期时间设置为1小时
|
||||
cache.set(cacheKey, batchInfo, 3600000);
|
||||
|
||||
// 安全更新表单数据,避免覆盖整个formData对象
|
||||
formData.value.batchNumber = trimmedValue;
|
||||
formData.value.supplyQuantity = apiData.rows[0].amount || '';
|
||||
formData.value.specificationModel = apiData.rows[0].itemName || '';
|
||||
formData.value.motherBatch = apiData.rows[0].texing || '';
|
||||
formData.value.materialId = apiData.rows[0].materialId || '';
|
||||
formData.value.customerCode = apiData.rows[0].orderCode || '';
|
||||
|
||||
console.log('apiData:', apiData.rows[0]);
|
||||
console.log('更新后的formData:', formData.value);
|
||||
|
||||
// 显示查询成功提示
|
||||
uni.showToast({
|
||||
title: '查询成功',
|
||||
duration: 2000
|
||||
});
|
||||
} else {
|
||||
// 没有数据时的处理
|
||||
console.log('未查询到相关数据');
|
||||
uni.showToast({
|
||||
title: '未查询到相关数据',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
}
|
||||
} else {
|
||||
// 使用缓存数据更新表单
|
||||
formData.value = {
|
||||
...formData.value,
|
||||
...batchInfo,
|
||||
// 确保不会覆盖用户正在输入的批号
|
||||
batchNumber: trimmedValue
|
||||
};
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('查询批号数据失败:', error);
|
||||
uni.showToast({
|
||||
title: '查询失败,请重试',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
} finally {
|
||||
// 隐藏加载提示
|
||||
uni.hideLoading();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// 明确暴露给父组件的方法
|
||||
defineExpose({
|
||||
clearForm
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.footer-con {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: 20rpx;
|
||||
gap: 20rpx;
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
background-color: #f0f0f0;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: #6FA2F8;
|
||||
color: #fff;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user