no message

This commit is contained in:
A1300399510
2025-10-28 10:01:48 +08:00
parent 6bb48ff86d
commit 89703bf025
11 changed files with 283 additions and 3 deletions

View File

@@ -3,12 +3,95 @@ import { itemForum } from "../component/item-forum/item-forum.js";
import { itemOffer } from "../component/item-offer/item-offer.js";
import { itemSummary } from "../component/item-summary/item-summary.js";
import { itemVote } from "../component/item-vote/item-vote.js";
import { itemMj } from "../component/item-mj/item-mj.js";
import { itemTenement } from "../component/item-tenement/item-tenement.js";
const appSectionIndex = createApp({
setup() {
let signInAlreadyState = ref(false);
let list = ref([
{
id: 292079,
uniqid: "KvvbW0CeePje",
subject: "佐敦文華小氣窗套房近柯士甸及高鐵獨立廚廁超方便歡迎微信tamama228了解!",
location: "2.2",
acreage: "80",
updatetime: 1761106924,
status: 1,
dingtime: 1761099519,
count_view: 675,
count_fav: 13,
elevator: 1,
point: "114.171951,22.304155",
sunshinearea: -1,
rent: 5000,
verified: 0,
isintermediary: 0,
rentalduration: "0",
rentalperiod: "月",
avatar: "https://nas.gter.net:9008/avatar/97K4EWIMLrsbGTWXslW1W1VREKfc2UhyiGPAJp6yZRCGcttjKcbNR8lQYWFjYQ~~/mini",
gptype: "整租",
type: "tenement",
intermediary: 5,
leaseterm: 2,
gender: 3,
property: "2",
imageurl: "https://o.x-php.com/Zvt57TuJSUvkyhw-xG7Y2l-c_p0kd3nqqsgFptxhXa6SWi2uePJ5Bg8VFrPIvsEG-4BUCm7F7lfn5E5jtX0K_tdQgQ_5bap6c_Ca1y5p6TdLOeCoNKSSNDQyOQ~~",
nickname: "葉拳",
position: 1,
isvideo: 1,
isnew: 0,
ispic: 1,
ishot: 0,
timestamp: 1729393074,
tenementtype: "2.1",
},
{
role: {
allow: true,
},
uniqid: "bWSf4CODWyvr",
title: "",
type: "interviewexperience",
content: "皇家兽医学院与专业深度解析",
release_at: "2025-08-21 22:51:38",
sectionid: [19],
sectionn: ["其它学科"],
tags: ["其它学科", "农学类", "经验分享", "英国-英格兰", "面试经验", "申请准备", "2025", "英国皇家兽医学院"],
views: 115,
comments: 0,
commentreviews: [],
likes: 0,
collections: 0,
is_like: 0,
is_collect: 0,
coins: 0,
best: 0,
recommend: 0,
sticky: 0,
anonymous: 0,
ismyself: 0,
data: {
profession: "",
interviewtime: "2025-08-21",
schoolid: 215,
schoolname: "英国皇家兽医学院",
schoolenname: "Royal Veterinary College",
schoollogo: "https://o.x-php.com/Zvt57TuJSUvkyhw-xG7Y2l-W_Z0kcn_qqsgFptxhXa6RWi26P-BuTQ0SHbbD4tkb8LQ0NDI5",
city: "英国-英格兰",
project: "皇家兽医",
},
user: {
nickname: "HKHv记录",
avatar: "https://nas.gter.net:9008/avatar/97K4EWIMLrsbGTWXslC2X11UFquOikN42jDKLNjtax7HdN4xe5LWSdU9oWFhY2E~/small",
groupid: 0,
groupimage: "",
grouptitle: "",
},
images: [],
token: "en86azwTjR4YSyZgAyynGOErZRShukBB6Lh2H1w_LEcLuh2MWfRxeNHNxGXK5Wo-Cl_HtrYKD7hvu66t7-lvTWyhbqLDZGE5NQ~~",
},
{
anonymous: 1,
best: 0,
@@ -1394,5 +1477,7 @@ appSectionIndex.component("itemForum", itemForum);
appSectionIndex.component("itemOffer", itemOffer);
appSectionIndex.component("itemSummary", itemSummary);
appSectionIndex.component("itemVote", itemVote);
appSectionIndex.component("itemMj", itemMj);
appSectionIndex.component("itemTenement", itemTenement);
appSectionIndex.mount("#homepage-other");

View File

@@ -15,6 +15,10 @@ const watchList = {
"../component/item-summary/item-summary.txt": "../component/item-summary/item-summary.js",
// 监听 item-vote.txt同步到 item-vote.js
"../component/item-vote/item-vote.txt": "../component/item-vote/item-vote.js",
// 监听 item-mj.txt同步到 item-mj.js
"../component/item-mj/item-mj.txt": "../component/item-mj/item-mj.js",
// 监听 item-tenement.txt同步到 item-tenement.js
"../component/item-tenement/item-tenement.txt": "../component/item-tenement/item-tenement.js",
// 可添加更多文件(格式:'txt路径': 'js路径'
// './component/other/other.txt': './component/other/other.js',
};