12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import ArticleContentList from './articleContent.js'
-
- const ArticleList = [{
- Type: 1,
- List: [{
- Id: '1',
- MainImg: 'https://whole-estate.oss-cn-beijing.aliyuncs.com/notebaike-1.jpg',
- Title: '如何选择靠谱的房地产开发商?',
- Remark: '居民购置房产时,从看房、选房、购房、交房到入住及后期管理维护,最经常打交道的就是开发商',
- Content: ArticleContentList.ArticleContentList[0],
- Publisher: '银城江北公司',
- CreateDate: '2019-03-28 14:05:02',
- Type: 1
- }, {
- Id: '2',
- MainImg: 'https://whole-estate.oss-cn-beijing.aliyuncs.com/notebaike-2.jpg',
- Title: '何为土地使用年限&产权年限?',
- Remark: '对于大多数人来说,房子这最重要的财产可不容一点马虎!70年后,我们的房子还属于我们吗?到期后,我们又该做点啥?',
- Content: ArticleContentList.ArticleContentList[1],
- Publisher: '银城江北公司',
- CreateDate: '2019-03-28 14:05:02',
- Type: 1
- }]
- }, {
- Type: 2,
- List: [{
- Id: '3',
- MainImg: 'https://whole-estate.oss-cn-beijing.aliyuncs.com/notebaike-3.jpg',
- Title: '到底地段重要还是户型重要呢?',
- Remark: '每位购房者在选房时都会考虑很多因素。其中常常让很多人纠结的一个问题就是:到底地段重要还是户型重要呢?',
- Content: ArticleContentList.ArticleContentList[2],
- Publisher: '银城江北公司',
- CreateDate: '2019-03-28 14:05:02',
- Type: 2
- }, {
- Id: '4',
- MainImg: 'https://whole-estate.oss-cn-beijing.aliyuncs.com/notebaike-4.jpg',
- Title: '买房是应该买精装房还是毛坯房?',
- Remark: '购买精装房还是毛坯房,哪个更划算呢?很多人在面临这个问题时不知道怎样选择,也不知道哪个更适合自己,精装房省时省力',
- Content: ArticleContentList.ArticleContentList[3],
- Publisher: '银城江北公司',
- CreateDate: '2019-03-28 14:05:02',
- Type: 2
- }]
- }, {
- Type: 3,
- List: [{
- Id: '5',
- MainImg: 'https://whole-estate.oss-cn-beijing.aliyuncs.com/notebaike-5.jpg',
- Title: '解读购房签约',
- Remark: '在我们买房签合同后,还需要网签,很多人并不了解网签是什么?下面小编就为大家介绍下网签的好处以及一些注意事项,以供参考',
- Content: ArticleContentList.ArticleContentList[4],
- Publisher: '银城江北公司',
- CreateDate: '2019-03-28 14:05:02',
- Type: 3
- }]
- }, {
- Type: 4,
- List: [{
- Id: '6',
- MainImg: 'https://whole-estate.oss-cn-beijing.aliyuncs.com/notebaike-6.jpg',
- Title: '新手必备收房攻略',
- Remark: '通常情况下,我们购买的房子就是毛坯房,一般小区建好以后,就会交房,而交房重要的一步就是要验收,只有质量合格的房子才能够交房',
- Content: ArticleContentList.ArticleContentList[5],
- Publisher: '银城江北公司',
- CreateDate: '2019-03-28 14:05:02',
- Type: 4
- }]
- }]
-
- module.exports = {
- ArticleList: ArticleList
- }
|