qb 6 months ago
parent
commit
c895e22c65
  1. 4
      src/option/aftersales/vueTvemp.js
  2. 10
      src/views/aftersales/aftersalesWorkOrder.vue
  3. 43
      src/views/financialsector/Financialse/FinancialTrunkLine.vue

4
src/option/aftersales/vueTvemp.js

@ -263,8 +263,8 @@ export const columnList = [
head: false, head: false,
}, },
{ {
prop: 'problemDescription', prop: 'investigationProcess',
label: '异常问题描述', label: '调查经过',
type: 1, type: 1,
values: '', values: '',
width: '150', width: '150',

10
src/views/aftersales/aftersalesWorkOrder.vue

@ -4221,12 +4221,14 @@ const exportReport = () => {
type: 'warning', type: 'warning',
}) })
.then(() => { .then(() => {
let dataID = { let dataID = {
workOrderStatus: details.query.workOrderStatus, workOrderStatus: details.query.workOrderStatus,
}; };
if (details.selectionList.length) { if (details.selectionList.length) {
dataID.ids = details.selectionList.map(item => item.id).join(','); dataID.ids = details.selectionList.map(item => item.id).join(',');
} }
pageLoad.value=true
$_exportAftersalesWorkOrder(dataID).then(res => { $_exportAftersalesWorkOrder(dataID).then(res => {
const currentDate = new Date(); const currentDate = new Date();
const formattedDate = `${currentDate.getFullYear()}${(currentDate.getMonth() + 1) const formattedDate = `${currentDate.getFullYear()}${(currentDate.getMonth() + 1)
@ -4240,7 +4242,13 @@ const exportReport = () => {
.padStart(2, '0')}`; .padStart(2, '0')}`;
console.log(res, '导出'); console.log(res, '导出');
downloadXls(res.data, `导出工单数据${formattedDate}.xlsx`); downloadXls(res.data, `导出工单数据${formattedDate}.xlsx`);
}); }).catch((e)=>{
console.log(e,'error');
}).finally(()=>{
pageLoad.value=false
})
;
}) })
.catch(() => {}); .catch(() => {});
}; };

43
src/views/financialsector/Financialse/FinancialTrunkLine.vue

@ -49,7 +49,11 @@
prop="trunklineIsByCategory" prop="trunklineIsByCategory"
:rules="[{ required: true, message: '请选择是否区分品类', trigger: ['blur', 'change'] }]" :rules="[{ required: true, message: '请选择是否区分品类', trigger: ['blur', 'change'] }]"
> >
<el-radio-group v-model="details.form.trunklineIsByCategory" class="ml-4"> <el-radio-group
v-model="details.form.trunklineIsByCategory"
class="ml-4"
@change="trunklineIsByCategorychange"
>
<el-radio <el-radio
v-for="item in details.isType" v-for="item in details.isType"
:key="item.value" :key="item.value"
@ -379,6 +383,24 @@ const goriesloading = ref(false);
/** 计价方式改变时 */ /** 计价方式改变时 */
const handleChangePrcieMethod = value => { const handleChangePrcieMethod = value => {
console.log('value :>> ', value); console.log('value :>> ', value);
// dataTa
details.form.billTemplateDetail.forEach(item => {
// item.code data
if (!value.includes(item.code)) {
// categories
item.categories = [
{
reduce: false,
plus: true,
goodsName: '',
goodsId: '',
goods: '',
goodsArr: [],
loading: false,
},
];
}
});
let activeItem: any = {}; let activeItem: any = {};
for (let i = 0; i < details.lowestType.length; i++) { for (let i = 0; i < details.lowestType.length; i++) {
@ -387,7 +409,7 @@ const handleChangePrcieMethod = value => {
activeItem = item; activeItem = item;
break; break;
} }
console.log(details.form.billTemplateDetail, 'details.form.billTemplateDetail');
if (!activeItem.MappingOrNot) return; if (!activeItem.MappingOrNot) return;
if (!details.form.trunklinePricingType.includes(activeItem.mapValue)) if (!details.form.trunklinePricingType.includes(activeItem.mapValue))
details.form.trunklineMinCostType = '0'; details.form.trunklineMinCostType = '0';
@ -590,7 +612,22 @@ const handleReduce = (value: any, index: number) => {
if (index === 0) return; if (index === 0) return;
value.categories.splice(index, 1); value.categories.splice(index, 1);
}; };
//
const trunklineIsByCategorychange = () => {
details.form.billTemplateDetail.forEach(item => {
item.categories = [
{
reduce: false,
plus: true,
goodsName: '',
goodsId: '',
goods: '',
goodsArr: [],
loading: false,
},
];
});
};
/** 货物变化时 */ /** 货物变化时 */
const handleChangeCategory = item => { const handleChangeCategory = item => {
if (!item.goods) { if (!item.goods) {

Loading…
Cancel
Save