這個(gè)簡單啊,寫2個(gè)調(diào)用。頭條用h1/h1,其余的6條用另外的樣式,在SQL語句里寫。第一條是select * from 新聞表 where classid = 欄目ID limit 0,1;后面的6條是select * from 新聞表 where classid = 欄目ID limit 1,6.
成都創(chuàng)新互聯(lián)是一家朝氣蓬勃的網(wǎng)站建設(shè)公司。公司專注于為企業(yè)提供信息化建設(shè)解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設(shè)計(jì),網(wǎng)站模板,微信公眾號(hào)開發(fā),軟件開發(fā),微信小程序開發(fā),十余年建站對(duì)成都餐廳設(shè)計(jì)等多個(gè)方面,擁有豐富建站經(jīng)驗(yàn)。
你的意思是:
做了一個(gè)數(shù)據(jù)模型(該數(shù)據(jù)模型簡稱為:A數(shù)據(jù)模型)
然后建立一個(gè)欄目(該欄目簡述為:B欄目)使用A數(shù)據(jù)模型
然后在B欄目中存儲(chǔ)上述你的圖片所展示的信息
是這個(gè)意思嗎?
如果是這個(gè)意思的話,請?jiān)贏數(shù)據(jù)模型中定義:
證書編號(hào)字段? field1
姓名字段? field2
性別字段? field3
批準(zhǔn)日期字段? field4
考級(jí)單位字段? field5
證書字段? field6
然后,在定義這個(gè)模型中的上述6個(gè)字段可以在列表頁展示
然后自己在列表頁模版中寫相應(yīng)的模版,如:
table
tr
th證件編號(hào)/th
th姓名/th
th性別/th
th批準(zhǔn)日期/th
th考級(jí)單位/th
th證書/th
th查看/th
/tr
[!--empirenews.listtemp--]!--list.var1--[!--empirenews.listtemp--]
/table
然后在list.var中寫入如下模版信息:
tr
td[!--field1--]/td
td[!--field2--]/td
td[!--field3--]/td
td[!--field4--]/td
td[!--field5--]/td
td[!--field6--]/td
tda?href="[!--titleurl--]"查看/a/td
/tr
一、批量導(dǎo)入欄目:
insert into phome_enewsclass (classid,bclassid,classname,myorder,classpath,intro,classpagekey) select id,reid,typename,sortrank,typedir,description,keywords from dede_arctype
二、導(dǎo)入文章
insert into phome_ecms_news (id,classid,truetime,onclick,title,titlepic,filename,newstime,lastdotime,smalltext,keyboard) select id,typeid,sortrank,click,title,litpic,filename,pubdate,senddate,description,keywords from dede_archives
三、導(dǎo)入文章來源作者
update `dede_archives` da,phome_ecms_news_data_1 men set da.source=men.befrom,da.writer=men.writer where da.id=men.id
四、導(dǎo)入文章body(內(nèi)容)
insert into phome_ecms_news_data_1 (id,classid,newstext) select aid,typeid,body from dede_addonarticle men
如果你DEDE數(shù)據(jù)表中開頭為其他的,代碼中的dede_也要換成你dede數(shù)據(jù)庫中的開頭。