申购车中展开收起修改
This commit is contained in:
parent
c8d315934a
commit
4c77bb2405
|
@ -29,7 +29,8 @@
|
||||||
p-id="5928"
|
p-id="5928"
|
||||||
></path>
|
></path>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="btn" @click="falg = !falg">展开</span>
|
<span class="btn" style="font-weight:600" @click="falg = !falg">展开</span>
|
||||||
|
<span class="btn" @click="falg = !falg">(共{{totalDataNum}}条数据)</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="btnBox" v-show="falg">
|
<div class="btnBox" v-show="falg">
|
||||||
<svg
|
<svg
|
||||||
|
@ -49,7 +50,7 @@
|
||||||
fill="#13227a"
|
fill="#13227a"
|
||||||
></path>
|
></path>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="btn" @click="falg = !falg">收起</span>
|
<span class="btn" style="font-weight:600" @click="falg = !falg">收起</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
@ -165,6 +166,7 @@
|
||||||
})
|
})
|
||||||
const falg = ref(false)
|
const falg = ref(false)
|
||||||
let dataForm = ref([])
|
let dataForm = ref([])
|
||||||
|
let totalDataNum = ref(0);
|
||||||
const videoVisible = ref(false)
|
const videoVisible = ref(false)
|
||||||
const xVideoList = ref([])
|
const xVideoList = ref([])
|
||||||
const xVideoListAll = ref([])
|
const xVideoListAll = ref([])
|
||||||
|
@ -251,7 +253,17 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
getDeptAllData();
|
getDeptAllData();
|
||||||
</script>
|
const getDataTotalNum = () =>{
|
||||||
|
let totalNum =0;
|
||||||
|
dataForm.value.forEach((item)=>{
|
||||||
|
totalNum = totalNum +item.arr.length;
|
||||||
|
});
|
||||||
|
totalDataNum.value = totalNum;
|
||||||
|
}
|
||||||
|
getDataTotalNum();
|
||||||
|
//获取数据的总条数
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
<style scoped lang="less">
|
<style scoped lang="less">
|
||||||
.ability-to-apply-for {
|
.ability-to-apply-for {
|
||||||
|
|
Loading…
Reference in New Issue