|
@@ -332,6 +332,7 @@
|
|
|
<span class="col-108 m-r-8">
|
|
<span class="col-108 m-r-8">
|
|
|
已选: <span class="text-red">{{ selectedList.length }}</span> 条
|
|
已选: <span class="text-red">{{ selectedList.length }}</span> 条
|
|
|
</span>
|
|
</span>
|
|
|
|
|
+ <span>应收金额总计:¥{{ JYreceivedAmountTotal || 0 }}</span>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<el-table :data="receiveData" :height="isTrue ? 'calc(100% - 396px)' : 'calc(100% - 296px)'"
|
|
<el-table :data="receiveData" :height="isTrue ? 'calc(100% - 396px)' : 'calc(100% - 296px)'"
|
|
|
style="width: 100%; margin-top: 20px;" ref="ReceiveDataRef2" @select="handleSelectChange2"
|
|
style="width: 100%; margin-top: 20px;" ref="ReceiveDataRef2" @select="handleSelectChange2"
|
|
@@ -568,7 +569,8 @@ let myRouter = useRouter()
|
|
|
|
|
|
|
|
let activeName = ref('1')
|
|
let activeName = ref('1')
|
|
|
let subActiveName = ref('first')
|
|
let subActiveName = ref('first')
|
|
|
-const receivedAmountTotal = ref(0)
|
|
|
|
|
|
|
+const receivedAmountTotal = ref(0)//应收金额总计
|
|
|
|
|
+const JYreceivedAmountTotal = ref(0)//驾意险应收金额总计
|
|
|
const handleTabsClick = (e) => {
|
|
const handleTabsClick = (e) => {
|
|
|
activeName.value = e.props.name
|
|
activeName.value = e.props.name
|
|
|
if (e.props.name == '1') {
|
|
if (e.props.name == '1') {
|
|
@@ -1149,6 +1151,7 @@ const getJyOtherReceivableList = () => {
|
|
|
receiveData.value = res.data.insPlyIncomePage.records
|
|
receiveData.value = res.data.insPlyIncomePage.records
|
|
|
allData.value = res.data.insPlyIncomeOrders
|
|
allData.value = res.data.insPlyIncomeOrders
|
|
|
total2.value = res.data.insPlyIncomePage.total
|
|
total2.value = res.data.insPlyIncomePage.total
|
|
|
|
|
+ JYreceivedAmountTotal.value = res.data.allAmount
|
|
|
receiveData.value.forEach(element => {
|
|
receiveData.value.forEach(element => {
|
|
|
if (selectedList.value.find(v => v.id === element.id)) {
|
|
if (selectedList.value.find(v => v.id === element.id)) {
|
|
|
nextTick(() => {
|
|
nextTick(() => {
|