女人荫蒂被添全过程13种图片,亚洲+欧美+在线,欧洲精品无码一区二区三区 ,在厨房拨开内裤进入毛片

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

OpenHarmony DaYu200開發板示例 鴻蒙智聯汽車【1.0】

ArkUI詳解 ? 來源:鴻蒙實驗室 ? 作者:鴻蒙實驗室 ? 2022-07-13 09:22 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

應用場景:

智慧出行。

智能汽車是集環境感知、規劃決策、多等級輔助駕駛等功能于一體的智能網聯綜合系統,它集中運用了計算機、現代傳感、信息融合、通訊、人工智能及自動控制等技術,是典型的高新技術綜合體。簡單的說,智能汽車的出現將逐步放松車、手、眼,讓開車,用車變得簡單。這樣的產品對有本兒不敢上路的人來說或許是大大的福音。

在北方冬天有點冷,這個時候,去車里,溫度很低,給人一種不舒服的感覺,那么有沒有一種可能,就是可以通過手機App,實現對車內的一些情況的監測,答案是有的,今天做的這個App,就是這樣一個App。

我要實現的功能主要有

用戶可以解鎖任何車門,

檢查電池狀態,

控制空調溫度,

檢查輪胎的氣壓。

在開始之前大家可以先預覽一下我完成之后的效果。如下圖所示:

智聯汽車演示_

是不是很炫酷呢?

搭建OpenHarmony環境

完成本篇Codelab我們首先要完成開發環境的搭建,本示例以DaYu200開發板為例,參照以下步驟進行:

獲取OpenHarmony系統版本:標準系統解決方案(二進制)

以3.0版本為例:

img

搭建燒錄環境

完成DevEco Device Tool的安裝

完成Dayu200開發板的燒錄

搭建開發環境

開始前請參考工具準備 ,完成DevEco Studio的安裝和開發環境配置。

開發環境配置完成后,請參考使用工程向導 創建工程(模板選擇“Empty Ability”),選擇eTS語言開發。

工程創建完成后,選擇使用真機進行調測 。

相關概念

容器組件

Column

Row

Stack

基礎組件

Text

Button

Image

Navigation

通用

邊框設置

尺寸設置

點擊控制

布局約束

背景設置

點擊事件

TS語法糖

好的接下來我將詳細講解如何制作

開發教學

創建好的 eTS工程目錄

新建工程的ETS目錄如下圖所示。

img

各個文件夾和文件的作用:

index.ets:用于描述UI布局、樣式、事件交互和頁面邏輯。

app.ets:用于全局應用邏輯和應用生命周期管理。

pages:用于存放所有組件頁面。

resources:用于存放資源配置文件。

接下來開始正文。

我們的主要操作都是在在pages目錄中,然后我將用不到10分鐘的時間,帶大家實現這個功能。

拆解

image-20220706083825022

根據設計圖,我們可以分為內容展示區和菜單。

針對這一點,我們可以用Navigation組件作為Page頁面的根容器,通過屬性設置來展示頁面的標題、工具欄、菜單。

Navigation

() {

Column

({

space

:

20

}) {

if

(

this

.

index

==

0

)

DoorLook

()

else

if

(

this

.

index

==

1

)

Battery

()

else

if

(

this

.

index

==

2

)

Temp

()

else

if

(

this

.

index

==

3

)

Tyre

()

}

.

backgroundColor

(

Color

.

Black

)

.

justifyContent

(

FlexAlign

.

SpaceAround

)

.

alignItems

(

HorizontalAlign

.

Center

)

.

justifyContent

(

FlexAlign

.

Center

)

.

size

({

width

:

'100%'

,

height

:

'100%'

})

} .

size

({

width

:

'100%'

,

height

:

'100%'

})

.

toolBar

(

this

.

toolbarWidget

())

.

hideToolBar

(

this

.

hideToolBar

)

.

hideTitleBar

(

this

.

hideTitleBar

)

具體布局

具體布局設計到一些細節的地方,例如間隔,邊框,當前組件尺寸設置等一些特殊情況,基本上就是嵌套,一層一層去實現。

代碼結構

image-20220706084830625

編碼

Index.ets

import

Tyre

from

'./tyre_page'

;

import

Temp

from

'./temp_page'

;

import

Battery

from

'./battery_page'

;

import

DoorLook

from

'./door_lock_page'

;

@

Entry

@

Component

struct

ComponentTest

{

@

State

index

:

number

=

0

;

// 選項卡下標,默認為第一個

@

State

hideToolBar

:

boolean

=

false

;

@

State

hideTitleBar

:

boolean

=

true

;

private

imageArray

:

string

[]

=

[

'app.media.Lock'

,

'app.media.Charge'

,

'app.media.Temp'

,

'app.media.Tyre'

,];

// 數據源

?

@

Builder

toolbarWidget

() {

// 通過builder自定義toolbar

Row

() {

Column

() {

Image

(

this

.

index

==

0

?

$r

(

'app.media.lock'

):

$r

(

'app.media.lock0'

) )

.

size

({

width

:

36

,

height

:

36

}).

margin

({

bottom

:

4

,

top

:

12

})

}

.

alignItems

(

HorizontalAlign

.

Center

)

.

height

(

'100%'

)

.

layoutWeight

(

1

)

.

onClick

(()

=>

{

this

.

index

=

0

;

})

Column

() {

Image

(

this

.

index

==

1

?

$r

(

'app.media.battery'

):

$r

(

"app.media.battery0"

))

.

size

({

width

:

36

,

height

:

36

}).

margin

({

bottom

:

4

,

top

:

12

})

?

}

.

alignItems

(

HorizontalAlign

.

Center

)

.

height

(

'100%'

)

.

layoutWeight

(

1

)

.

onClick

(()

=>

{

this

.

index

=

1

;

})

Column

() {

Image

(

this

.

index

==

2

?

$r

(

'app.media.yytemp'

):

$r

(

'app.media.yytem0'

))

.

size

({

width

:

36

,

height

:

36

}).

margin

({

bottom

:

4

,

top

:

12

})

?

}

.

alignItems

(

HorizontalAlign

.

Center

)

.

height

(

'100%'

)

.

layoutWeight

(

1

)

.

onClick

(()

=>

{

this

.

index

=

2

;

})

Column

() {

Image

(

this

.

index

==

3

?

$r

(

'app.media.tyre'

):

$r

(

'app.media.tyre0'

))

.

size

({

width

:

36

,

height

:

36

}).

margin

({

bottom

:

4

,

top

:

12

})

?

}

.

alignItems

(

HorizontalAlign

.

Center

)

.

height

(

'100%'

)

.

layoutWeight

(

1

)

.

onClick

(()

=>

{

this

.

index

=

3

;

})

}.

backgroundColor

(

Color

.

Black

)

.

width

(

'100%'

)

.

height

(

66

)

}

build

() {

Navigation

() {

Column

({

space

:

20

}) {

//根據索引展示對應內容?

if

(

this

.

index

==

0

)

DoorLook

()

else

if

(

this

.

index

==

1

)

Battery

()

else

if

(

this

.

index

==

2

)

Temp

()

else

if

(

this

.

index

==

3

)

Tyre

()

}

.

backgroundColor

(

Color

.

Black

)

.

justifyContent

(

FlexAlign

.

SpaceAround

)

.

alignItems

(

HorizontalAlign

.

Center

)

.

justifyContent

(

FlexAlign

.

Center

)

.

size

({

width

:

'100%'

,

height

:

'100%'

})

}

.

size

({

width

:

'100%'

,

height

:

'100%'

})

.

title

(

"跟著堅果學OpenHarmony"

)

.

toolBar

(

this

.

toolbarWidget

())

//自定義底部菜單欄

.

hideToolBar

(

this

.

hideToolBar

)

.

hideTitleBar

(

this

.

hideTitleBar

)

.

menus

([

{

value

:

"關"

,

icon

:

'common/images/door_lock.svg'

,

action

: ()

=>

{

console

.

log

(

"工具欄"

)

}

},

{

value

:

"開"

,

icon

:

'common/images/door_unlock.svg'

,

action

: ()

=>

{

}

}

])

}

}

效果演示:

車鎖頁

@

Entry

@

Component

export

default

struct

DoorLook

{

//車鎖頁

@

State

isRightDoorLock

:

boolean

=

false

;

@

State

isLeftDoorLock

:

boolean

=

false

;

@

State

isBonnetLock

:

boolean

=

false

;

@

State

isTrunkLock

:

boolean

=

false

;

?

build

() {

?

Column

() {

Stack

() {

Image

(

$r

(

"app.media.Car"

))

.

width

(

"100%"

)

.

height

(

"100%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

margin

({

left

:

20

})

Image

(

$r

(

"app.media.door_lock"

))

.

width

(

60

).

height

(

60

).

position

({

x

:

340

,

y

:

50

})

.

onClick

(()

=>

{

})

Image

(

$r

(

"app.media.door_unlock"

)).

width

(

60

).

height

(

60

).

position

({

x

:

50

,

y

:

600

})

Image

(

$r

(

"app.media.door_unlock"

)).

width

(

60

).

height

(

60

).

position

({

x

:

640

,

y

:

600

})

Image

(

$r

(

"app.media.door_unlock"

)).

width

(

60

).

height

(

60

).

position

({

x

:

340

,

y

:

920

})

?

}

?

.

backgroundColor

(

Color

.

Black

)

?

?

.

width

(

"100%"

)

.

height

(

"100%"

)

?

}

?

?

}

}

?

效果演示:

image-20220706085446034

電池頁

@

Entry

@

Component

export

default

struct

Battery

{

//電池頁

build

() {

?

Column

() {

Stack

() {

Image

(

$r

(

"app.media.Car"

))

.

width

(

"100%"

)

.

height

(

"80%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

margin

({

left

:

20

,

top

:

150

,

bottom

:

300

})

?

Text

(

"220 mi"

).

fontColor

(

Color

.

White

).

fontWeight

(

FontWeight

.

Bold

).

fontSize

(

79

).

position

({

x

:

260

,

y

:

20

})

Text

(

"62 %"

).

fontColor

(

Color

.

White

).

fontWeight

(

FontWeight

.

Bold

).

fontSize

(

60

).

position

({

x

:

320

,

y

:

90

})

Text

(

"22 mi /hr"

).

fontColor

(

Color

.

White

).

fontWeight

(

FontWeight

.

Bold

).

fontSize

(

45

).

position

({

x

:

20

,

y

:

1000

})

Text

(

"232 v"

).

fontColor

(

Color

.

White

).

fontWeight

(

FontWeight

.

Bold

).

fontSize

(

45

).

position

({

x

:

550

,

y

:

1000

})

}

?

.

backgroundColor

(

Color

.

Black

)

?

?

.

width

(

"100%"

)

.

height

(

"100%"

)

?

}

?

?

}

}

?

效果演示:

image-20220706085508024

空調頁

@

Entry

@

Component

export

default

struct

Temp

{

//空調頁

build

() {

Column

() {

Stack

() {

Image

(

$r

(

"app.media.Car"

))

.

width

(

"100%"

)

.

height

(

"100%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

position

({

x

:

268

,

y

:

90

})

.

margin

({

left

:

20

})

Image

(

$r

(

"app.media.Hot_glow_4"

))

.

width

(

"90%"

)

.

height

(

"90%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

position

({

x

:

220

,

y

:

90

})

.

margin

({

left

:

20

})

Text

(

"29"

+

"\u2103"

,).

fontSize

(

90

).

fontColor

(

Color

.

Orange

).

position

({

x

:

90

,

y

:

400

})

Image

(

$r

(

"app.media.arrow_drop_up"

))

.

width

(

60

)

.

height

(

60

)

.

position

({

x

:

120

,

y

:

360

})

Image

(

$r

(

"app.media.arrow_drop_down"

))

.

width

(

60

)

.

height

(

60

)

.

position

({

x

:

120

,

y

:

480

})

Image

(

$r

(

"app.media.cool"

)).

width

(

60

).

height

(

60

).

position

({

x

:

20

,

y

:

40

})

Image

(

$r

(

"app.media.heating"

))

.

width

(

60

)

.

height

(

60

)

.

position

({

x

:

80

,

y

:

90

})

.

borderRadius

(

7

)

.

margin

({

right

:

40

})

Column

() {

Text

(

"當前溫度"

).

fontSize

(

32

).

fontColor

(

Color

.

White

).

margin

({

bottom

:

20

})

Row

({

space

:

30

}) {

Column

() {

Text

(

"里面"

).

fontSize

(

32

).

fontColor

(

Color

.

Orange

)

Text

(

"20"

+

"\u2103"

,).

fontSize

(

32

).

fontColor

(

Color

.

White

)

}

Column

() {

Text

(

"外邊"

).

fontSize

(

32

).

fontColor

(

Color

.

Yellow

)

Text

(

"35"

+

"\u2103"

,).

fontSize

(

32

).

fontColor

(

Color

.

White

)

}

}

}.

position

({

x

:

20

,

y

:

800

})

}

.

backgroundColor

(

Color

.

Black

)

.

offset

({

y

:

-

20

})

.

width

(

"100%"

)

.

height

(

"100%"

)

}

}

}

?

效果演示:

image-20220706085527772

輪胎頁

import

{

TyrePsiCard

}

from

'./tyre_psi_card'

?

@

Entry

@

Component

export

default

struct

Tyre

{

//輪胎頁

build

() {

?

Column

() {

Stack

() {

Image

(

$r

(

"app.media.Car"

))

.

width

(

"100%"

)

.

height

(

"80%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

margin

({

left

:

20

})

Image

(

$r

(

"app.media.FL_Tyre"

))

.

width

(

"10%"

)

.

height

(

"10%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

position

({

x

:

180

,

y

:

700

})

Image

(

$r

(

"app.media.FL_Tyre"

))

.

width

(

"10%"

)

.

height

(

"10%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

position

({

x

:

500

,

y

:

700

})

Image

(

$r

(

"app.media.FL_Tyre"

))

.

width

(

"10%"

)

.

height

(

"10%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

position

({

x

:

500

,

y

:

260

})

Image

(

$r

(

"app.media.FL_Tyre"

))

.

width

(

"10%"

)

.

height

(

"10%"

)

.

objectFit

(

ImageFit

.

Contain

)

.

position

({

x

:

180

,

y

:

260

})

TyrePsiCard

({

x

:

60

,

y

:

60

,

boardColor

:

Color

.

Blue

})

TyrePsiCard

({

x

:

380

,

y

:

60

,

boardColor

:

Color

.

Blue

})

TyrePsiCard

({

x

:

60

,

y

:

500

,

boardColor

:

Color

.

Blue

,

isBottomTwoTyre

:

false

})

TyrePsiCard

({

x

:

380

,

y

:

500

,

isBottomTwoTyre

:

false

})

}

.

backgroundColor

(

Color

.

Black

)

.

width

(

"100%"

)

.

height

(

"100%"

)

?

}

?

?

}

}

?

效果演示:

image-20220706085547727

輪胎參數

/**

* 輪胎詳細信息

*/

@

Entry

@

Component

export

struct

TyrePsiCard

{

private

text

:

string

=

''

private

x

:

number

=

0

private

y

:

number

=

0

private

boardColor

:

Color

=

Color

.

Red

private

isBottomTwoTyre

:

boolean

=

true

;

?

build

() {

Column

() {

if

(

this

.

isBottomTwoTyre

) {

Text

(

"23.6psi"

,).

fontSize

(

60

)

.

fontColor

(

Color

.

White

).

margin

({

right

:

60

})

Text

(

"56.0\u2103"

).

fontSize

(

36

)

.

fontColor

(

Color

.

Orange

).

margin

({

bottom

:

70

})

Text

(

"Low"

).

fontSize

(

60

)

.

fontColor

(

Color

.

White

)

Text

(

"Pressure"

).

fontSize

(

36

)

.

fontColor

(

Color

.

White

)

}

else

{

Text

(

"Low"

).

fontSize

(

60

).

margin

({

right

:

60

})

.

fontColor

(

Color

.

White

)

Text

(

"Pressure"

).

fontSize

(

36

)

.

fontColor

(

Color

.

White

).

margin

({

bottom

:

70

})

Text

(

"23.6psi"

,).

fontSize

(

60

)

.

fontColor

(

Color

.

White

)

Text

(

"56.0\u2103"

).

fontSize

(

36

)

.

fontColor

(

Color

.

Orange

)

}

?

?

}

.

border

({

width

:

3

,

color

:

this

.

boardColor

})

.

width

(

280

)

.

justifyContent

(

FlexAlign

.

Start

)

.

alignItems

(

HorizontalAlign

.

Start

)

// .padding({ left: 10, bottom: 20, top: 20 })

.

position

({

x

:

this

.

x

,

y

:

this

.

y

})

?

}

}

效果演示:

image-20220706085603380

恭喜你

在本文中,通過實現智聯汽車App示例,我主要為大家講解了如下ArkUI(基于TS擴展的類Web開發范式)組件

容器組件

Column

Row

Stack

基礎組件

Text

TextInput

Button

Image

Navigation

通用

邊框設置

尺寸設置

點擊控制

布局約束

背景設置

點擊事件

TS語法糖

希望通過本教程,各位開發者可以對以上基礎組件具有更深刻的認識。

后面的計劃:

一鍵啟動

硬件交互

動畫交互

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • 開發板
    +關注

    關注

    25

    文章

    5622

    瀏覽量

    103613
  • 智能汽車
    +關注

    關注

    30

    文章

    3070

    瀏覽量

    108296
  • 智慧出行
    +關注

    關注

    0

    文章

    115

    瀏覽量

    7880
  • HarmonyOS
    +關注

    關注

    80

    文章

    2148

    瀏覽量

    32537
  • OpenHarmony
    +關注

    關注

    29

    文章

    3847

    瀏覽量

    18377
  • 鴻蒙智聯
    +關注

    關注

    0

    文章

    29

    瀏覽量

    584
收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評論

    相關推薦
    熱點推薦

    如何實現DAYU200開發板使能Panfrost驅動并且支持OpenHarmony

    如何實現DAYU200開發板使能Panfrost驅動并且支持OpenHarmony呢?
    發表于 03-02 10:26

    基于潤和DAYU200開發套件的OpenHarmony分布式音樂播放器

    :參考DevEco Studio(OpenHarmony)使用指南搭建OpenHarmony應用開發環境、并導入本工程進行編譯、運行。運行結果截圖:【分布式流轉體驗】硬件準備:準備兩臺潤和DA
    發表于 03-14 09:07

    【每日精選】開源鴻蒙系統DAYU200教程及Tina Wi-Fi模組移植

    ] 支持開源鴻蒙系統 DAYU200 鏡像燒錄教程【問答】請問下HiHope_DAYU200 如何搭建編譯開發環境?[經驗]作品分享-基于RT-Thread系統和N32G457
    發表于 03-15 15:32

    OpenHarmony 3.1 Release初體驗 潤和DAYU200開發套件

    固件下載手里剛好有一塊DAYU200開發板,官方剛好有發布編譯的固件,下載鏈接:https://gitee.com/openharmony/docs/blob/master/zh-cn
    發表于 03-31 18:10

    潤和DAYU200領跑OpenHarmony富設備產業化!

    等)提供性能優越、穩定可靠的智能硬件底座,在國產化替代方面具有標桿意義。潤和大禹系列HH-SCDAYU200是潤和軟件推出的在社區內首款支持OpenHarmony富設備的開發板,基于瑞芯微64位處
    發表于 04-21 20:06

    【潤和軟件DAYU200開發板體驗】潤和軟件DAYU200開發板開箱篇

    開發板靚圖: 首先談談潤和軟件DAYU名字由來,DAYU 即是“大禹”,大禹治水精神是中華民族精神的源頭和象征。潤和軟件新款OpenHarmony高性能
    發表于 09-21 20:25

    【潤和軟件DAYU200開發板體驗】終于Helloworld!!

    hello world!是開發者跟開發板的第一個交互,今天在DAYU200上實現了。用了差不多兩天的學習,入門的時間還算好吧。如何實現,很多的教程了,我這菜鳥就不做講解,大家可以按我下面的教程慢慢
    發表于 09-23 21:54

    【潤和軟件DAYU200開發板體驗】移植speexdsp到OpenHarmony標準系統功能演示

    該視頻已經同步上傳至硬聲app,賬號名稱離北況歸移植speexdsp到OpenHarmony標準系統系列文章:【潤和軟件DAYU200開發板體驗】移植speexdsp到OpenHarmony
    發表于 11-06 22:35

    OpenHarmony 潤和DAYU200開發板,全新未開封(出)

    潤和DAYU200開發板,全新未使用,多買了一塊,現在想出,有朋友要嗎
    發表于 09-04 15:41

    OpenHarmony Dev-Board-SIG專場:DAYU200開源計劃—代碼上Master需要的材料

    OpenHarmony Dev-Board-SIG專場:DAYU200開源計劃—代碼上Master需要的材料
    的頭像 發表于 12-28 14:14 ?1773次閱讀
    <b class='flag-5'>OpenHarmony</b> Dev-Board-SIG專場:<b class='flag-5'>DAYU200</b>開源計劃—代碼上Master需要的材料

    DAYU200開發版升級openHarmony3.1 release版本

    今天收到了來自潤和的DAYU200開發板,我們在開機之后,查看關于手機,這一欄,發現openharmony的版本是3.1的beta版,于是我們先做個升級,然后進行更多的體驗,
    的頭像 發表于 04-16 09:37 ?2358次閱讀
    <b class='flag-5'>DAYU200</b><b class='flag-5'>開發</b>版升級<b class='flag-5'>openHarmony</b>3.1 release版本

    潤和軟件開發板DAYU200 支持富設備開發 OpenHarmony開發者都選它

    ? 智能硬件開放生態已經進入富設備產業化的時代,作為OpenHarmony標準系統的先驅者,潤和軟件推出了首款支持OpenHarmony富設備的開發板DAYU200
    的頭像 發表于 10-09 17:48 ?3953次閱讀

    【潤和軟件DAYU200開發板體驗】潤和軟件DAYU200開發板開箱篇

    創新為內涵的大禹治水精神,寓意著DAYU秉承OpenHarmony“以開發者為本”的開源治理宗旨和積極擔當國產化歷史使命的責任定位。 ? ?? 潤和軟件DAYU200
    的頭像 發表于 10-12 11:38 ?5582次閱讀
    【潤和軟件<b class='flag-5'>DAYU200</b><b class='flag-5'>開發板</b>體驗】潤和軟件<b class='flag-5'>DAYU200</b><b class='flag-5'>開發板</b>開箱篇

    喜大普奔!DAYU200能打電話了—OpenHarmony 3.1新特性!

    碼:淘寶生態市場DAYU200開發套件潤和大禹系列HH-SCDAYU200是潤和軟件推出的社區內首款支持OpenHarmony富設備的開發板
    的頭像 發表于 04-22 11:43 ?1518次閱讀
    喜大普奔!<b class='flag-5'>DAYU200</b>能打電話了—<b class='flag-5'>OpenHarmony</b> 3.1新特性!

    潤和軟件DAYU200OpenHarmony賦能之旅

    2021年,潤和軟件推出了OpenHarmony高性能設備平臺大禹系列,其中DAYU200作為首款支持OpenHarmony富設備的開發板,是廣大
    的頭像 發表于 11-18 09:49 ?1956次閱讀
    潤和軟件<b class='flag-5'>DAYU200</b>的<b class='flag-5'>OpenHarmony</b>賦能之旅
    主站蜘蛛池模板: 昆明市| 康平县| 西城区| 九龙县| 方山县| 焦作市| 合川市| 祁连县| 凌云县| 安新县| 宿松县| 囊谦县| 新安县| 邻水| 二手房| 苏尼特右旗| 德化县| 泰安市| 吉隆县| 孟村| 涞水县| 晋城| 正镶白旗| 铜山县| 淳安县| 兰溪市| 哈尔滨市| 沂水县| 新巴尔虎左旗| 宜丰县| 卢湾区| 佛坪县| 大荔县| 水富县| 郴州市| 招远市| 贵溪市| 阳城县| 德庆县| 石城县| 延长县|