|
@@ -129,7 +129,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<span class="col-108 m-r-8">
|
|
<span class="col-108 m-r-8">
|
|
|
<el-button class="radius-2px width-100"
|
|
<el-button class="radius-2px width-100"
|
|
|
- :disabled="selectedList.some(item => item.invoiceStatusName === '已开票' || item.disableFlag === '1') "
|
|
|
|
|
|
|
+ :disabled="selectedList.some(item => item.invoiceStatusName === '已开票' || item.disableFlag === '1')"
|
|
|
@click="handleBatchEdit">批量修改比例</el-button>
|
|
@click="handleBatchEdit">批量修改比例</el-button>
|
|
|
</span>
|
|
</span>
|
|
|
<span class="col-108 m-r-8">
|
|
<span class="col-108 m-r-8">
|
|
@@ -141,7 +141,8 @@
|
|
|
</el-button>
|
|
</el-button>
|
|
|
<template #dropdown>
|
|
<template #dropdown>
|
|
|
<el-dropdown-menu>
|
|
<el-dropdown-menu>
|
|
|
- <el-dropdown-item :disabled="selectedList.some(item =>item.disableFlag === '1')" command="删除">删除</el-dropdown-item>
|
|
|
|
|
|
|
+ <el-dropdown-item :disabled="selectedList.some(item => item.disableFlag === '1')"
|
|
|
|
|
+ command="删除">删除</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
</el-dropdown-menu>
|
|
|
</template>
|
|
</template>
|
|
|
</el-dropdown>
|
|
</el-dropdown>
|
|
@@ -568,6 +569,9 @@ const myRoute = useRoute()
|
|
|
let myRouter = useRouter()
|
|
let myRouter = useRouter()
|
|
|
|
|
|
|
|
let activeName = ref(myRoute.query.activeindex as any || '1')
|
|
let activeName = ref(myRoute.query.activeindex as any || '1')
|
|
|
|
|
+console.log(activeName.value)
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
let subActiveName = ref('first')
|
|
let subActiveName = ref('first')
|
|
|
const receivedAmountTotal = ref(0)//应收金额总计
|
|
const receivedAmountTotal = ref(0)//应收金额总计
|
|
|
const JYreceivedAmountTotal = ref(0)//驾意险应收金额总计
|
|
const JYreceivedAmountTotal = ref(0)//驾意险应收金额总计
|
|
@@ -1216,9 +1220,13 @@ onMounted(() => {
|
|
|
dictDetails();
|
|
dictDetails();
|
|
|
initCompany();
|
|
initCompany();
|
|
|
initDept();
|
|
initDept();
|
|
|
- getOtherReceivableList();
|
|
|
|
|
- getreceivedAmountTotal();
|
|
|
|
|
getagreementList();
|
|
getagreementList();
|
|
|
|
|
+ if (activeName.value == '1') {
|
|
|
|
|
+ getOtherReceivableList()
|
|
|
|
|
+ getreceivedAmountTotal()
|
|
|
|
|
+ } else if (activeName.value == '2') {
|
|
|
|
|
+ getJyOtherReceivableList()
|
|
|
|
|
+ }
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
</script>
|
|
</script>
|
|
@@ -1257,6 +1265,7 @@ onMounted(() => {
|
|
|
:deep(.el-radio) {
|
|
:deep(.el-radio) {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/* 自定义表格点击高亮颜色 */
|
|
/* 自定义表格点击高亮颜色 */
|
|
|
:deep(.el-table__body tr.current-row > td) {
|
|
:deep(.el-table__body tr.current-row > td) {
|
|
|
background-color: #c1e8fa !important;
|
|
background-color: #c1e8fa !important;
|
|
@@ -1265,4 +1274,4 @@ onMounted(() => {
|
|
|
:deep(.el-table__body tr.current-row:hover > td) {
|
|
:deep(.el-table__body tr.current-row:hover > td) {
|
|
|
background-color: #b4ddf8 !important;
|
|
background-color: #b4ddf8 !important;
|
|
|
}
|
|
}
|
|
|
-</style>
|
|
|
|
|
|
|
+</style>
|