Browse Source

修复占比计算问题

pre-production
马远东 1 year ago
parent
commit
cdb999acf3
  1. 23
      src/views/aftersales/aftersalesWorkOrder.vue
  2. 27
      src/views/aftersales/aftersalesWorkOrderAdd.vue

23
src/views/aftersales/aftersalesWorkOrder.vue

@ -4,13 +4,8 @@
<el-tabs type="border-card" v-model="tabValue" @tab-change="tabChenge" class="el_tabs">
<div></div>
<template v-for="item in TabList">
<el-tab-pane
v-if="item.state"
:name="item.name"
:label="item.label"
:key="item.name"
>
</el-tab-pane>
<el-tab-pane v-if="item.state" :name="item.name" :label="item.label" :key="item.name">
</el-tab-pane>
</template>
<div class="content_right">
@ -1954,13 +1949,13 @@ const tabChenge = val => {
//
console.log(UserPermissions.value, '当前身份');
console.log('待处理');
ProcessingPartyState.value = true; //
data.workOrderStatus = 500;
details.query.workOrderStatus = 500;
ArbitrationStatus.value = true; //
Tableheaderswitching(columnList);
empty();
IndexTable(data);
ProcessingPartyState.value = true; //
data.workOrderStatus = 500;
details.query.workOrderStatus = 500;
ArbitrationStatus.value = true; //
Tableheaderswitching(columnList);
empty();
IndexTable(data);
} else if (val == 4) {
ProcessingPartyState.value = false; //
//

27
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -589,7 +589,7 @@ const $route = useRoute();
const Indexform = ref({
packList: [],
decreaseImageEntityList: [], //
discoveryNode:'1'
discoveryNode: '1',
}); //
const ProcessingResults = ref([]); //
const IndexException = ref([]); //
@ -754,10 +754,10 @@ const onLoad = () => {
Paymentmethod.value = res.data.data;
});
Indexform.value.discoveryNode='1'//
groundlineType.value =Indexform.value.discoveryNode
Indexform.value.workOrderType='1'//
SelectType.value=Indexform.value.workOrderType
Indexform.value.discoveryNode = '1'; //
groundlineType.value = Indexform.value.discoveryNode;
Indexform.value.workOrderType = '1'; //
SelectType.value = Indexform.value.workOrderType;
};
onLoad(); //
@ -966,11 +966,15 @@ const TopChange = val => {
};
//
const CompanyProportion = () => {
let proportion = 0; //
FangAddList.value.forEach(item => {
proportion += Number(item.responsibilityRatio);
});
companyProportion.value = 100 - proportion;
setInterval(() => {
console.log(FangAddList.value, ' FangAddList.value');
let proportion = 0; //
FangAddList.value.forEach(item => {
console.log(item.responsibilityRatio);
proportion += Number(item.responsibilityRatio);
});
companyProportion.value = 100 - proportion;
}, 0);
};
//
const CompanyProportionInput = () => {
@ -1480,11 +1484,10 @@ const ViewPackageDetails = val => {
//
const isShowFormItem1 = computed(() => {
return !['1', '2', '5', '6', '7'].includes(groundlineType.value);
});
//
const isShowFormItem2 = computed(() => {
return !['2', '5', '6', '7', '8'].includes(groundlineType.value);
return !['2', '5', '6', '7', '8'].includes(groundlineType.value);
});
</script>

Loading…
Cancel
Save