This commit is contained in:
parent
6c86c2ab8a
commit
42611cc350
|
@ -60,7 +60,7 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, reactive, onMounted } from "vue";
|
import { ref, reactive, onMounted,nextTick } from "vue";
|
||||||
import listRightImg from "@/components/list-right-img.vue";
|
import listRightImg from "@/components/list-right-img.vue";
|
||||||
import listNoImg from "@/components/list-no-img.vue";
|
import listNoImg from "@/components/list-no-img.vue";
|
||||||
import j1 from "../assets/cc4.png";
|
import j1 from "../assets/cc4.png";
|
||||||
|
@ -110,74 +110,7 @@ const mainList = reactive([
|
||||||
const chooseId = ref("1");
|
const chooseId = ref("1");
|
||||||
const choose = (id) => {
|
const choose = (id) => {
|
||||||
chooseId.value = id;
|
chooseId.value = id;
|
||||||
scolltop();
|
|
||||||
// console.log()
|
|
||||||
records.list = [
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
display: 1,
|
|
||||||
title: "“三问”个人养老金:是什么、怎么缴、如何领?",
|
|
||||||
createdAt: "11月27日",
|
|
||||||
imgUrl: j1,
|
|
||||||
eye: "8888",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
display: 1,
|
|
||||||
title: "100场社区活动——教你轻松玩转智能手机",
|
|
||||||
createdAt: "11月27日",
|
|
||||||
imgUrl: j2,
|
|
||||||
eye: "8888",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
display: 1,
|
|
||||||
title: "“三问”个人养老金:是什么、怎么缴、如何领?",
|
|
||||||
createdAt: "11月27日",
|
|
||||||
imgUrl: j1,
|
|
||||||
eye: "8888",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
display: 1,
|
|
||||||
title: "100场社区活动——教你轻松玩转智能手机",
|
|
||||||
createdAt: "11月27日",
|
|
||||||
imgUrl: j2,
|
|
||||||
eye: "8888",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
display: 1,
|
|
||||||
title: "“三问”个人养老金:是什么、怎么缴、如何领?",
|
|
||||||
createdAt: "11月27日",
|
|
||||||
imgUrl: j1,
|
|
||||||
eye: "8888",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
display: 1,
|
|
||||||
title: "100场社区活动——教你轻松玩转智能手机",
|
|
||||||
createdAt: "11月27日",
|
|
||||||
imgUrl: j2,
|
|
||||||
eye: "8888",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
display: 1,
|
|
||||||
title: "“三问”个人养老金:是什么、怎么缴、如何领?",
|
|
||||||
createdAt: "11月27日",
|
|
||||||
imgUrl: j1,
|
|
||||||
eye: "8888",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
display: 1,
|
|
||||||
title: "100场社区活动——教你轻松玩转智能手机",
|
|
||||||
createdAt: "11月27日",
|
|
||||||
imgUrl: j2,
|
|
||||||
eye: "8888",
|
|
||||||
},
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
const records = reactive({
|
const records = reactive({
|
||||||
list: [
|
list: [
|
||||||
|
@ -237,14 +170,7 @@ const onLoad = () => {
|
||||||
finished.value = true;
|
finished.value = true;
|
||||||
}, 1000);
|
}, 1000);
|
||||||
};
|
};
|
||||||
const scolltop = () => {
|
|
||||||
nextTick(() => {
|
|
||||||
let list = document.getElementsByClassName("list");
|
|
||||||
if (list) {
|
|
||||||
list.scrollTop = 0; // 滚动高度
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
// showToast("666")
|
// showToast("666")
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue