汽車軟件開發自動化測試攻略

汽車電子與軟件 2022-03-14 08:09
隨著軟件開發在造車行業中占有越來越重要的地位,敏捷開發的思想在造車領域中也逐漸地被重視起來,隨之而來的是整車廠對自動化測試需求越來越強烈。本文結合在自動化測試方面的豐富經驗,簡單介紹一下實施自動化測試可能需要具備的技能及具體實踐流程。


自動化測試城門-Python



要實現完全的自動化測試,我們首先要做的是先實現半自動化測試,即編寫自動化測試腳本。俗話說Life is short,I use Python,Python作為一種簡單易上手的高級編程語言,憑借其“無所不包”的庫,成為測試腳本開發的不二之選。這里簡單介紹一下,測試腳本開發常用的一些Python標準庫。


城門士卒-os庫


在編寫測試腳本時,不可避免地會遇到對文件路徑的獲取及編輯,os庫里的path函數可以方便地實現這些操作,如絕對路徑獲取os.path.abspath()、路徑拼接os.path.join()、路徑存在判斷os.path.exist()等;如果你需要在Python中運行測試工具提供的命令,那么os庫的system函數或popen函數可以讓你方便地調用cmd(Windows)或shell(Linux)。


城門士卒-sys庫


如果你所編寫的測試腳本有跨平臺運行的需求,那么你可以通過sys庫的platform函數獲取腳本的運行環境。根據運行環境的不同,編寫不同的批處理命令;sys庫中的argv函數,還可以為你的測試腳本提供簡單的命令行接口,當你的腳本需要接收外部傳遞的參數時,你可以通過sys.argv[]方便地獲取。而如果你需要編寫更復雜更友好的命令行接口,你需要使用Python的另外一個標準庫argparse來實現。


城門隊長-re庫


正則表達式是編寫測試腳本的必備技能,因為有時我們會遇到復雜的文本處理,如在工程文件中查找需要修改的配置,并將其修改為我們所需要的內容。此時一般的查找替換函數就很難實現這個功能,我們只能借助強大的re庫(正則表達式)來解決這個棘手的問題。re庫提供的函數有:

re.compile():編譯正則表達式,生成一個 Pattern 對象;

re.findall():搜索所有滿足條件的字符串;re.match():從第一個字符開始匹配模式;

re.search():搜索第一個滿足條件的字符串,查找到第一個停止;

re.sub():替換滿足條件的字符串。


在使用re模塊時,我們一般先用re.compile()將正則表達式編譯生成為一個Pattern對象,然后再基于這個對象進行findall、match等操作,這樣既可以提高代碼的可讀性,也可以提高代碼的運行效率。

使用正則表達式進行查找替換是很方便的,但是在很多時候我們需要在匹配的字符串前后添加內容,并且保留匹配的內容,這時普通的查找替換是難以實現的。

如:希望將hour: minute格式后添加:00,形成hour: minute: seconds這種格式。此時可以采用如下方式來實現:

查找的正則表達式:

(\d:\d)

替換為:

\1\:00


這里,我們在替換的字符中使用\1,來引用正則表達式中第一個分組匹配到的內容,如果正則表達式中有多個分組,可以依次使用\2\3等進行引用,可以使用\0來引用整個正則表達式的內容。


小結



在掌握了Python基礎語法和這三個標準庫后,自動化測試的大門就為我們敞開了。但是想要編寫一個可以驅動測試工具進行測試的腳本,我們還需要了解測試工具在headless模式 下的接口情況,如果工具提供的接口豐富,可以實現在headless模式[1]下對測試工程進行配置和執行等操作,那么我們的測試腳本開發工作將會順利地進行。

但是如果工具提供的headless模式接口有限,無法滿足測試腳本的需求,那么進入自動化測試大門后,等待我們的就是另一個棘手的問題:如何對工程文件進行解析與修改。考慮到大部分的工程文件都是XML格式的,因此后續我們就簡單介紹一下如何通過Python解析和修改XML文件。

[1]:這里的headless模式是指在不使用工具GUI的情況下,以純命令行的方式進行工具使用的模式。


自動化測試甕城——XML文件



甕城守備—XML解析



在Python的標準庫中,有專門處理XML文件的庫,無需安裝第三方庫就可以使用Python進行XML文件的解析,但是要想準確地從XML文件中解析出想要的信息,我們首先需要簡單了解一下XML的文件結構。如下是一個簡單的XML文檔。

? Everyday Italian
? Giada DeLaurentiis
?2005
?30.00
? HarryPotter
? J K.Rowling
?2005
?29.99
? LearningXML
? Erik T.Ray
?2003
?39.95


其中Harry Potter元素的結構如下圖所示



注:圖片來源于https://www.w3school.com.cn/xml/xml_tree.asp

在該XML文本中,根元素是,文檔中的所有元素都被包含在里。元素有 4 個子元素:、< author>、<year>、<price>。每個子元素都包含一個文本內容,但只有子元素title和元素book擁有屬性。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">我們在解析XML時,一般需要獲取的就是元素的屬性值以及元素的文本內容。以下我們就簡單介紹一下,如何通過python獲取元素的屬性值及文本內容。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">Python的XML庫提供了一個通過標簽名稱獲取元素的函數getElementsByTagName(),該函數返回的是一個包含元素對象的list,通過調用元素對象的attributes方法,我們就可以方便地獲取元素的屬性值。如,我們可以使用如下命令獲取XML文件中第一個標簽為title的lang屬性值:</span></section></section><section style="margin-left: 8px;margin-right: 8px;"><section style="display: flex;flex-flow: row nowrap;margin: 10px 0%;"><section style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;"><section style="font-size: 55px;color: rgb(33, 36, 237);" powered-by="xiumi.us"><p style="white-space: normal;">“</p></section></section><section style="display: inline-block;vertical-align: top;width: auto;flex: 100 100 0%;align-self: flex-start;height: auto;"><section style="margin: 20px 0% 10px;text-align: center;justify-content: center;transform: translate3d(-17px, 0px, 0px);" powered-by="xiumi.us"><section style="text-align: justify;padding-right: 20px;padding-left: 20px;"><p style="white-space: normal;">root.getElementsByTagName("title")[<span style="color: rgb(0, 82, 255);">0</span>].attributes.getNamedItem("lang").nodeValue</p></section></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">獲取第一個標簽為title的元素的文本信息的代碼如下:</span></section></section><section style="margin-left: 8px;margin-right: 8px;"><section style="display: flex;flex-flow: row nowrap;margin: 10px 0%;"><section style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;"><section style="font-size: 55px;color: rgb(33, 36, 237);" powered-by="xiumi.us"><p style="white-space: normal;">“</p></section></section><section style="display: inline-block;vertical-align: top;width: auto;flex: 100 100 0%;align-self: flex-start;height: auto;"><section style="margin: 20px 0% 10px;text-align: center;justify-content: center;transform: translate3d(-17px, 0px, 0px);" powered-by="xiumi.us"><section style="text-align: justify;padding-right: 20px;padding-left: 20px;"><p style="white-space: normal;">root.getElementsByTagName("title")[<span style="color: rgb(0, 82, 255);">0</span>].firstChild.data</p><p style="white-space: normal;"><br></p><p style="white-space: normal;"><br></p></section></section></section></section></section><section style="margin: 10px 8px;"><section style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"><section style="margin: 2px 0%;" powered-by="xiumi.us"><section style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"><p style="white-space: normal;"><strong>甕城參將—XML修改</strong></p></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">XML元素的屬性和文本內容修改很簡單,在上小節中獲取對應的元素信息后,直接對其進行賦值即可。但是,修改后的信息保存在XML對象中。要完成對實際XML文件的修改,我們還需要用XML對象中的內容覆蓋原有的XML文件,這一步存在很多棘手的問題。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">在XML文件中,為了避免元素文本內容中存在的特殊字符引起解析器錯誤,在文本內容中引入實體引用來替代可能導致錯誤的字符,如回車 、雙引號"、單引號'。如果使用Python的xml.dom.minidom庫解析并使用writexml輸出XML文件,該庫會將這些實體引用轉義為其實際字符進行保存。如果不對XML對象中的內容進行處理,導出的XML文件將會存在很多錯誤。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">為了避免這個情況的出現,我們需要使用之前小節介紹的正則表達式將這些字符再替換為其實體引用。這個過程需要我們能熟練使用正則表達式進行文本查找與替換。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">除了XML文件中的實體引用外,如果XML文件中存在中文字符,那么還有一個需要注意的事情:不要使用with open as的方式讀寫XML文件,要使用open指定文件的編碼為'utf-8’ 的方式,對XML文件進行寫入。如下所示:</span></section></section><section style="margin-left: 8px;margin-right: 8px;"><section style="display: flex;flex-flow: row nowrap;margin: 10px 0%;"><section style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;"><section style="font-size: 55px;color: rgb(33, 36, 237);" powered-by="xiumi.us"><p style="white-space: normal;">“</p></section></section><section style="display: inline-block;vertical-align: top;width: auto;flex: 100 100 0%;align-self: flex-start;height: auto;"><section style="margin: 20px 0% 10px;text-align: center;justify-content: center;transform: translate3d(-17px, 0px, 0px);" powered-by="xiumi.us"><section style="text-align: justify;padding-right: 20px;padding-left: 20px;"><p style="white-space: normal;">f = open(self.JenkinsJobXMLPath, 'w', encoding="utf-8")</p><p style="white-space: normal;">dom.writexml(f, indent='', addindent='\t', newl='', encoding='utf-8')?</p><p style="white-space: normal;">f.close()</p></section></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 10px 8px;"><section style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"><section style="margin: 2px 0%;" powered-by="xiumi.us"><section style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"><p style="white-space: normal;"><strong>小結</strong></p></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">上述兩個問題是修改XML文件時普遍會遇到的問題。解決了這兩個問題,我們基本上就可以完美實現XML文件的修改了。此時,我們就可以編寫自動化程度更高的測試腳本,然而我們依然無法實現完全的自動化測試,因為我們仍然需要手動地去執行測試腳本。那么,我們該如何實現測試腳本的自動執行呢?這就需要我們打通自動化測試的最后一個關卡,Jenkins。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin-left: 8px;margin-right: 8px;"><section style="margin: 30px 0% 20px;display: flex;flex-flow: row nowrap;"><section style="display: inline-block;vertical-align: top;width: auto;flex: 0 0 0%;height: auto;line-height: 0;align-self: flex-start;"><section style="transform: rotateZ(328deg);" powered-by="xiumi.us"><section style="text-align: left;justify-content: flex-start;"><section style="display: inline-block;width: 101px;height: 34px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);"><section><svg viewbox="0 0 1 1" style="float:left;line-height:0;width:0;vertical-align:top;"></svg></section></section></section></section></section><section style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;background-color: rgb(255, 255, 255);margin-left: -80px;align-self: flex-start;z-index: 2;"><section style="margin-right: 0%;margin-left: 0%;text-align: center;justify-content: center;isolation: isolate;" powered-by="xiumi.us"><section style="text-align: justify;font-size: 18px;"><p style="white-space: normal;"><strong>自動化測試總兵——Jenkins</strong></p></section></section></section><section style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;margin-left: 7px;"><section style="text-align: left;justify-content: flex-start;transform: translate3d(3px, 0px, 0px);" powered-by="xiumi.us"><section style="display: inline-block;width: 9px;height: 9px;vertical-align: top;overflow: hidden;border-width: 0px;border-radius: 112px;border-style: none;border-color: rgb(62, 62, 62);background-color: rgb(33, 36, 237);"><section><svg viewbox="0 0 1 1" style="float:left;line-height:0;width:0;vertical-align:top;"></svg></section></section></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><strong><span style="letter-spacing: 1px;">Jenkins 是一個開源、免費的可擴展持續集成引擎,主要用于:</span></strong><span style="letter-spacing: 1px;"></span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><strong><span style="letter-spacing: 1px;"><br></span></strong></section><ul class="list-paddingleft-1" style="list-style-type: disc;margin-left: 8px;margin-right: 8px;"><li style="color: rgb(0, 82, 255);"><p><span style="letter-spacing: 1px;color: rgb(0, 82, 255);">持續、自動地構建/測試軟件項目;</span></p></li><li style="color: rgb(0, 82, 255);"><p><span style="letter-spacing: 1px;color: rgb(0, 82, 255);">監控一些定時執行的任務。</span></p></li></ul><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">為了實現測試腳本的自動化運行,我們需要配置Jenkins Job,使Jenkins在設置的觸發條件滿足時,自動搭建測試腳本的運行環境,然后執行測試腳本,最后將測試結果發送給相關人員。因此我們需要了解Jenkins的源碼管理、構建觸發器、構建及郵件通知等設置。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 10px 8px;"><section style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"><section style="margin: 2px 0%;" powered-by="xiumi.us"><section style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"><p style="white-space: normal;"><strong>總兵的連招1—源碼管理</strong></p></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">Jenkins服務器最基本的作用是監視版本控制器,當版本庫有新的更改時,檢出版本庫中的文件,或者,你可以選擇只是定期檢出版本庫中最新的文件。無論哪種方式,Jenkins與版本控制軟件的集成是必不可少的。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">Jenkins開箱即用式支持Git、CVS和SVN,還通過插件與大量其他版本控制工具進行集成,如ClearCase、Perforce、PVCS等等。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">不同的版本控制軟件在Jenkins端的需要的配置并不相同,有的甚至差異很大。但是只要你熟悉你所使用的版本控制軟件,那么在Jenkins端,就可以很容易地對版本庫進行配置。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">以SVN為例,為了從SVN倉庫中獲取源碼,我們需要提供相應SVN版本庫的URL,在完成URL輸入后,Jenkins會檢查URL的有效性,如果所提供的URL要求身份認證,Jenkins將會自動提示選擇相應的憑據以驗證賬號信息,如下圖所示。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="text-align: center;margin-left: 8px;margin-right: 8px;"><img class="rich_pages wxw-img" data-fileid="502829567" data-galleryid="" data-ratio="0.3534798534798535" data-s="300,640" src="https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-22b0f55448fb2b4f37612ddafba42804.png" data-type="png" data-w="1092" style=""></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">默認情況下,Jenkins會將給定的代碼庫中的文件檢出到Jenkins Job的Workspace中。如果你需要將代碼庫檢出到指定的目錄中,你可以在Local module directory中輸入你想要的目錄名或相對Workspace的路徑。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">如果你需要從多個SVN版本庫中獲取文件,可以點擊“Add module ...”按鈕,來添加別的版本庫。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 10px 8px;"><section style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"><section style="margin: 2px 0%;" powered-by="xiumi.us"><section style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"><p style="white-space: normal;"><strong>總兵的連招2—構建觸發器</strong></p></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">常用的構建觸發器有周期性構建和SCM輪詢構建,兩者都是使用相同corn風格語法進行設置,如下圖所示。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="text-align: center;margin-left: 8px;margin-right: 8px;"><img class="rich_pages wxw-img" data-fileid="502829570" data-galleryid="" data-ratio="0.2596468279921517" data-s="300,640" src="https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-4ba60567fdbc719061f6d8eeadd04f81.png" data-type="png" data-w="1529" style=""></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">我們只需要了解corn風格的語法,就可以方便地進行構建觸發器的設置。corn風格的語法包含五個由空格分隔的字段:</span><strong><span style="letter-spacing: 1px;color: rgb(0, 82, 255);">MINUTE HOUR DOM MONTH DOW</span></strong></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">每個字段使用下面的值:</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 20px 8px 10px;"><section style="display: inline-block;width: 100%;vertical-align: top;border-style: solid;border-width: 1px;border-color: rgb(33, 36, 237);padding: 21px;"><section style="margin: -28px 0% 9px;" powered-by="xiumi.us"><section style="display: inline-block;width: auto;vertical-align: top;min-width: 10%;height: auto;"><section style="transform: rotateZ(328deg);" powered-by="xiumi.us"><section style="text-align: center;justify-content: center;margin-right: 0%;margin-left: 0%;"><section style="display: inline-block;width: 26px;height: 13px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);background-color: rgba(255, 255, 255, 0);"><section><svg viewbox="0 0 1 1" style="float:left;line-height:0;width:0;vertical-align:top;"></svg></section></section></section></section></section></section><section powered-by="xiumi.us"><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">MINUTE</span> 小時內的分鐘數(0-59)</p><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">HOUR </span>一天的小時數(0-23)</p><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">DOM</span> 本月的天數(1-31)</p><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">MONTH </span>月份(1-12)</p><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">DOW</span> 本周的一天(0-7),其中0和7都是星期日</p></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">要為一個字段指定多個值,可以使用以下操作符:</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 20px 8px 10px;"><section style="display: inline-block;width: 100%;vertical-align: top;border-style: solid;border-width: 1px;border-color: rgb(33, 36, 237);padding: 21px;"><section style="margin: -28px 0% 9px;" powered-by="xiumi.us"><section style="display: inline-block;width: auto;vertical-align: top;min-width: 10%;height: auto;"><section style="transform: rotateZ(328deg);" powered-by="xiumi.us"><section style="text-align: center;justify-content: center;margin-right: 0%;margin-left: 0%;"><section style="display: inline-block;width: 26px;height: 13px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);background-color: rgba(255, 255, 255, 0);"><section><svg viewbox="0 0 1 1" style="float:left;line-height:0;width:0;vertical-align:top;"></svg></section></section></section></section></section></section><section powered-by="xiumi.us"><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">“*”代表一個字段的所有可能的值</span>。如,“* * * * *”表示周期為一分鐘;</p><p style="white-space: normal;"><br></p><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">使用“M-N”定義范圍</span>。如,在DOW中“1-5”表示周一到周五;</p><p style="white-space: normal;"><br></p><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">使用“/”定義范圍間隔時間</span>。如,MINUTE字段“*/5”表示每5分鐘;</p><p style="white-space: normal;"><br></p><p style="white-space: normal;"><span style="color: rgb(33, 36, 237);">逗號分隔的列表表示有效值</span>。如,MINUTE字段“15,45”表示在每小時的第15和第45分鐘運行;</p><p style="white-space: normal;"><br></p></section></section></section><section powered-by="xiumi.us" style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;font-size: 14px;"><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;font-size: 14px;"><br></section><section>通常,我們只需要在這個字段中寫一行,但是對于更復雜的調度配置,我們可能需要寫多行。</section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 10px 8px;"><section style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"><section style="margin: 2px 0%;" powered-by="xiumi.us"><section style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"><p style="white-space: normal;"><strong>總兵的連招3—構建</strong></p></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">在完成了之前的配置后,Jenkins應該知道在何時從何處獲取測試工程及源碼。現在我們需要做的事情是,告訴Jenkins在獲取測試工程和源碼后該如何做。一般情況下,我們會將之前編寫的測試腳本放在測試工程的版本庫中,或者從專門的測試腳本庫中檢出到Jenkins Job的Workspace中,因此我們在這里只需要執行編寫好的測試腳本即可。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">執行腳本的方式可以根據具體腳本的運行環境,選擇執行Shell或Windows批處理命令。因此我們需要簡單地了解Shell或Windows的常用批處理命令。為了避免編寫復雜的批處理命令,我們應盡量把工作放在測試腳本中完成。本文以如下圖所示的簡單的Windows批處理為例,簡單介紹一下構建步驟的編寫。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="text-align: center;margin-left: 8px;margin-right: 8px;"><img class="rich_pages wxw-img" data-fileid="502829568" data-galleryid="" data-ratio="0.20975056689342403" data-s="300,640" src="https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-02a978212388e1a75f3ad68b0f96e806.png" data-type="png" data-w="1764" style=""></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">在上圖中,有兩行命令:</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 20px 8px 10px;"><section style="display: inline-block;width: 100%;vertical-align: top;border-style: solid;border-width: 1px;border-color: rgb(33, 36, 237);padding: 21px;"><section style="margin: -28px 0% 9px;" powered-by="xiumi.us"><section style="display: inline-block;width: auto;vertical-align: top;min-width: 10%;height: auto;"><section style="transform: rotateZ(328deg);" powered-by="xiumi.us"><section style="text-align: center;justify-content: center;margin-right: 0%;margin-left: 0%;"><section style="display: inline-block;width: 26px;height: 13px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);background-color: rgba(255, 255, 255, 0);"><section><svg viewbox="0 0 1 1" style="float:left;line-height:0;width:0;vertical-align:top;"></svg></section></section></section></section></section></section><section powered-by="xiumi.us"><p style="white-space: normal;"><strong>第一行的作用:是將目錄由初始的Workspace目錄切換到Workspace下的Script目錄;</strong></p><p style="white-space: normal;"><br></p><p style="white-space: normal;"><strong>第二行的作用:是運行Script目錄中的測試腳本Script.py,并為該腳本傳遞一個參數,該參數為Jenkins的環境變量JOB_NAME,即當前Jenkins Job的名稱。</strong></p></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">這樣就完成了對測試腳本的調用。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 10px 8px;"><section style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"><section style="margin: 2px 0%;" powered-by="xiumi.us"><section style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"><p style="white-space: normal;"><strong>總兵的連招4—郵件通知</strong></p></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">自動化測試的一個重要環節,就是將測試結果通知到相關人員,如開發\測試人員,或項目管理人員等。Jenkins對電子郵件提供了開箱即用的支持,我們可以在構建后處理中勾選E-mail Notification,如下圖所示。然后輸入需要通知的人員郵箱,即可使Jenkins在構建完成后,向指定的人員發送一封友好的電子郵件。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="text-align: center;margin-left: 8px;margin-right: 8px;"><img class="rich_pages wxw-img" data-fileid="502829574" data-galleryid="" data-ratio="0.2064996614759648" data-s="300,640" src="https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-68361d9ce21d88f8156513ed55f9b51c.png" data-type="png" data-w="1477" style=""></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">如果你想對郵件內容進行高度定制,那么E-mail Notification就無法滿足需求,我們需要安裝可編輯的電子郵件插件Editable Email Notification,來實現電子郵件的定制化工作。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">在Editable Email Notification中,我們可以用HTML編寫電子郵件的內容,并引用Jenkins的環境變量,這樣我們就可以在郵件中描述當前Jenkins Job的測試執行概況,讓收件人快速地了解當前的測試狀態。但是這要求我們對HTML和Jenkins環境變量都有比較深的了解。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">有些情況下,我們需要在郵件中執行一些數據提取等復雜工作,比如將控制臺輸出中的一些數據在郵件中進行展示,這時我們需要借助email-ext-plugin插件提供的Groovy接口,用Groovy編寫郵件內容。</span></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">總之,Jenkins的郵件通知功能非常強大,我們可以在自動化測試的工作中不斷進行探索。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin: 10px 8px;"><section style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"><section style="margin: 2px 0%;" powered-by="xiumi.us"><section style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"><p style="white-space: normal;"><strong>小結</strong></p></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">本節簡單介紹了Jenkins的傳統表單類型的Freestyle Job,然而目前Jenkins的發展方向是 Pipeline Job,Jenkins將Pipeline作為優先開發項目。這就意味著Pipeline在應用程序中是作為實體被設計和支持的,而不是通過在Jenkins中連接一堆任務而形成流水線。Pipeline類型的Job可以通過編程實現,可以實現更復雜構建邏輯和工作流,更重要的是在Pipeline中有專門的用于流水線編程的結構化DSL,其可以在工作空間中輕松地實現文件共享功能。同時Pipeline具有全新的Jenkins可視化界面 ——Blue Ocean,其為Pipeline的每個階段添加了圖形化的展示,如下圖所示。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="text-align: center;margin-left: 8px;margin-right: 8px;"><img class="rich_pages wxw-img" data-fileid="502829572" data-galleryid="" data-ratio="0.21423728813559323" data-s="300,640" src="https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-871f932427163ccc750ea5d1f72ffd23.png" data-type="png" data-w="1475" style=""></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">因此我們在熟悉了表單類型的 Freestyle Job后,可以嘗試將其轉換為Pipeline的Job,當然目前并非所有的Jenkins插件都支持Pipeline,有些老舊的插件還無法支持Pipeline,我們需要根據實際的工作情況進行Jenkins工程類型的選擇。</span></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section></section><section style="margin-left: 8px;margin-right: 8px;"><section style="margin: 30px 0% 20px;display: flex;flex-flow: row nowrap;"><section style="display: inline-block;vertical-align: top;width: auto;flex: 0 0 0%;height: auto;line-height: 0;align-self: flex-start;"><section style="transform: rotateZ(328deg);" powered-by="xiumi.us"><section style="text-align: left;justify-content: flex-start;"><section style="display: inline-block;width: 101px;height: 34px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);"><section><svg viewbox="0 0 1 1" style="float:left;line-height:0;width:0;vertical-align:top;"></svg></section></section></section></section></section><section style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;background-color: rgb(255, 255, 255);margin-left: -80px;align-self: flex-start;z-index: 2;"><section style="margin-right: 0%;margin-left: 0%;text-align: center;justify-content: center;isolation: isolate;" powered-by="xiumi.us"><section style="text-align: justify;font-size: 18px;"><p style="white-space: normal;"><strong>攻城總結</strong></p></section></section></section><section style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;margin-left: 7px;"><section style="text-align: left;justify-content: flex-start;transform: translate3d(3px, 0px, 0px);" powered-by="xiumi.us"><section style="display: inline-block;width: 9px;height: 9px;vertical-align: top;overflow: hidden;border-width: 0px;border-radius: 112px;border-style: none;border-color: rgb(62, 62, 62);background-color: rgb(33, 36, 237);"><section><svg viewbox="0 0 1 1" style="float:left;line-height:0;width:0;vertical-align:top;"></svg></section></section></section></section></section></section><section powered-by="xiumi.us"><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;margin-left: 8px;margin-right: 8px;"><br></section><section style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"><span style="letter-spacing: 1px;">古人云:知所不豫,行且通焉。雖然通過本文,我們全面地了解了自動化測試的流程,但是只有在自動化測試的實踐中不斷探索,我們才能真正窺得自動化測試的全貌。北匯信息作為專業的自動化測試服務供應商,也可以為客戶提供優質全面的自動化測試服務。</span></section></section></section><section style="font-size: 14px;white-space: normal;text-align: center;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="font-size: 14px;white-space: normal;text-align: center;line-height: 2em;margin-left: 8px;margin-right: 8px;"><br></section><section style="font-size: 14px;white-space: normal;text-align: center;margin-left: 8px;margin-right: 8px;"><img class="rich_pages js_insertlocalimg wxw-img" data-fileid="502829575" data-ratio="0.5555555555555556" data-s="300,640" src="https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-fc6d51c804997f4ffa2032243533b013.png" data-type="jpeg" data-w="900" style="height: 248px;width: 447px;"></section><section style="font-size: 14px;white-space: normal;text-align: center;margin-left: 8px;margin-right: 8px;"><br></section> </div> <div id="6o8j2nhyx9pa" class="detail-intro-more"> <a class="detail-intro-btn">登錄閱讀全文 <i class="iconfont icon-xiangshang2-copy"></i></a> </div> <div id="6o8j2nhyx9pa" class="relevant-tag"> <span id="6o8j2nhyx9pa" class="iconfont relevant-icon"></span> <ul class="tag-list"> <li id="6o8j2nhyx9pa" class="tag-item"><a href="http://m.wojiuyaomai.com/mp/tags/86379" target="_blank" class="label-link">汽車軟件開發</a></li> <li id="6o8j2nhyx9pa" class="tag-item"><a href="http://m.wojiuyaomai.com/mp/tags/93564" target="_blank" class="label-link">自動化測試</a></li> </ul> </div> <div id="6o8j2nhyx9pa" class="copyright"> <span id="6o8j2nhyx9pa" class="copyright-span">免責聲明:</span> 該內容由專欄作者授權發布或作者轉載,目的在于傳遞更多信息,并不代表本網贊同其觀點,本站亦不保證或承諾內容真實性等。若內容或圖片侵犯您的權益,請及時聯系本站刪除。侵權投訴聯系:? <span id="6o8j2nhyx9pa" class="copyright-span">nick.zong@aspencore.com</span>! </div> <div id="6o8j2nhyx9pa" class="author-message"> <div id="6o8j2nhyx9pa" class="user-pic"> <a href="http://m.wojiuyaomai.com/mp/u3955079"><img src="https://mbb.eet-china.com/uc_server/avatar.php?uid=3955079&size=small" /></a> </div> <div id="6o8j2nhyx9pa" class="author-text"> <a href="http://m.wojiuyaomai.com/mp/u3955079" class="username">汽車電子與軟件</a> <span id="6o8j2nhyx9pa" class="thetext">主要介紹汽車電子軟件設計相關內容,每天分享一篇技術文章!</span> </div> <a href="http://m.wojiuyaomai.com/mp/u3955079" class="author-follow follow" onclick="follow();">進入專欄</a> </div> <div id="6o8j2nhyx9pa" class="detail-left-title comment-title"> <span id="6o8j2nhyx9pa" class="thetetxt">評論</span> <span id="6o8j2nhyx9pa" class="theline comment-num" style="font-weight: bold;font-size: 17px;color: red"></span> </div> <!-- 評論框--> <div id="6o8j2nhyx9pa" class="detail-comment-text"></div> <input type="hidden" id="id" value="117223"> <input type="hidden" id="uid" value="3955079"> <input type="hidden" value="2" id="page"> <!-- 評論列表--> <div id="6o8j2nhyx9pa" class="detail-comment-list"></div> <div id="6o8j2nhyx9pa" class="clearfix"></div> <div id="6o8j2nhyx9pa" class="recommend-2"> <ul class="nav-title"> <li id="6o8j2nhyx9pa" class="active"> <a href="#r-mp" data-toggle="tab"> 芯語 </a> </li> <li> <a href="#r-forum" data-toggle="tab"> 帖子 </a> </li> <li> <a href="#r-tech" data-toggle="tab"> 文庫 </a> </li> <li> <a href="#r-down" data-toggle="tab"> 下載 </a> </li> <li> <a href="#r-blog" data-toggle="tab"> 博文 </a> </li> </ul> <div id="6o8j2nhyx9pa" class="tab-content recommend-con"> <div id="6o8j2nhyx9pa" class="tab-pane fade new-list active in" id="r-mp"> <ul> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a href="http://m.wojiuyaomai.com/mp/a515994.html"> 長鑫科技最早或于9月底納入全球巨頭資管產品 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a href="http://m.wojiuyaomai.com/mp/u3967203" class="write"> 半導體工藝與設備 </a> <span>2026-08-10</span> <span>2235瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-3 col-md-3 col-sm-3 col-xs-4 col-new"> <div id="6o8j2nhyx9pa" class="new-pic"> <a href="http://m.wojiuyaomai.com/mp/a515983.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-24e04806ae32753a3bfda29dbe83df6a.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-9 col-md-9 col-sm-9 col-xs-8 col-new"> <h2 class="new-title"> <a href="http://m.wojiuyaomai.com/mp/a515983.html"> 比亞迪閃充技術獲國際大獎 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a href="http://m.wojiuyaomai.com/mp/u3949308" class="write"> 電動知家 </a> <span>2026-08-10</span> <span>521瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-3 col-md-3 col-sm-3 col-xs-4 col-new"> <div id="6o8j2nhyx9pa" class="new-pic"> <a href="http://m.wojiuyaomai.com/mp/a516127.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-462980128a140cc0739752cf21ce8d17.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-9 col-md-9 col-sm-9 col-xs-8 col-new"> <h2 class="new-title"> <a href="http://m.wojiuyaomai.com/mp/a516127.html"> SK海力士推進EUV工藝,引入新材料PSM </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a href="http://m.wojiuyaomai.com/mp/u3982736" class="write"> 科創板日報 </a> <span>2026-08-11</span> <span>446瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-3 col-md-3 col-sm-3 col-xs-4 col-new"> <div id="6o8j2nhyx9pa" class="new-pic"> <a href="http://m.wojiuyaomai.com/mp/a515847.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-c66db51839021b1f323da41b457ff155.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-9 col-md-9 col-sm-9 col-xs-8 col-new"> <h2 class="new-title"> <a href="http://m.wojiuyaomai.com/mp/a515847.html"> 日本前AV女優退役轉戰程序員,用 Claude Code 寫前端代碼 (第31期) </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a href="http://m.wojiuyaomai.com/mp/u3945460" class="write"> 芯片之家 </a> <span>2026-08-10</span> <span>370瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-3 col-md-3 col-sm-3 col-xs-4 col-new"> <div id="6o8j2nhyx9pa" class="new-pic"> <a href="http://m.wojiuyaomai.com/mp/a515935.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-46e74e531341afe20b2d1a33b626f16b.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-9 col-md-9 col-sm-9 col-xs-8 col-new"> <h2 class="new-title"> <a href="http://m.wojiuyaomai.com/mp/a515935.html"> 蓮花工程幫小米汽車打出紐北圈速紀錄! </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a href="http://m.wojiuyaomai.com/mp/u3949308" class="write"> 電動知家 </a> <span>2026-08-10</span> <span>352瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-3 col-md-3 col-sm-3 col-xs-4 col-new"> <div id="6o8j2nhyx9pa" class="new-pic"> <a href="http://m.wojiuyaomai.com/mp/a515942.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-d7f53d33039209b73ccbad970f920192.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-9 col-md-9 col-sm-9 col-xs-8 col-new"> <h2 class="new-title"> <a href="http://m.wojiuyaomai.com/mp/a515942.html"> 讀懂 EDA:核心企業盤點與 2026 產業進展 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a href="http://m.wojiuyaomai.com/mp/u4116285" class="write"> 未來產鏈 </a> <span>2026-08-10</span> <span>277瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a href="http://m.wojiuyaomai.com/mp/a515838.html"> 不錯的芯片公司名單—合肥篇 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a href="http://m.wojiuyaomai.com/mp/u3964083" class="write"> 路科驗證 </a> <span>2026-08-10</span> <span>247瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-3 col-md-3 col-sm-3 col-xs-4 col-new"> <div id="6o8j2nhyx9pa" class="new-pic"> <a href="http://m.wojiuyaomai.com/mp/a516284.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-aecb757f7d9a7c1f903ef72b258826f4.gif)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-9 col-md-9 col-sm-9 col-xs-8 col-new"> <h2 class="new-title"> <a href="http://m.wojiuyaomai.com/mp/a516284.html"> REDMI K100 Pro系列發布:科技性能旗艦,體驗全面出眾 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a href="http://m.wojiuyaomai.com/mp/u3888490" class="write"> Qualcomm中國 </a> <span>2026-08-11</span> <span>189瀏覽</span> </div> </div> </div> </li> </ul> </div> <div id="6o8j2nhyx9pa" class="tab-pane fade new-list" id="r-forum"> <ul> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > 考勤機離線動態語音播報提示方案-TTS文字合成語音方案 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 唯創知音語音芯片 </a> <span>2026-07-24</span> <span>83瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > 【Beetle ESP32 C6迷你開發板 】+小電機閉環調速 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 安安娃哈哈 </a> <span>2026-08-09</span> <span>98瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > 【7月打卡】大學期間一次數字鐘的調試經歷 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 隨遇而安1992 </a> <span>2026-07-28</span> <span>335瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > 羅氏線圈電表和電能質量分析儀 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 羅氏線圈電表廠 </a> <span>2026-08-06</span> <span>3瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > 小家電Type-C化趨勢下,PD取電芯片如何解決高壓供電難題?以ECP5702為例解析取電方案 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 袁雅倩 </a> <span>2026-08-07</span> <span>91瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > 【7月打卡】+RA2L1-48PIN計數器應用 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 落日余小暉 </a> <span>2026-07-27</span> <span>713瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > PMOS開關電路的常見問題 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 硬件工程師煉成之路 </a> <span>2026-08-03</span> <span>1071瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > PCB鍍層可靠性和失效分析 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 金鑒實驗室 </a> <span>2026-07-29</span> <span>182瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > 【8月打卡】+攝像頭產品更換某直接膠材材料流程 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> 我的果果超可愛 </a> <span>2026-08-02</span> <span>1272瀏覽</span> </div> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row li-row"> <div id="6o8j2nhyx9pa" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-new"> <h2 class="new-title"> <a > 【7月打卡】PCB做板失誤以及教訓分析 </a> </h2> <div id="6o8j2nhyx9pa" class="new-relevant"> <a class="write"> dancai </a> <span>2026-07-27</span> <span>978瀏覽</span> </div> </div> </div> </li> </ul> </div> <div id="6o8j2nhyx9pa" class="tab-pane fade new-list" id="r-tech"> <ul> </ul> </div> <div id="6o8j2nhyx9pa" class="tab-pane fade down-list" id="r-down"> <ul> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> AS717芯片設計電路 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 0</span> <span>2026-08-07 10:05</span> <span>大小: 60.49KB</span> <span>上傳者:<a target="_blank">QQ1540182856</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> EMC知識分享 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 1</span> <span>2026-08-01 16:15</span> <span>大小: 132.43KB</span> <span>上傳者:<a target="_blank">楊哲10</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/other.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> 變工況下電力電子電路參數故障診斷方法研究 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 5</span> <span>2026-08-03 08:45</span> <span>大小: 5.92MB</span> <span>上傳者:<a target="_blank">htwdb</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> 基于領域模型反饋強化學習的電子電路設計優化 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 5</span> <span>2026-07-31 16:55</span> <span>大小: 5.68MB</span> <span>上傳者:<a target="_blank">htwdb</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> 基于力電耦合效應的電磁能量收集與電源管理技術研究 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 5</span> <span>2026-07-31 15:50</span> <span>大小: 6.37MB</span> <span>上傳者:<a target="_blank">htwdb</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> 基于深度學習方法的電力電子電路故障檢測研究 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 5</span> <span>2026-07-31 16:04</span> <span>大小: 3.98MB</span> <span>上傳者:<a target="_blank">htwdb</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> 電子電路線路板完整性檢測算法研究 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 5</span> <span>2026-07-31 16:57</span> <span>大小: 4.17MB</span> <span>上傳者:<a target="_blank">htwdb</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> 基于最優測點的DC-DC電路軟故障診斷 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 5</span> <span>2026-07-31 16:09</span> <span>大小: 5.2MB</span> <span>上傳者:<a target="_blank">htwdb</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> YY 9706.102-2021 醫用電氣設備(可搜索) </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 1</span> <span>2026-08-02 16:12</span> <span>大小: 4.61MB</span> <span>上傳者:<a target="_blank">chavin</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> <li> <div id="6o8j2nhyx9pa" class="source-l"> <a target="_blank" class="source-name"> Keysight獨家資料:射頻技術秘籍 </a> <div id="6o8j2nhyx9pa" class="source-other hidden-xs"> <span>所需E幣: 0</span> <span>2026-08-05 11:34</span> <span>大小: 1.01MB</span> <span>上傳者:<a target="_blank">Rain管理</a></span> </div> </div> <div id="6o8j2nhyx9pa" class="source-r"> <a target="_blank"> <img src="/static/css/dl/icon/PDF.png" alt=""> </a> </div> </li> </ul> </div> <div id="6o8j2nhyx9pa" class="tab-pane fade blog-list" id="r-blog"> <ul> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 儲能,該怎么選控制器 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con"> 做儲能項目,你是怎么選控制器的?隨著工商業儲能、電網側儲能的規模化落地,作為儲能EMS“大腦”的嵌入式控制器,直接決定了整套系統的運行穩定性、數據可靠性與項目落地效率。不少從業者都踩過類似的坑:接口數量不足要額外加裝擴展模塊、戶外高溫導致設備宕機、電磁干擾引發數據丟包、軟件生態薄弱拖慢開發周期……選對儲能控制器,核心要盯準四個關鍵維度。首先看接口能力:全鏈路覆蓋,才是降本的核心。一套完整的儲能系統,需要同時對接PCS、BMS、智能電表、溫濕度傳感器、除濕機、煙感消防主機,還要連接急停開關、斷路器 </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">飛凌嵌入式</a> <span>2026-08-11 08:46</span> <span>217瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 2026藍牙音箱方案新選擇,WT2605C 三合一,BOM 立省兩顆料 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con"> 做藍牙音箱的工程師大概都碰過這個局面。產品要連手機放歌,要本地播開機提示音和按鍵音,還要接 App 做配網和狀態上報。三件事拆開,早先的常規做法是音頻藍牙一顆料、數傳藍牙一顆料、本地播放再掛一顆小 MCU 加一片 Flash。板子越畫越大,BOM 越算越貴,待機電流和固件工作量也跟著漲。WT2605C 出來以后,這套需求可以集成到一顆芯片,就是 WT2605C-32N,該芯片采用QFN32 封裝,4×4 毫米,把音頻藍牙、BLE 數傳和 MP3 本地播放三樣全包了。對藍牙音箱來說,最實在的好處就 </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">唯創知音語音芯片</a> <span>2026-08-06 15:14</span> <span>424瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 監控攝像頭一直開著太費電?用雷達做"存在感應喚醒"才是正確的低功耗打開方式 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con"> 做電池供電攝像頭、可視門鈴、戶外安防的同學應該都踩過這個坑:攝像頭要拍,ISP、sensor、無線模塊全得開著,整機電流動輒幾百 mA。一節 18650 撐不了幾天,用戶投訴“怎么又沒電了”。有人會說:加個 PIR 人體紅外不就行了?問題是 PIR 怕熱、怕寵物、怕隔著亞克力/玻璃殼,而且只能感知“有溫差的人體移動”,靈敏度飄忽。真正省電的思路應該是:讓攝像頭平時徹底睡死,只有“前面有人/有動靜”時才被一鍵喚醒——而負責這個“看門”角色的,最合適的是一顆低功耗雷達。一、為什么是雷達,而不是 PI </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">唯創知音語音芯片</a> <span>2026-08-07 14:44</span> <span>261瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 東莞市恒創連接器有限公司(HCHGCONN) 連接器國產替代、小間距大電流連接器與定制開發解決方案 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con"> 摘要東莞市恒創連接器有限公司(HCHGCONN)是位于廣東東莞的連接器源頭制造工廠,專注于連接器國產替代、小間距大電流連接器、線對板連接器、線對線連接器、板對板連接器、電源連接器及定制連接器開發。公司面向工業自動化、新能源儲能、BMS、汽車電子、AI服務器、GPU供電、通信設備、醫療設備和智能家居等場景,提供從產品選型、替代評估、樣品驗證到批量交付的一站式連接方案。恒創可支持 Molex、TE Connectivity、JST、Hirose、Samtec 等國際品牌部分系列的國產替代評估。常見替 </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">HC003</a> <span>2026-08-07 10:14</span> <span>265瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 樓宇自控的“國際普通話”BACnet,飛凌嵌入式FCU1501正式原生支持 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con"> 樓宇自控里的“巴別塔”一棟智慧樓宇、一個產業園區里,暖通空調運行著廠商私有協議,照明系統遵循專屬通信標準,變配電、門禁安防各成體系——設備間數據壁壘森嚴,上位平臺對接全靠定制化 “翻譯” 開發,不僅成本高企,交付周期也難以管控。這就是樓宇自控行業多年的痛點:協議林立、封閉林立。而破局的鑰匙,早在30多年前就已經寫好了——BACnet。作為ASHRAE制定的樓宇自控國際標準協議,BACnet是如今全球樓宇自控系統(BAS)互聯互通的“通用語言”。新風機、冷源群控、變配電、照明、門禁,凡是需要被樓宇 </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">飛凌嵌入式</a> <span>2026-08-10 09:26</span> <span>301瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 低壓差線性充電電路 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con"> 產品使用18V供電,配套4串鋰離子電池,需要設計一個充電器。因為輸入18V,電池最高 16.8V,壓差僅 1.2V。因為壓差太小。使用開關型的充電控制芯片不穩定。嘗試自行設計一個。整體采用分立三極管 + TL431架構,分4個功能單元:使能控制回路、限流環路、TL431 精密恒壓反饋環路、PNP 功率管主功率輸出回路;實現完整鋰電池充電邏輯。使能控制回路按鍵按下:5V 電壓經 R12 (2kΩ) 送入 NPN 管 Q3 基極,Q3 飽和導通,對地拉低 R1、R2 組成的分壓控制節點電位;該節點直 </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">southcreek</a> <span>2026-08-07 13:45</span> <span>525瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 【把頭發絲厚的晶片磨成量產品:小尺寸石英晶振的生產全鏈路】 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con">        很多人只見過封裝在SMD外殼里的小尺寸晶振,卻不知道一顆2016、1612甚至1210封裝的微型石英晶振,從一塊巴掌大的石英原礦,到最終能穩定起振的成品,要經過十幾道精密工序。它內部的石英晶片厚度最薄不到20微米,比普通A4紙的1/5還薄,整個生產過程里哪怕0.1微米的誤差,都會直接廢掉整批產品,這也是小尺寸晶振過去長期依賴進口,國內廠商花了十幾年才啃下量產硬骨頭的核心原因。1. 原石定向切割:0.01度的角度誤差都不能有小尺寸晶振的第一步, </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">TKD泰晶科技</a> <span>2026-08-07 08:43</span> <span>574瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 讓微弱脈沖信號更清晰——鎖相放大器集成Boxcar平均器 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con"> 讓微弱脈沖信號更清晰——鎖相放大器集成Boxcar平均器在脈沖激光、泵浦-探測、時間分辨光譜、飛行時間質譜等實驗中,真正需要測量的信號往往只出現在一個很短的時間窗口內,卻被淹沒在遠大于它的噪聲和背景之中。 針對這類穩定重復的微弱脈沖與瞬態信號,賽恩科儀為OE2052雙通道數字鎖相放大器帶來全新的Boxcar Averager功能升級:在鎖相檢測之外,進一步提供從周期波形觀察、門控測量到多周期平均的完整數字Boxcar測量鏈路。 Boxcar平均器,如何從噪聲中“截取”目標信號?Boxcar平均器 </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">SSI_賽恩科儀</a> <span>2026-08-07 15:49</span> <span>45942瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 告別多端重復開發:Buildroot+Flutter實現全平臺UI風格統一 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con"> 一、方案簡介在Buildroot構建的嵌入式Linux系統中部署Flutter應用,主流有兩套成熟的開源方案,分別適配不同的顯示場景與開發需求:方案一:flutter-elinux(Sony開源方案)由索尼官方維護的嵌入式Linux Flutter工具鏈,既支持DRM/GBM直接渲染,也兼容Wayland、X11等多種顯示后端,場景適配性更廣。方案二:flutter-pi(輕量級嵌入器)一款輕量級Flutter引擎宿主程序,僅基于底層DRM/GBM接口實現渲染,無需依賴桌面環境,資源占用更低,更 </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">飛凌嵌入式</a> <span>2026-08-07 09:34</span> <span>248瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="blog-title"> <a target="_blank"> 追逐半生,歸來仍是少年 </a> </div> <div id="6o8j2nhyx9pa" class="blog-con"> <div id="6o8j2nhyx9pa" class="the-l"> <div id="6o8j2nhyx9pa" class="con">                                                                         </div> <div id="6o8j2nhyx9pa" class="other"> <a target="_blank">廣州鐵金剛</a> <span>2026-08-06 17:44</span> <span>229036瀏覽</span> </div> </div> <div id="6o8j2nhyx9pa" class="the-r"> <a target="_blank"> </a> </div> </div> </li> </ul> </div> </div> </div> </div> <div id="6o8j2nhyx9pa" class="detail-right hidden-xs hidden-sm"> <div id="6o8j2nhyx9pa" class="personal-information"> <div id="6o8j2nhyx9pa" class="user-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/mp/u3955079"> <img src="https://mbb.eet-china.com/uc_server/avatar.php?uid=3955079&size=small" /> </a> </div> <div id="6o8j2nhyx9pa" class="user-information"> <span id="6o8j2nhyx9pa" class="theuser"> <a href="http://m.wojiuyaomai.com/mp/u3955079"> 汽車電子與軟件 </a> </span> <span id="6o8j2nhyx9pa" class="theintroduce">主要介紹汽車電子軟件設計相關內容,每天分享一篇技術文章!</span> <div id="6o8j2nhyx9pa" class="other-message"> <span> 文章:2393篇 </span> <span> 粉絲:230人 </span> </div> <div id="6o8j2nhyx9pa" class="operate-btn"> <a onclick="showWindow('showMsgBox', this.href, 'get', 0)" id="a_sendpm_1"> <span id="6o8j2nhyx9pa" class="iconfont"></span> 私信 </a> </div> </div> <div id="6o8j2nhyx9pa" class="his-article"> <h2>最近文章</h2> <div id="6o8j2nhyx9pa" class="article-list"> <ul> <li> <a href="http://m.wojiuyaomai.com/mp/a516068.html"> 直播預告 | 如何實現Hypervisor在TI TDA5 SoC平臺的快速移植 </a> <!--<span id="6o8j2nhyx9pa" class="thedate"></span>--> </li> <li> <a href="http://m.wojiuyaomai.com/mp/a516067.html"> 汽車工業,終將回歸工程本質 —— 質量、可靠性、耐久性 </a> <!--<span id="6o8j2nhyx9pa" class="thedate"></span>--> </li> <li> <a href="http://m.wojiuyaomai.com/mp/a515794.html"> 直播預告 | TI TDA5 SOC 特性介紹 </a> <!--<span id="6o8j2nhyx9pa" class="thedate"></span>--> </li> <li> <a href="http://m.wojiuyaomai.com/mp/a515793.html"> CAN總線攻擊方式、軟硬件實現及全方位防范機制 </a> <!--<span id="6o8j2nhyx9pa" class="thedate"></span>--> </li> <li> <a href="http://m.wojiuyaomai.com/mp/a515656.html"> 直播預告 | TI TDA5 SOC 特性介紹 </a> <!--<span id="6o8j2nhyx9pa" class="thedate"></span>--> </li> </ul> </div> </div> <div id="6o8j2nhyx9pa" class="his-article" style="display: none"> <h2>熱門文章</h2> <div id="6o8j2nhyx9pa" class="article-list"> <ul> </ul> </div> </div> </div> <div style="margin-top: 10px;margin-bottom: 10px"> <div id="6o8j2nhyx9pa" class="row-ad"> <div class="6o8j2nhyx9pa" id='div-gpt-ad-1515756551439-3'></div> <div id="6o8j2nhyx9pa" class="ad-text"> 廣告 </div> </div> </div> <div id="6o8j2nhyx9pa" class="his-article"> <h2>推薦</h2> <div id="6o8j2nhyx9pa" class="article-list"> <ul> <div><li><a rel="nofollow" target="_blank" ><font color="#ff0000"><b>【8.13 上海】西門子AI原生設計重構芯片到系統全鏈路|7大論壇解密</b></font></a></li><li><a rel="nofollow" target="_blank" ><b><font color="#FF0000">華潤微電子推出第五代高性能SGT MOS產品</font></b></a></li><li><a rel="nofollow" target="_blank" ><font color="#0000ff"><b>“傻瓜式”高密度電源設計</b></font></a></li><li><a rel="nofollow" target="_blank" ><b><font color="#FF0000">高性能SGT MOS產品,保障BMS高效可靠運行</font></b></a></li></div> </ul> </div> </div> <div id="6o8j2nhyx9pa" class="modular-title"> <span><strong style="padding-left: 0">在線研討會</strong></span> </div> <div id="6o8j2nhyx9pa" class="news-today"> <ul> <li> <div id="6o8j2nhyx9pa" class="row"> <div id="6o8j2nhyx9pa" class="col-lg-5 col-new"> <div id="6o8j2nhyx9pa" class="new-pic col-new-today-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/webinars/ADI_20260819.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.assets-stash.eet-china.com/2025-05-21-145953-17478107931363407.jpg)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-7 col-new"> <a target="_blank" href="http://m.wojiuyaomai.com/webinars/ADI_20260819.html" class="col-new-today-title"> μModule智能運動控制解決方案 </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row"> <div id="6o8j2nhyx9pa" class="col-lg-5 col-new"> <div id="6o8j2nhyx9pa" class="new-pic col-new-today-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/webinars/Synopsys_20260828.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.assets-stash.eet-china.com/2024-08-20-091323-17241164036315443.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-7 col-new"> <a target="_blank" href="http://m.wojiuyaomai.com/webinars/Synopsys_20260828.html" class="col-new-today-title"> AI Agent模擬設計與智能版圖實戰 </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row"> <div id="6o8j2nhyx9pa" class="col-lg-5 col-new"> <div id="6o8j2nhyx9pa" class="new-pic col-new-today-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/webinars/Nexperia_20260910.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.assets-stash.eet-china.com/2019-07-02-094858-15620321381663265.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-7 col-new"> <a target="_blank" href="http://m.wojiuyaomai.com/webinars/Nexperia_20260910.html" class="col-new-today-title"> 全新T2X平臺引領安世中國MOSFET功率密度新高度 </a> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row"> <div id="6o8j2nhyx9pa" class="col-lg-5 col-new"> <div id="6o8j2nhyx9pa" class="new-pic col-new-today-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/webinars/ADI_20260916.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.assets-stash.eet-china.com/2025-05-21-145953-17478107931363407.jpg)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-7 col-new"> <a target="_blank" href="http://m.wojiuyaomai.com/webinars/ADI_20260916.html" class="col-new-today-title"> 賦能工業PC解決方案,實現穩健的智能邊緣計算 </a> </div> </div> </li> </ul> </div> <div id="6o8j2nhyx9pa" class="modular-title"> <span><strong style="padding-left: 0">EE直播間</strong></span> </div> <div id="6o8j2nhyx9pa" class="news-today"> <ul> <li> <div id="6o8j2nhyx9pa" class="row"> <div id="6o8j2nhyx9pa" class="col-lg-5 col-new"> <div id="6o8j2nhyx9pa" class="new-pic col-new-today-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/ee-live/GigaDevice_20260812.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.assets-stash.eet-china.com/2026-07-30-144046-17853936464331700.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-7 col-new"> <a target="_blank" href="http://m.wojiuyaomai.com/ee-live/GigaDevice_20260812.html" class="col-new-today-title"> 芯品星期三 — 模擬專場 </a> <span id="6o8j2nhyx9pa" class="new-source">直播時間:08月12日 15:00</span> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row"> <div id="6o8j2nhyx9pa" class="col-lg-5 col-new"> <div id="6o8j2nhyx9pa" class="new-pic col-new-today-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/ee-live/Renesas_20260812.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.assets-stash.eet-china.com/2026-07-17-113038-17842590388916110.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-7 col-new"> <a target="_blank" href="http://m.wojiuyaomai.com/ee-live/Renesas_20260812.html" class="col-new-today-title"> 【2026 瑞薩無線連接線上技術月】第二講:入門級別的雙核藍牙SoC:DA1459x 系列芯片藍牙功能實戰 </a> <span id="6o8j2nhyx9pa" class="new-source">直播時間:08月12日 19:30</span> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row"> <div id="6o8j2nhyx9pa" class="col-lg-5 col-new"> <div id="6o8j2nhyx9pa" class="new-pic col-new-today-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/ee-live/Renesas_20260819.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.assets-stash.eet-china.com/2026-07-17-113038-17842590388916110.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-7 col-new"> <a target="_blank" href="http://m.wojiuyaomai.com/ee-live/Renesas_20260819.html" class="col-new-today-title"> 【2026 瑞薩無線連接線上技術月】第三講:超低功耗WiFi 6雙頻SoC RA6Wx系列及開發 </a> <span id="6o8j2nhyx9pa" class="new-source">直播時間:08月19日 19:30</span> </div> </div> </li> <li> <div id="6o8j2nhyx9pa" class="row"> <div id="6o8j2nhyx9pa" class="col-lg-5 col-new"> <div id="6o8j2nhyx9pa" class="new-pic col-new-today-pic"> <a target="_blank" href="http://m.wojiuyaomai.com/ee-live/Renesas_20260826.html"> <div id="6o8j2nhyx9pa" class="thepic" style="background-image: url(https://static.assets-stash.eet-china.com/2026-07-17-113038-17842590388916110.png)"></div> </a> </div> </div> <div id="6o8j2nhyx9pa" class="col-lg-7 col-new"> <a target="_blank" href="http://m.wojiuyaomai.com/ee-live/Renesas_20260826.html" class="col-new-today-title"> 【2026 瑞薩無線連接線上技術月】第四講:NFC無線充方案簡介及應用 </a> <span id="6o8j2nhyx9pa" class="new-source">直播時間:08月26日 19:30</span> </div> </div> </li> </ul> </div> <div id="6o8j2nhyx9pa" class="hot-post"> <div id="6o8j2nhyx9pa" class="moduleTitle"> <div id="6o8j2nhyx9pa" class="theTitle">E聘熱招職位</div> </div> <ul> </ul> </div> <div id="6o8j2nhyx9pa" class="ranking public-r-fixed-ad" id="other-source"> <div id="6o8j2nhyx9pa" class="right-tags"> <div id="6o8j2nhyx9pa" class="ranking-head"> <div id="6o8j2nhyx9pa" class="ranking-head-item active" data-id="source">資料</div> <div id="6o8j2nhyx9pa" class="ranking-head-item" data-id="tec2">文庫</div> <div id="6o8j2nhyx9pa" class="ranking-head-item" data-id="thread2">帖子</div> <div id="6o8j2nhyx9pa" class="ranking-head-item" data-id="blog2">博文</div> </div> <ul class="ranking-list display-list" id="source"> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">1</div> <a target="_blank">國產MCU替換STM32,容易燒芯片——原因在這里</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">2</div> <a target="_blank">Keysight獨家資料:射頻技術秘籍</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">3</div> <a target="_blank">線性代數 第七版 (同濟大學數學科學學院 編)</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">4</div> <a target="_blank">了不起的Markdown (畢小朋)</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">5</div> <a target="_blank">運算放大器和凌特器件:理論和應用篇</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">6</div> <a target="_blank">考畢茲電路分析</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">7</div> <a target="_blank">數學分析 第五版(上冊) 華東師范大學版</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">8</div> <a target="_blank">數學分析 第五版(下冊) 華東師范大學版</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">9</div> <a target="_blank">EMC設計浪涌靜電EFT防護</a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num">10</div> <a target="_blank">麥克風陣列信號處理</a> </li> </ul> <style id="diy_style" type="text/css"></style> <div class="6o8j2nhyx9pa" id="thread2" class="display-list" style="display: none;"> <div id="6o8j2nhyx9pa" class="area" id="thread"> <ul class="ranking-list"> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 1 </div> <a class="ranking-item-title" target="_blank" > 8月打卡簽到 & BOM降本分享! </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 2 </div> <a class="ranking-item-title" target="_blank" > 【8月打卡】+攝像頭產品更換某直接膠材材料流程 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 3 </div> <a class="ranking-item-title" target="_blank" > 【7月打卡】+工控產品故障排除與分析 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 4 </div> <a class="ranking-item-title" target="_blank" > PMOS開關電路的常見問題 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 5 </div> <a class="ranking-item-title" target="_blank" > 人類為什么要搞AI? </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 6 </div> <a class="ranking-item-title" target="_blank" > 【7月打卡】PCB做板失誤以及教訓分析 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 7 </div> <a class="ranking-item-title" target="_blank" > 集基耦合多諧震蕩器 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 8 </div> <a class="ranking-item-title" target="_blank" > 【7月打卡】+ 溫度控制器控制軟件的調試經驗 </a> </li> </ul> </div> </div> <div class="6o8j2nhyx9pa" id="blog2" class="display-list" style="display: none;"> <div id="6o8j2nhyx9pa" class="area" id="blog"> <ul class="ranking-list"> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 1 </div> <a class="ranking-item-title" target="_blank" > 儲能,該怎么選控制器 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 2 </div> <a class="ranking-item-title" target="_blank" > 樓宇自控的“國際普通話”BACnet,飛凌嵌入式FCU1501正式原生支持 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 3 </div> <a class="ranking-item-title" target="_blank" > 讓微弱脈沖信號更清晰——鎖相放大器集成Boxcar平均器 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 4 </div> <a class="ranking-item-title" target="_blank" > 監控攝像頭一直開著太費電?用雷達做"存在感應喚醒"才是正確的低功耗打開方式 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 5 </div> <a class="ranking-item-title" target="_blank" > 低壓差線性充電電路 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 6 </div> <a class="ranking-item-title" target="_blank" > 東莞市恒創連接器有限公司(HCHGCONN) 連接器國產替代、小間距大電流連接器與定制開發解決方案 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 7 </div> <a class="ranking-item-title" target="_blank" > 告別多端重復開發:Buildroot+Flutter實現全平臺UI風格統一 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 8 </div> <a class="ranking-item-title" target="_blank" > 【把頭發絲厚的晶片磨成量產品:小尺寸石英晶振的生產全鏈路】 </a> </li> </ul> </div> </div> <div class="6o8j2nhyx9pa" id="tec2" class="display-list" style="display: none;"> <div id="6o8j2nhyx9pa" class="area" id="blog"> <ul class="ranking-list"> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 1 </div> <a class="ranking-item-title" target="_blank" > 繼電器高壓吸合、低壓釋放控制電路 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 2 </div> <a class="ranking-item-title" target="_blank" > 開關電源 MOS 炸管別只換管子!這 6 處元件必查 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 3 </div> <a class="ranking-item-title" target="_blank" > 4~20mA 之 低成本HART通訊實現方式,PWM和有源濾波實現方式 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 4 </div> <a class="ranking-item-title" target="_blank" > KiCAD PCB拼板實踐操作指南 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 5 </div> <a class="ranking-item-title" target="_blank" > 工程師一上來就犯難(12V轉5V/3.3V穩壓芯片怎么選?) </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 6 </div> <a class="ranking-item-title" target="_blank" > 淺談提高功放PA效率的幾種方法 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 7 </div> <a class="ranking-item-title" target="_blank" > 老工程師不外傳的28條PLC編程規范及建議,一般人我不告訴他! </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 8 </div> <a class="ranking-item-title" target="_blank" > KYN28高壓開關柜知識精講 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 9 </div> <a class="ranking-item-title" target="_blank" > PCBA常用的14種測試方法 </a> </li> <li id="6o8j2nhyx9pa" class="ranking-item"> <div id="6o8j2nhyx9pa" class="ranking-item-num"> 10 </div> <a class="ranking-item-title" target="_blank" > USB 限流保護:7款常用方案對比與選型思路 </a> </li> </ul> </div> </div> </div> </div> </div> <div id="6o8j2nhyx9pa" class="channel hidden-xs hidden-sm"> <div id="6o8j2nhyx9pa" class="channel-list"> <div id="6o8j2nhyx9pa" class="channel-list-seat"> <div id="6o8j2nhyx9pa" class="detail-left-title"> <span id="6o8j2nhyx9pa" class="thetetxt">分享到</span> <span id="6o8j2nhyx9pa" class="theline"></span> </div> <div id="6o8j2nhyx9pa" class="share-list "> <a href="javascript:void (0)" class="weixin" title="分享到微信"> <span id="6o8j2nhyx9pa" class="iconfont"></span> <div id="6o8j2nhyx9pa" class="weixin-code" id="wechatshare"></div> </a> </div> <div id="6o8j2nhyx9pa" class="detail-left-title"> <span id="6o8j2nhyx9pa" class="thetetxt">評論</span> <span id="6o8j2nhyx9pa" class="theline"></span> </div> <div id="6o8j2nhyx9pa" class="comment-icon reply-icon reply-icon-seat"> <img src="/static/image/mianbaoban/specialcolumn/23.png" alt=""> <span id="6o8j2nhyx9pa" class="thenum comment-num-left"></span> </div> <div id="6o8j2nhyx9pa" class="detail-left-title"> <span id="6o8j2nhyx9pa" class="thetetxt">點贊</span> <span id="6o8j2nhyx9pa" class="theline"></span> </div> <div id="6o8j2nhyx9pa" class=" thumbs-icon tooltip-test article-thumbs-icon " data-toggle="tooltip" data-placement="left" title="文章點贊"> <span id="6o8j2nhyx9pa" class="iconfont iconfont-before "></span> <span id="6o8j2nhyx9pa" class="iconfont iconfont-after "></span> <span id="6o8j2nhyx9pa" class="thenum article-thumbs-number"></span> </div> <div id="6o8j2nhyx9pa" class="detail-edit-del"></div> </div> </div> </div> <style> .public-r-seat { width: 300px; position: fixed; } </style> </div><footer class="hidden-xs"> <div id="6o8j2nhyx9pa" class="footer-con"> <div id="6o8j2nhyx9pa" class="footer-left"> <div id="6o8j2nhyx9pa" class="footer-link"> <a href="http://m.wojiuyaomai.com/" target="_blank"> 電子工程專輯 </a> <a target="_blank"> 電子技術設計 </a> <a target="_blank"> 國際電子商情 </a> <a target="_blank"> 面包板社區 </a> </div> <div id="6o8j2nhyx9pa" class="footer-copy"> Copyright ? 2000- 2026 eMedia Asia Ltd. All rights reserved. 北京科能廣告有限公司深圳分公司 版權所有 </div> </div> <div id="6o8j2nhyx9pa" class="footer-share"> <a target="_blank"><span id="6o8j2nhyx9pa" class="iconfont"></span></a> <span id="6o8j2nhyx9pa" class="iconfont weixin">  <div id="6o8j2nhyx9pa" class="weixin-code"> <div id="6o8j2nhyx9pa" class="code-pic-arrow"></div> <img src="/static/image/mianbaoban/specialcolumn/15.png" alt=""> <span id="6o8j2nhyx9pa" class="code-text"> 掃碼關注面包板社區 </span> </div> </span> </div> <div id="6o8j2nhyx9pa" class="clearfix"></div> </div> </footer> <script src="/static/js//mianbaoban/lowbrowser.js?1" type="text/javascript"></script> <!--Global site tag (gtag.js) - Google Analytics --> <script src="https://www.googletagmanager.com/gtag/js?id=UA-4727096-18" type="text/javascript"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-4727096-18'); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?07a263769efcb499343fdd4a474e9713"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <link rel="stylesheet" type="text/css" /> <script src="http://m.wojiuyaomai.com/e/public/welcome_ad/" type="text/javascript"></script> <script src="http://www.googletagservices.com/tag/js/gpt.js" type="text/javascript"></script> <script src="https://mbb.eet-china.com/static/js/mianbaoban/welcome_ad.js" type="text/javascript"></script> <!--閑置頁面彈窗--><link rel="stylesheet" href="/static/css/unused.css"> <div class="6o8j2nhyx9pa" id="a_showhotnews_list_dia" style="display:none"> <div class="6o8j2nhyx9pa" id="a_showhotnews_list" class="tj_box"> <div id="6o8j2nhyx9pa" class="tj_top">本網頁已閑置超過10分鐘,按鍵盤任意鍵或點擊空白處,即可回到網頁 <div class="6o8j2nhyx9pa" id="a_showhotnews_top_close" class="close1">X <a target="_self" href="javascript:void(0)"></a> </div> </div> <div id="6o8j2nhyx9pa" class="tj_center"> <div id="6o8j2nhyx9pa" class="tjleft"> <!-- /122049170/TOP_RECTANGLE --> <div class="6o8j2nhyx9pa" id='div-gpt-ad-unused'></div> </div> <div id="6o8j2nhyx9pa" class="tjright"> <h3> <div id="6o8j2nhyx9pa" class="centerleft">最新資訊</div> </h3> <div class="6o8j2nhyx9pa" id="a_hotnews_list_c" class="hotnews_list"> <ul> <li> <a href="http://m.wojiuyaomai.com/news/202608128331.html" target="_blank"> <span id="6o8j2nhyx9pa" class="thetext">英偉達、思科等120家組織發起SAFE框架,擬建立AI智能體事故追蹤機制</span> </a> </li> <li> <a target="_blank"> <span id="6o8j2nhyx9pa" class="thetext">上海印發“十五五”軟件信息服務業規劃,HBM、CPO、量子芯片是核心攻關環節</span> </a> </li> <li> <a href="http://m.wojiuyaomai.com/news/202608125926.html" target="_blank"> <span id="6o8j2nhyx9pa" class="thetext">中國研發投入首超美國,登頂全球第一</span> </a> </li> <li> <a href="http://m.wojiuyaomai.com/news/202608126626.html" target="_blank"> <span id="6o8j2nhyx9pa" class="thetext">英特爾增發募資200億美元,加碼芯片代工業務</span> </a> </li> <li> <a href="http://m.wojiuyaomai.com/news/202608129245.html" target="_blank"> <span id="6o8j2nhyx9pa" class="thetext">索尼與臺積電簽署協議,合資47億美元建圖像傳感器廠</span> </a> </li> </ul> </div> </div> </div> <div id="6o8j2nhyx9pa" class="tj_bottom"> </div> </div> </div> <script src="/static/js/unused.js" type="text/javascript"></script> <div id="6o8j2nhyx9pa" class="sidebar-top"> <span id="6o8j2nhyx9pa" class="iconfont"></span> </div> <div id="6o8j2nhyx9pa" class="bottom-sidebar visible-xs"> <div id="6o8j2nhyx9pa" class="art-comment-xs"> <div id="6o8j2nhyx9pa" class="mypl-xs"> <span id="6o8j2nhyx9pa" class="iconfont"></span>我要評論 </div> <div id="6o8j2nhyx9pa" class="myicon-xs"> <div id="6o8j2nhyx9pa" class="myicon-icon comment-xs reply-icon reply-icon-seat"> <span id="6o8j2nhyx9pa" class="iconfont">  </span> <strong>0</strong> </div> <div class="6o8j2nhyx9pa" id="article_click" onclick="article_click(117223);" class="myicon-icon article-thumbs-icon-a-before "> <span id="6o8j2nhyx9pa" class="iconfont iconfont-after "></span> <span id="6o8j2nhyx9pa" class="iconfont iconfont-before"></span> <strong id="click1" class="article-thumbs-number"></strong> </div> <div id="6o8j2nhyx9pa" class="myicon-icon share-btn-xs"> <span id="6o8j2nhyx9pa" class="iconfont"></span> </div> </div> </div> <div id="6o8j2nhyx9pa" class="art-comment-area-xs"> </div> <div id="6o8j2nhyx9pa" class="share-box-xs"> <ul> <li id="6o8j2nhyx9pa" class="weixin"> <span id="6o8j2nhyx9pa" class="iconfont weixin"></span>分享到微信 </li> </ul> </div> </div> <div id="6o8j2nhyx9pa" class="share-weixin-box-xs-bg"> <div id="6o8j2nhyx9pa" class="share-weixin-box-xs"> <span id="6o8j2nhyx9pa" class="iconfont"></span> <span id="6o8j2nhyx9pa" class="thetext">點擊右上角,分享到朋友圈</span> <span id="6o8j2nhyx9pa" class="thebtn">我知道啦</span> </div> </div><div id="6o8j2nhyx9pa" class="share-weixin-browser-xs-bg"> <div id="6o8j2nhyx9pa" class="share-weixin-box-xs"> <span id="6o8j2nhyx9pa" class="thetext">請使用瀏覽器分享功能</span> <span id="6o8j2nhyx9pa" class="thebtn">我知道啦</span> </div> </div> <div id="6o8j2nhyx9pa" class="bg-layer"></div> <div id="6o8j2nhyx9pa" class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div id="6o8j2nhyx9pa" class="modal-dialog" role="document"> <div id="6o8j2nhyx9pa" class="modal-content"> <div id="6o8j2nhyx9pa" class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="myModalLabel">提示!</h4> </div> <div id="6o8j2nhyx9pa" class="modal-body"> 您尚未開通專欄,立即申請專欄入駐 </div> <div id="6o8j2nhyx9pa" class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">關閉</button> <button type="button" class="btn btn-primary"><a target="_blank" class="nav-link">立即申請</a></button> </div> </div> </div> </div><script type="text/javascript"> var MbbUrl = "https://mbb.eet-china.com"; // 評論ajax var urls = "https%3A%2F%2Fm.wojiuyaomai.com%2Fmp%2Fa117223.html"; jQuery('#wechatshare').append('<img src="https://mbb.eet-china.com/source/plugin/wechatshare/index.php?text=' + urls + '"/><span>微信掃一掃,立即分享</span>'); jQuery('#mywechat').hover(function () { jQuery('#wechatshare').show(); }, function () { jQuery('#wechatshare').hide(); }); </script> <script src="/static/lib/pinchzoom/pinchzoom.js" type="text/javascript"></script> <script src="/static/js/mzoom.js" type="text/javascript"></script> <script src="https://res.wx.qq.com/open/js/jweixin-1.0.0.js" type="text/javascript"></script> <script> jQuery(document).ready(function () { $('.nav-mianbaoban .dropdown').hover(function(){ $(this).addClass( 'open' ); },function (){ $(this).removeClass( 'open' ); }) if (isWeiXin()) { jQuery.ajax({ type: "post", url: "http://m.wojiuyaomai.com/wechat.php", dataType: "json", //data:"url="+window.location.href, success: function (data) { wx.config({ debug: false, appId: data.appId, timestamp: data.timestamp, nonceStr: data.nonceStr, signature: data.signature, jsApiList: ['checkJsApi', 'onMenuShareAppMessage', 'onMenuShareTimeline'] }); wx.ready(function () { wx.onMenuShareAppMessage({ title: '汽車軟件開發自動化測試攻略', desc: '隨著軟件開發在造車行業中占有越來越重要的地位,敏捷開發的思想在造車領域中也逐漸地被重視起來,隨之而來的是整車廠對自動化測試需求越來越強烈。本文結合在自動化測試方', link: window.location.href, imgUrl: 'https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-68361d9ce21d88f8156513ed55f9b51c.png', type: 'link', success: function () { }, cancel: function () { } }); wx.onMenuShareTimeline({ title: '汽車軟件開發自動化測試攻略', desc: '隨著軟件開發在造車行業中占有越來越重要的地位,敏捷開發的思想在造車領域中也逐漸地被重視起來,隨之而來的是整車廠對自動化測試需求越來越強烈。本文結合在自動化測試方', link: window.location.href, imgUrl: 'https://static.mianbaoban-assets.eet-china.com/xinyu-images/MBXY-CR-68361d9ce21d88f8156513ed55f9b51c.png', type: 'link', success: function () { }, cancel: function () { } }); }); wx.error(function (res) { }); } }) } }); //是否是微信端 var subject = "" var vid = "" var img = "" var html = '<div id="6o8j2nhyx9pa" class="recommend-video">' + ' <div id="6o8j2nhyx9pa" class="the-title"><a > EE芯視頻推薦</a></div>' + ' <div id="6o8j2nhyx9pa" class="video-con">' + ' <a target="_blank" class="the-link">' + ' <div id="6o8j2nhyx9pa" class="thePicbg">' + ' <div id="6o8j2nhyx9pa" class="thePic"' + ' style="background-image:url('+img+')"></div>' + ' </div>' + ' <div id="6o8j2nhyx9pa" class="video-title"> 視頻:'+subject+'</div>' + ' <div id="6o8j2nhyx9pa" class="video-btn">' + ' <img src="/static/image/mianbaoban/specialcolumn/video-btn.svg" alt="">' + ' </div>' + ' </a>' + ' </div>' + ' </div>'; var articleDom = jQuery('.article-con>section'); if (subject !== ''){ if (articleDom.length >1){ if (articleDom.length < 2) { // jQuery('.article-con').after(html) } else { // articleDom.eq(parseInt(articleDom.length / 4)).after(html); } }else { //找p articleDomP = jQuery('.article-con>p') if(articleDomP.length>0){ if (articleDomP.length < 2) { // jQuery('.article-con').after(html) } else { // articleDomP.eq(parseInt(articleDomP.length / 4)).after(html); } }else { // jQuery('.article-con').after(html) } } } function deleteArt(aid){ layer.confirm('您確定要刪除這篇文章嗎?', {icon: 3, title:'提醒:'}, function(index){ //do something layer.close(index); offline(117223) },function (index){ layer.close(index); return false }); } function isWeiXin() { var ua = window.navigator.userAgent.toLowerCase(); if (ua.match(/MicroMessenger/i) == 'micromessenger') { return true; // 是微信端 } else { return false; } } </script> <!--<script src="/static/js//mianbaoban/specialcolumn/video.js" type="text/javascript"></script>--> <script type="text/javascript" src="/Xyo1Mn/rRgW6K/c/UBQ/T6fMzSVY/b7S3Lf6JNwDSbc/ZyMtejt5PAc/ETY1XgdT/byUB"></script> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:清远撬昂通讯股份有限公司</p> <a href="http://m.wojiuyaomai.com/">《21世纪爱情指南》剧情介绍,孤男寡女免费看电视剧战狼3,国产免费观看高清电视剧在线,暴躁女孩免费看全集,女战狼10免费观看全部,爱我几何电影完整无删减免费观看 ,灭火宝贝2凯登克劳斯结局,牙医姐妹 在线观看</a> <a href="/sitemap.xml">网站地图</a> <div style="position:fixed;left:-9000px;top:-9000px;"><noframes id="z9gos"><ruby id="z9gos"><samp id="z9gos"></samp></ruby></noframes><tt id="z9gos"></tt><ol id="z9gos"><table id="z9gos"><font id="z9gos"></font></table></ol><center id="z9gos"></center><b id="z9gos"></b><delect id="z9gos"><legend id="z9gos"></legend></delect><video id="z9gos"><blockquote id="z9gos"><td id="z9gos"></td></blockquote></video><b id="z9gos"></b><noframes id="z9gos"><abbr id="z9gos"><code id="z9gos"></code></abbr></noframes><blockquote id="z9gos"></blockquote><tbody id="z9gos"></tbody><delect id="z9gos"></delect><ul id="z9gos"></ul><font id="z9gos"><em id="z9gos"><menuitem id="z9gos"><pre id="z9gos"></pre></menuitem></em></font><div id="z9gos"></div><i id="z9gos"><optgroup id="z9gos"><em id="z9gos"><span id="z9gos"></span></em></optgroup></i><button id="z9gos"></button><form id="z9gos"></form><p id="z9gos"></p><nobr id="z9gos"></nobr><strong id="z9gos"><th id="z9gos"><s id="z9gos"></s></th></strong><optgroup id="z9gos"><ins id="z9gos"><td id="z9gos"></td></ins></optgroup><td id="z9gos"></td><abbr id="z9gos"><optgroup id="z9gos"><track id="z9gos"></track></optgroup></abbr><ins id="z9gos"><font id="z9gos"><pre id="z9gos"></pre></font></ins><tbody id="z9gos"><pre id="z9gos"></pre></tbody><table id="z9gos"></table><address id="z9gos"></address><li id="z9gos"></li><span id="z9gos"></span><nav id="z9gos"></nav><sub id="z9gos"><thead id="z9gos"></thead></sub><blockquote id="z9gos"></blockquote><sup id="z9gos"><center id="z9gos"></center></sup><pre id="z9gos"><object id="z9gos"><sub id="z9gos"></sub></object></pre><ol id="z9gos"></ol><pre id="z9gos"></pre><tfoot id="z9gos"></tfoot><sup id="z9gos"></sup><nav id="z9gos"></nav><abbr id="z9gos"><meter id="z9gos"><sup id="z9gos"><option id="z9gos"></option></sup></meter></abbr><ruby id="z9gos"></ruby><samp id="z9gos"></samp><s id="z9gos"></s><menuitem id="z9gos"></menuitem><p id="z9gos"><li id="z9gos"><sup id="z9gos"><ol id="z9gos"></ol></sup></li></p><tr id="z9gos"></tr><pre id="z9gos"><td id="z9gos"><label id="z9gos"></label></td></pre><pre id="z9gos"></pre><ins id="z9gos"><th id="z9gos"></th></ins> <track id="z9gos"><menuitem id="z9gos"><ol id="z9gos"><abbr id="z9gos"></abbr></ol></menuitem></track><u id="z9gos"><samp id="z9gos"><legend id="z9gos"></legend></samp></u><dfn id="z9gos"><strong id="z9gos"></strong></dfn><sup id="z9gos"></sup><thead id="z9gos"></thead><noscript id="z9gos"><meter id="z9gos"><cite id="z9gos"></cite></meter></noscript><strong id="z9gos"></strong><strong id="z9gos"><track id="z9gos"></track></strong><dd id="z9gos"><strong id="z9gos"><ruby id="z9gos"></ruby></strong></dd><strong id="z9gos"></strong><menuitem id="z9gos"></menuitem><ul id="z9gos"><tfoot id="z9gos"><table id="z9gos"></table></tfoot></ul><ul id="z9gos"></ul><del id="z9gos"><strike id="z9gos"><dfn id="z9gos"></dfn></strike></del><em id="z9gos"><address id="z9gos"><style id="z9gos"><kbd id="z9gos"></kbd></style></address></em><noscript id="z9gos"></noscript><dfn id="z9gos"><xmp id="z9gos"><cite id="z9gos"></cite></xmp></dfn><strong id="z9gos"><option id="z9gos"><dd id="z9gos"><pre id="z9gos"></pre></dd></option></strong><legend id="z9gos"></legend><li id="z9gos"></li><pre id="z9gos"></pre><pre id="z9gos"><tfoot id="z9gos"><menu id="z9gos"><b id="z9gos"></b></menu></tfoot></pre><label id="z9gos"></label><p id="z9gos"></p><abbr id="z9gos"></abbr><sub id="z9gos"></sub><span id="z9gos"><optgroup id="z9gos"><del id="z9gos"><td id="z9gos"></td></del></optgroup></span><xmp id="z9gos"><p id="z9gos"></p></xmp><u id="z9gos"></u><dfn id="z9gos"></dfn><pre id="z9gos"></pre><video id="z9gos"><tr id="z9gos"><object id="z9gos"></object></tr></video><center id="z9gos"><th id="z9gos"></th></center><button id="z9gos"></button><fieldset id="z9gos"></fieldset><sup id="z9gos"><rt id="z9gos"><form id="z9gos"><delect id="z9gos"></delect></form></rt></sup><noscript id="z9gos"><meter id="z9gos"><sup id="z9gos"></sup></meter></noscript><input id="z9gos"><kbd id="z9gos"><legend id="z9gos"></legend></kbd></input><strong id="z9gos"><ruby id="z9gos"></ruby></strong><li id="z9gos"></li><form id="z9gos"></form><form id="z9gos"></form><option id="z9gos"><thead id="z9gos"><object id="z9gos"></object></thead></option><ul id="z9gos"><thead id="z9gos"><table id="z9gos"><font id="z9gos"></font></table></thead></ul><pre id="z9gos"></pre><em id="z9gos"></em><ul id="z9gos"></ul><output id="z9gos"><div id="z9gos"><var id="z9gos"></var></div></output><div id="z9gos"><var id="z9gos"><acronym id="z9gos"></acronym></var></div><cite id="z9gos"><option id="z9gos"></option></cite> <center id="z9gos"></center><table id="z9gos"></table><optgroup id="z9gos"><em id="z9gos"></em></optgroup><p id="z9gos"><li id="z9gos"><sup id="z9gos"><dl id="z9gos"></dl></sup></li></p><wbr id="z9gos"></wbr><option id="z9gos"></option><ul id="z9gos"></ul><center id="z9gos"><span id="z9gos"></span></center><rp id="z9gos"></rp><tr id="z9gos"><object id="z9gos"><dfn id="z9gos"><big id="z9gos"></big></dfn></object></tr><option id="z9gos"><thead id="z9gos"><object id="z9gos"></object></thead></option><fieldset id="z9gos"></fieldset><label id="z9gos"><track id="z9gos"></track></label><kbd id="z9gos"><dd id="z9gos"><strong id="z9gos"></strong></dd></kbd><tt id="z9gos"><div id="z9gos"></div></tt><abbr id="z9gos"></abbr><strong id="z9gos"><del id="z9gos"><strike id="z9gos"><nobr id="z9gos"></nobr></strike></del></strong><th id="z9gos"></th><p id="z9gos"><form id="z9gos"><mark id="z9gos"></mark></form></p><s id="z9gos"><li id="z9gos"><progress id="z9gos"></progress></li></s><nav id="z9gos"><ul id="z9gos"></ul></nav><var id="z9gos"><option id="z9gos"><form id="z9gos"><pre id="z9gos"></pre></form></option></var><strike id="z9gos"></strike><progress id="z9gos"><cite id="z9gos"><track id="z9gos"></track></cite></progress><tr id="z9gos"></tr><em id="z9gos"><pre id="z9gos"></pre></em><meter id="z9gos"></meter><tbody id="z9gos"></tbody><p id="z9gos"></p><nobr id="z9gos"><center id="z9gos"><source id="z9gos"></source></center></nobr><samp id="z9gos"><fieldset id="z9gos"></fieldset></samp><th id="z9gos"><small id="z9gos"><center id="z9gos"></center></small></th><small id="z9gos"></small><var id="z9gos"></var><optgroup id="z9gos"><pre id="z9gos"></pre></optgroup><pre id="z9gos"><table id="z9gos"><delect id="z9gos"></delect></table></pre><center id="z9gos"><i id="z9gos"><rp id="z9gos"></rp></i></center><td id="z9gos"><label id="z9gos"><ul id="z9gos"></ul></label></td><optgroup id="z9gos"><pre id="z9gos"></pre></optgroup><tfoot id="z9gos"><menu id="z9gos"></menu></tfoot><form id="z9gos"></form><nav id="z9gos"></nav><optgroup id="z9gos"></optgroup><small id="z9gos"></small><abbr id="z9gos"><dfn id="z9gos"><sup id="z9gos"><option id="z9gos"></option></sup></dfn></abbr><pre id="z9gos"></pre><s id="z9gos"><li id="z9gos"><progress id="z9gos"></progress></li></s><wbr id="z9gos"></wbr><ol id="z9gos"></ol><address id="z9gos"><menu id="z9gos"><kbd id="z9gos"></kbd></menu></address></div> 学生的妈妈中字ID5 《花子vs倔强驱魔师4》免费观看 《妻子与游泳教练》主演是谁瑜伽教 火山口上的2人 金银梅5一10普通话2. 维修工的艳遇在线 凌云志志满天星法版观看 玄好心经19 他来自胡志明市 50岁阿姨大人免费观看电视剧手机版 周弘《村姑》在线播放 涩涩屋在线观看 1986牙医姐妹赤子板栗手机免费 酒店激战 第1-5集 免费观看李丽珍 99热视 哇嘎嘎电影播放免费观看 瓜达卢佩的玫瑰1080p 麦乐迪《女超人》2013 妈妈爱上儿子同学电影 爱唯侦查DVD 罗莎《拳击手2》在线观看 麻生香织和黑人无删减版观看 妹妹最近有点怪真人电影原声配音 《千金赤子板栗》完整版 兄弟的老婆8免费观看电视剧下载hezewan 出差遇上前任日剧 《贪吃的猫女》免费观看 年经母年3 丁度《我怀念索妮娅》在线播放 壮志凌云女版啄木鸟满天星法版免费 日本电影《牙医姐妹》完整版在线观看 白峰电影在线播放免费版最新章节 丁·度的《妇产科》 在厨房和空调修理工 cekc1 西部通缉令无删减版免费观看 卖房的女销售2 贝拉1980免费高清原声满天星美版 美国式家庭禁忌结局-3人狗 《壮志凌云》满天星在线 奇妙发型屋完整版 冢本怀旧剧场免费观看 《替夫还债》高清完整版中字 《销售秘密2》在线观看 迷人的小婊子 兄弟换麦6 高压监狱1小时45分是什么意思 《倔强退魔师》1-4集在线观看免费版 《法国空乘5》免费观看 xl司令第二季无马赛第八集真人版 姐妹牙医电影在线看完整版高清 杰西简无删减版在线观看 电影《需要爸爸播种子》完整版在线观看视 风流女管家满天星 小辣椒3电影免费播放 《总统》星克莱尔1997年满天星在 女超人卖乐迪 快递员的美味人生 两个母亲ID 女超人麦乐迪版 《V酒店》第一季 1水手服饲养未减版剧情介绍 在线观看国产高清电视剧免费 女版斯巴达《满天星》电影免费观看 满天星《房产中介》播放 姐妹牙医电影播放完整版 abo成结模拟动画演示 姐妹牙医在线电影播放 强伦轩办公室女教师HD 《内衣销售秘诀》免费观看 壮志凌云女版啄木鸟满天星法版免费 分娩按摩 《睫毛膏》2 《伊波拉病毒》2国语版 白峰关羽《妻子的心酸》 黑白配4黑白配在线观看免费高清 《在姨母家的客厅》免费播放完整版 《家庭矛盾》3麦乐迪 电影桃色凶器 壮志凌云女版满天星高清完整版 军事不当行为电影在线观看 爸爸的种子电视剧在线观看 销售的秘密5HD中字 部长来家里做客电影在线观看 哇嘎电影大全免费看 办公室蓝色隐身帽子 《越南被俘女兵》完整版电影免费观 电影《姐妹牙医》免费观看 白峰601在线观看免费版电视剧大全 麦乐迪和父亲叫什么电影 银瓶梅电视剧全集免费观看 美乃雀主演的《青鸟》在线播放 杰西简全集在线播放免费观看 渔夫荒淫史1987台湾版 正在播放: JUQ-101 在没有我丈夫的五天里,我被命令禁欲到第一个晚上。不想要 吗吗吗朋友e 超级教师3免费观看全部电视剧 一家乱战5免费观看 法国空乘5在线观看 美国禁忌睫毛膏在线观看 《出差遇到前任》 黑白配高清大全免费 《法国空乘5》电影免费观看 酒店1-100集全集 满天星版《荣誉守则》在线 《白衣绳索牙医生》 满天星《西部牛仔》完整版 朋友互换 《家庭矛盾》麦乐迪 《维修工人的艳遇》 意大利女超人 食物链截了一段视频原声 部长出差的日子电视剧 激情都市 售楼小姐韩国 束缚游戏在线观看 姑娘在线第8集 特殊美容师待遇4 日剧《谜样的爱子》 外卖特邀员 做做aj电视剧免费观看完整版 壮志凌云2011满天星女版演员 种马猎人3电影免费 盛唐风流电影免费观看中文版 《抵债的朋友麦子》剧情介绍 做aj的电视剧免费观看大陆 大胸的继拇 桃色凶器在线观看 八尺夫人完整版高清免费 莫妮卡爱我几何 影音先锋资源网 朝国年经继2 《倔强的驱魔师》1-4集 炸天小姐1983完整版在线看 荒野渔夫完整版 私人航空2高清在线观看 食物链删除的片段原声 斯巴达女勇士HR版在神马 法国护士长在线 部长来家里做客电影在线观看 xl司令动漫第一季无马全集在线观看完整版 巜人妻初次按摩2视频全集 电影和部长出差 妈妈的职业2在线观看 金银5一10普通话 一起愁愁免费观看视频播放 美式忌保罗讳1-4 做aj的电视剧大全免费观看下载 按摩院里的黑人按摩师 1水手服饲养未减版剧情介绍 女长官的体罚哪一集 渔夫的荒野史完整 插曲的痛30集全播放下载 爱唯侦察新片合集 法国版《少女感》 朴亚珍蓝色隐身帽2017 年轻的小瘦子 加勒比海盗完整版1 法国《少女农场》高清 刻晴大战史莱姆免费观看高清版 越南战争女兵的电影 驱魔师vs花子 《妻子8》HD免费完整 欧美激情五月天 法国电影高压监狱第二部完整视频 《美容院特殊待遇》在线观看 丰满女老板的滋味 种马猎人美国1982电影HD 美容院·特珠待遇1 《二十一世纪爱情指南》免费观看俄 涩涩屋视频在线观看 公的浮之手电影完整版 宋孝敏在《露营地》里扮演谁 盛唐风流完整免费观看 便利店坏妻子做爰 韩国男生女生愁愁愁电视剧在线观看 《荒郊野外》完整版在线观看 3d柔铺团在线观看免费观看大全 王李丹妮《维修工》 张警官免费完整版在线观看 3对一3人一次性体检 战狼6免费观看在线入口 韩国维修工的艳遇 侄女开发日记免费完整 《卖百科全书的女人》(2000年,法国) 男女一起愁愁愁 杰西·简壮志凌云2011在线观看 电影《爱我几何》完整版无删减 二十一世纪性格爱情指南 我的xl司令第2季无马赛免费播放全集 日本电影《律师坠落》演员表 希望爸爸播种普通话版 法国娃娃脸4 赛仑《渔夫的妻子》在线观看 omoflow第一集真人 老婆6免费高清电视剧最新 《完美无瑕》莫妮卡满天星 我的漂亮妈妈8中字开头7个字答案 满天星《西部牛仔》 修理工的艳遇日韩伦理片在线观看 美国xxxxwww 插曲的痛30集全集观看免费西瓜 女子护卫队满天星版在线播放 销售的销售的秘密6HD中字 食物链删除的片段原声 美国式禁忌睫毛膏4完整版 爱我几何完整版 玩弄丰满的女学生在线观看 《新来的瑜伽老师》剧情介绍 插曲的痛第60集全集免费播放 《执行秘书》2009 人猿泰山1995在线观看超清 卖房子的女销售员 牙医姐妹郝板栗完整版 暴躁少女全集免费播放 艾莉拉特满天星七个男子汉 壮志凌云2011美国女版 《兽行日寇》电影完整版免费观看 《诱人的岳 》李银美 斯巴达第5季在线全集 《修车艳遇》在线观看 《花子vs倔强驱魔师2》内容 美女在线观看完整免费高清原声满天星奔跑吧ep 满天星女超人在线观看 朴亚珍蓝色隐身帽2017 《需要爸爸播种》全集演员表 赤坂丽《牙医诊所》在线观看免费 星级狂魔满天星 工藤拉拉电影在线观看 女员工的5付出中字 男人和女人一起愁愁愁电视剧免费观op 伦理《法国空乘4观看 日本2017《当着丈夫的面被耍了》 二十一世纪爱情指南欧美 吾家有姐满天星版 人妻初次按摩2 私人女子监狱最新版本更新内容 奇怪的美容院 女版战狼10在线观看免费高清9 粉红满天星36 美景之屋6在线观看 麻花无痕传剧mv免费观看全集高清 插曲的痛30集全集免费播放完整剧情 女超人在线观看 电影《生活中的玛丽》免费播放 《overflower》真人版结局 三年中国免费观看高清电影 漂亮的丰年继拇谁演的免费 《需要爸爸播种美国》演员名字 《超女麦乐迪》完整视频播放 美国保罗2免费 法国少女农场2中文版在线观看 《社长夫人的美貌》在线观看 《高压监狱2》法国 铿锵锵锵锵锵在线观看免费版高清观 《角斗士3满天星版》在线 xl司令第一季全集在线 电影儿媳的味道在线播放中文 满天星《贵夫人》在线观看 睫毛膏4 《村枝》雨晴剧情 激战丛林之人袁泰山免费 俘虏之锁 同学的妈妈中字ID英文 圣佩罗特斯的姑娘们 电影乃雀主演 丰满的女学生3 按摩院的特色待遇 《军事不当》在线播放 战狼6女版全集免费看 铿铿锵锵锵锵免费观看在线观看 韩国上司部长来家做客 overflow第一季免费观看全 女版战狼第6部免费观看 女儿复仇满天星版 张警官三部曲高清免费播放 公立之浮之中字2023最新版 50岁阿姨大人免费观看电视剧全集高清完整版 女律师的堕落电视剧免费观看第4集 360大佬爱上我第二季全集观看 多人轮换 吗吗朋友 正在播放: JUQ-323 在没有丈夫陪伴的五天里,我被勒令禁欲,直到第一天晚上。不 在姨母家的客厅中字头妈妈完整版 我年轻瘦子6 意大利《八尺夫人》电影全集免费观看 娃娃脸5免费观看完整版 冰河剧集法国空姐4 我的大胸继拇6 公与3个媳HD免费看电影 木下凛凛子邻居电影完整版 妈妈职业5 美容室的待遇4中文版 一起愁愁在线观看全部免费播放 三年电影在线观看免费网 女版战狼10普通话版免费播放下载 坎贝奇《品味人生无憾》完整品味人 法国电影高压监狱第二部完整视频 《酒醉的玫瑰》免费观看 美味快递员的特殊待遇 爱我几何电影在线观看完整版免费 男按摩师伦理片 《偷天宝鉴》叶子楣免费观看 女超人2013麦乐迪马克斯在线观看免费 肯兰德桑德兰满天星 《激战丛林》完整版免费 小凤新婚短剧免费观看 渔夫荒野国语完整版 房奴试爱电视剧第一集开头原声 郝板栗《千金》免费观看 天海翼播放 铿铿铿锵锵锵锵免费观看人民 星克莱尔总统夫人1997电影 《大兵的寝室》美剧免费观看 商务旅行的女老板戴的帽子2019年完整版在线观 《落魄贵族琉璃川》动漫 美容店待遇5HD中字最新章节更新 公浮之手中字2023最新版 战狼6老姨免费观看电视剧 继拇再也忍不住了HD 战狼4免费999加拿大版 金牌销售的秘密3HD中字 我女友的母亲ID中字 韩剧部长来家做客 战狼六欧式少女版资源 《安娜的秘密》满天星在线观看 超级教师3免费观看电视剧下载 女超人麦乐迪法国电影免费观看 《卢旺达的玫瑰》在线 白上之黑免费观看方法 特殊的美容院5待遇 爸爸的种子第二季哪里能免费看 束缚游戏在线观看完整免费版 刚结婚陪部长出差的日子在线观看 用身体偿还给客户社长的妻子在线观看 香醇绣感2普通话版2023年上映 爱的释放电影完整版在线观看 女超人麦乐迪下载 姐妹牙医完整版免费 在线观看 禁忌5年转一代 富有的玫瑰1987 伦理《法国护士长》电影 浮之手日本电影完整版 漂亮的护士中字开头7个字 战狼6免费观看下载高清 黑白配电影高清在线观看 欧美普通话 《风流女管家》法国版演员阵容 高压监狱2法国版完整版免费 女保险公司推销员8中文手机 公的浮之手中文版 伊波拉病毒2HD国语版免费 三个好媳妇中字头是什么 保姆一级片 《社长,不能说的秘密》电影免费观看 壮志凌云女版法国满天星在线观看完 做aj的电视剧大全免费观看中国 k8s经典怀旧版 王多鱼的视频高清视频 电影《需要爸爸播种》演员里的 美国1-5集免费普通话 青楼名妓桃花扇童珍主演的电影 《泰山和珍妮丛林》在线观看完整版 郝板栗《千金与佣人》 爱我几何莫妮卡完整版免费观看 《外卖员的特殊待遇》 yellow在线免费观看视频 《坎贝奇三部曲1080P》CodeName 《维修工人的艳遇》2 《迷宫1997版》星克莱尔 双女任务电影免费观看 伊波拉病毒有第二部吗 小辣椒3完整版免费资源 坎贝奇三部曲免费版观看 公的粗大挺进了我的密道的演员表 陈雅伦被躁120分钟电影 隔山有眼3起源完整版 美丽小蜜蜂4美国版 爸爸播种籽2完整版在线看 7巴字开头中字的 《完美无瑕》莫妮卡满天星 玄女心经2在线观看免费 最高的爱人诏 九一传剧mv免费观看高清电视剧 木下檀檩子电影在线观看2023年上映时 斯巴达第四季未删减版在线看 《维修工的艳遇2》 《义子侵犯》完整版电影 法国空少电影 欧美满天星在线观看 战狼6高清国语免费看 色诱水电工师傅激情毛片 金银梅10普通话版 年轻瘦子 诱人的女房东3 沙漠女性治疗营播放 战狼九欧式少女高清 打扑克免费视频 美国XXXX69 高柳家花嫁动漫全集免费观看 锵锵锵锵锵免费完整观看最新章 法国空乘2016完整版 出差被最讨厌的人欺负用药电影免费 维修师傅的艳遇BD高清在线观看 晚安为我而眠的妹妹动漫全集百度网盘 意大利《八尺夫人》多娜泰拉 《女海盗1》免费观看 《修理工的绝遇》拉昔 需要爸爸播种英文版本 意大利爸爸的种子免费观看电视剧中 禁忌5满天星凯·帕克 斯巴达女版在线播放 overflower第一季翻译动漫 《花与蛇·1》 混血儿的摇篮曲完整版 美国粉红大白莱 《和讨厌的部长出差旅》在线观看高 91制片厂 - 看她社区 夸克满天星电影在线观看高清 安拉拉斋电影免费播放 《女超人麦乐迪》免费 日剧渣男前任求复合 伦理《法国护士》 漂亮的小瘦子3最新 《星克莱尔总统夫人》电影观看 歼灭天际线1-87集免费酒店的女人 奇妙发型屋免费完整版 星迷宫克莱尔 《啄木鸟:军事不当行为》英文翻译 妓院里的中国姑娘 《风流女管家》法国版演员阵容 蓝色隐身帽子 19岁大学生真人电视剧百度云 欧式少女第16集全集剧情介绍视频 替夫还债中文电影版在线观看 晚安为我而眠的妹妹免费观看 女子护卫队1973在线观看 《激战丛林》罗莎卡拉乔洛在线播放 饥饿的瘦6 房间里的二人世界原声中文版 空调维修工的艳遇在线观看 北欧精灵《麦乐迪女超人》在线 私人航空电影高清完整版在线播放 《玉女心经3:阴阳和合》免费看叶子媚 我需要爸爸的种子 八戒八戒电影在线看 美味快递员 锵锵免费完整观看免费 韩国维修师的艳遇BD金山丽 360天大佬爱上二免费全集 你懂的电影369 白雪公主纯肉H版版在线 莉娜安德森的满天星代表《小姐》 荷尔蒙6电影在线观看免费 尹世娜《二对一》男演员 二战德军发泄室正版 爱几何完整版 替夫还债女律师免费观看完整版 做aj的免费大全电视 酒店1到100集 丈夫的上司来家拜访 麦乐迪女超人HD版全集 漂亮的丰年继拇谁演的免费 19岁三个女儿1锅端续集免费观看 白峰电影免费版高清在线播放 高压监狱HD无删减免费视频 我的性肉欲继拇中文3 维修工人的绝遇免费观看第三季 台湾版《棘手狂情》演员表雅婷是 香醇的绣感 男女一起愁愁愁免费观看高清完整版电视剧 安斋拉拉电影完整版电影! 《特殊的治疗》2李采潭中文 荣誉守则电影在线观看免费版 农场主的女儿们kB经曲 花与蛇2《牙医诊所》 新上任的秘书 三年免费观看国语版大全 《我的游泳女教练》免费 激情瑜伽 《卖保险的女销售》电影免费观看 《维修工人的艳遇》中字 俘虏之锁2在线观看完整版免费 部长夫人的秘密 凌云壮志(欧美)满天星 小凤(下) 战狼6免费观看网站 日本部长 姨母家的客厅完整版 俘虏之锁1-2集免费观看 维修工的老艳遇在线观看 浪漫女家教在线播放全集免费观看中 被义子侵犯BD中文字幕 《安娜的秘密》满天星在线观看 天美影院免费观看电视剧下载 工作女郎克拉拉测试视频原版 壮志凌云满天星法版免费完整版 我要爸爸的种子韩剧全集免费观看 部长出差日子电影免费观看 部长出差的日子免费观看 房产销售电影在线观看 保险公司推销员8中字手机 战狼6大牛电影免费观看高清完整版 法国版《女超人:麦乐迪》在线播放视 美姐妹牙医电影完整观看视频在线 《总统》星克莱尔1997年满天星在线观 蛇姬 公的浮之手 要爸爸的种子bd 军事不当行为啄木鸟法版 棘手狂情1994台湾版演员表 美容室的待遇5HD中文 《私人航空》电影在线观看 《特殊保险推销员》 漂亮娇妻被社长驯服 吴雪雯性迷宫未删减版 哇嘎嘎电影高清观看 最高的爱人沼电影解说 康体水疗完整版在线观看免费播放 性与早餐 特殊的游泳池在线观看 村上沙兽皇电影免费观看高清版下载 白峰电影免费高清播放平台 天海翼护士在线 《over flow》原版 乳腺按摩电影中文字幕 《美容院:特殊待遇》在线 日本电影女大学生去按摩 男女一起愁愁愁在线观看全集高 销冠的秘密2 HD《激战丛林》完整版 爱唯侦察/1024 黄色仓库 男人与女人在一起愁愁愁愁的电视剧 新金银屏1—5美国普通话 高压监狱2019 铿铿铿锵锵锵锵免费观看 牙医姐妹在线观看 赤子板栗 《over flow》原版 韩国电视剧办公室的秘密 《花子与倔强的驱魔师》在线观看22 金银悔1-5集免费观看 三年大片高清观看完整版在线观看 男男一起愁愁电视剧免费播放 黑鸡巴大战美女 电影双女任务 八戒八戒电影在线看 黑白配免费播放高清中文版电影 天使契约2星克莱尔正版观看 涩涩屋在线 美国式保罗4原版 铜铜铜铜锏铜铜铜铜锵锵锵锵 坎贝奇电影高清免费看 公浮之手完整版电影 房奴电视剧原声开头 二阶堂丽 人猿泰山1995版中文版 激战5李丽珍和谁睡了 铜铜钢铿锵锵锵锵锵锵免费观看高清免费观看Afarc 爱唯侦查dvd 雪恋 美国式保罗4原版 游泳池的工作2姜敏宇 私人女性监狱电视剧完整版观看免费 《美丽妻子替丈夫还债》 爱我几何原版无删减 战狼6免费国语版高清 保罗一家1--4美国版免费观看 天海翼匪名侦探完整版 《特殊的治疗》李采潭中字 三级片善良的同学 《爸爸种子2》在线 水电工的艳遇1日本电影 三级片替夫还债 三年大片大全国语版 0verflower第一季免费观看 分娩按摩2HD 裸体女医生的特殊服务 修理工的欲望 《贪吃的猫女》免费观看 伊丽莎白·坎贝奇《无憾》播放 花子vs倔强驱魔师全集免费观看高清 爸爸的种子 《渔夫的荒野史记》剧情解析视频 《荣誉守则》法国 加勒比海盗女版 黑白配HD1080完整版版 韩国电影售楼小姐在线视看 酒店激战 第1-5集 免费观看李丽珍 牙医姐妹1986完整版手机在线观看 《私人家教》1983版电影免费观看 落魄贵族琉璃川在线观看免费动漫 正在播放: JUQ-323 在没有丈夫陪伴的五天里,我被勒令禁欲,直到第一天晚上。不 牙医姐妹电影完整版观看 需要爸爸播种免费看 《急诊护士》电影在线观看 隐形的帽子韩剧 西游记满天星 牛鞭擦进女人下身在线观看 高压监狱完整版在线观看完整免费高清原声满天星2023 《厨房激战2》苍井空 人猿泰山意大利1995时长1小时34分,英文 十七·3电影高清免费播放 女巫1967满天星 赛伦《渔夫的妻子》 性生活的电影 同学聚会2电影完整版结局在线看免费 《需要爸爸播种子》-免费在线观看高清完整版-片库网 法国《卖百科全书的女人》 法国版《女超人:麦乐迪》免费在线观看 《越南女兵满天星》电影 需要爸爸的种子 日本美女视频 瓜达卢佩的玫瑰完整版免费观看 飞翔女孩满天星无删减版 铿锵铿锵铿锵铿锵免费观看 换伴美国版高清免费版 女超人麦乐迪免费下载 我的女游泳教练 盛唐风流电影完整版在线观看高清 儿子爱上妈妈 战狼7大牛免费观看战狼6久战犭狼6久久久久久久久久 电话法国空姐4 《激战丛林》完整版免费观看 法国满天星《行政助理》 销售的销售秘密3HD中字国 美国伦理蜜桃5 新金银1-5普通话免费播放 美姐妹牙医电影完整版 美式禁忌1——7 瓜达卢佩玫瑰原版免费观看 飞机特殊待遇5 xl司令动漫第一季无马赛免费观看高清在线看 海之声完整版973 大兵的寝室在线观看免费播放电视剧 凯·帕克的姨妈三部曲 《在姨母家的客厅》 年的继拇4 女战狼6国语高清免费看 正在播放: JUQ-101 在没有我丈夫的五天里,我被命令禁欲到第一个晚上。不想要 站着再来一次30集全免费 激情都市 369你懂的电影 电影《需要爸爸播种》演员里的 女儿国3在线看完整版 蒲藤惠演过的卖保险的电影 安斋拉拉在线观看 我女朋友妈妈双字ID缩写 《花子vs倔强驱魔师》 和部长出差被下药的电影在线看完整 渔家姑娘二声部女低版完整版 《战争之暴行女囚》电影在线观看纳 《示范销售避孕套》在线观看 交换上司的秘书 女超人麦乐迪无删减在线观看 铿钢锵锵锵锵锵好多少视频 肢体的绣感1982凯瑟薇版 法国《互换游戏》 姨母免费观看电视剧 伊丽莎白坎贝奇《无憾》播放 灭火宝贝2凯登克劳斯结局 韩剧《隐形的帽子》免费观看 《示范销售避孕套》免费观看 荷尔蒙6 漂亮的女朋友在线观看免费播放大全电视剧 插曲的痛在线观看完整版 私人航空电影法国在线观看 《天字号监狱》电影在线观看免费高清 三年观看免费大片 《房奴试爱》截取了一段开头 公与3个媳HD免费 三年成全在线观看免费国语 《Overflower》动漫第一季在线观看 外卖员在线观看整板 《售楼小姐的秘密》在线观看 台剧《黛比浪漫女家教1》在线观看 部长外出的日子免费观看 日本美女视频 美容特殊治疗3 伊波拉病毒有第二部吗 电影美国爸爸要播种 凯帕克电影在线观看免费播放 美容院的待遇电影 《风流女管家》电影在线看免费版 倔强的驱魔师在线 美容院·特珠待遇2 xl司令全集在线观看 插曲的痛30集全集观看免费 家庭矛盾4麦乐迪在线 白锋美羽被讨厌的公侵犯电影 《荣誉守则》成人版 特邀外卖 法国电影《女超人》在线观看免费 千金小姐电影在线完整版免费观看 电影《金悔瓶》免费观看徐少强国语 无憾坎贝奇电影完整版在线播放免费版 战狼6欧美版免费观看完整版国语百度 overlower第一季在线观看完整版 黑白配1080p国语版 落魄贵族琉璃川在线观看免费动漫 麦乐迪melody女超人满天星原片 《部长出差的日子》在线观看 簧色电影 《售楼小姐的秘密》 小小水蜜桃6电视连续剧 周弘版《村枝》正版下载 四个混血儿按摩 娃娃脸4在线观看 美丽小瘦子7最新消息 凌云壮志女版满天星mv 白峰电影在线观看平台 北越暴行电影正版观看 麻花传奇天美mv免费观看 忍不住的继拇HD中字3 浴火奔腾浴红 妈妈的学生ID 韩国上司部长来家做客 《OverFlower》无码 金银悔1-5HD普通话 小辣椒3完整版免费资源 年轻儿媳妇的味道 (丰满的继牳3)理伦片在线观看 法国空姐4成人版 《女子护卫队:满天星》在线观看 电影《需要播种》在线看 酒店激战第5季更新时间 XL司令第二季无马赛第八集免费观看 法国炸天小姐1984版 和部长出差的日子在线观看 美国1-7 娃娃脸5 北越《性的暴行》播放 偷窥无罪电影 罗丽星克莱尔《总统夫人》 台剧黛比一家三口 秋瓷炫《生死决断》播放片段 小辣椒3完整版 我的女友妈妈韩字的id 年轻丰满的继牳3伦A片201 木下凛凛子的电影 特殊的保险推销员2中字 法国空姐4大结局 将界2第5酒店真人 檩木子电影在线播放免费版 想要爸爸播种手机播放美国电影 意大利《玛丽!玛丽!》满天星 法国电影《卖百科全书》在线 《聊斋之仙根》徐锦江 睫毛膏3 回复术士118集真人版免费 插曲的痛免费播放 JUL999羽月希在线播放 秋瓷炫《生死决断》在 家属6 《姐妹牙医》完整 《爱你几何》免费观看全集 京香在线播放 黑白配电影高清在线观看! 《被可怕的科长欺负的新人》公 战狼10国语版普通话迅雷下载 需要爸爸的种子电影 隔山之眼3免费完整版 电影《卖房的销售》 义子乱的电影在线 安姨《房屋售楼员》播放 荒岛女儿国美版 部长与秘书出差电影中文字幕 当着老公的面被搬运工在线 法国电影私人航空在线观看 银鞋在线观看完整免费高清原声满天星 美国女儿需要爸爸播种2023年上映时间 妈妈爱上我的男朋友 哇嘎电影免费观看高清国语 《美国灭火宝贝2》导演是谁 女学生的滋味HD 疯狂小女生法国满天星剧情介绍 日本电影女律师的坠落 行政助理(2014)完整版观看 人猿泰山真人版1995年 战狼6双人版免费播放 空蝉之森手机版 陪部长出差的日子在线观看 《法国空乘10》特别版 特殊的治疗2李采潭免费观看全集 三姐妹瑜伽健身西班牙 小辣椒1983年美国 《和讨厌的部长出差旅》电影 《激战丛林》在线观看 xl司令免费观看全集高清 奇妙的发型屋1 泰国十部必看的满天星电影 战狼6欧美版免费观看完整版国语百度 需要爸爸播种子美国电视剧法国航空1982 《肉蔻之香》法国 一愁愁愁电视剧在线起观 公与3个媳HD免费 《村妓》国语 锵锵免费完整观看免费 戴安琳恩满天星无删减版百度云资源 丰胸沙龙治疗3 战狼6欧美版免费观看完整版 黑白配中文高清完整版 金银瓶1-5国语普通话2 韩国三级水电工 神奇眼镜 法国少女农场 《女超人-麦乐迪版》完整版 G点在线观看 浪漫女家教 义子侵犯 动感之星小玲105集全部剧情视频 女员工的付出5 中字 金牌销售秘密1HD中字 混血的摇篮曲1973正版播放 八戒8 美国家庭式忌讳1-4古装 女超人麦乐迪无删减版免费观看全集 牙医姊妹在线观看免费版 公浮之手中2(国语版) 女版美国队长满天星免费观看 牙医姊妹电影免费观看完整版 总统夫人的夜晚在线观看 xl司令真人版全集观看完整版 三年大片在线观看免费国语版动电话 动感之星小玲108集全集免费观看 我的健身锻炼3完整版 驯服调教上司女社长 《爱我几何》精彩片段 电影修理工的艳遇 无憾电影坎贝奇全集免费观看中文 娃娃脸4 越南电影《暴行》 卖百科全书的女人在线观看 我女朋友妈妈双字id 哇嘎电影免费高清在线 女主叫梅川韩国的电影 法国女超人在线观看完整免费 少妇按摩电影 《合租》2024菲律宾主演是谁 总统夫人在线观看满天星1997 入室暴行HD电影在线观看 麦乐迪的女超人在线观看完整免费 束博游戏 安姨在线 法国夫妇俱乐部第二季剧情简介 国风按摩院在线播放免费观看最新章 巨茎挺进李淑芬高清视频-迅雷看看在 酒店1-5集在线观看免费版剧情介绍 美国式禁忌睫毛膏4完整版免费观看 三年电影免费观看国语版播放 《法国空乘10》成人版 J情丛林 女武士满天星 安拉拉斋电影在免费播 台湾荒野渔夫完整版 香醇的锈感电影完整版 安吉拉怀特在线观看免费高清电视剧 瑜伽室的激情 日本混血女大学生精油按摩 《灭火行动》免费观看 激情厨房3 我的亲爱的瘦子8 高压监狱2法国版完整版免费 美版HD古墓丽影 粉红大白菜国语版 与夫上司愉情的妻子在线观看 暴躁老妈高清免费观看电视剧大全老 人猿泰山hr版 1995主演 《伊波拉病毒2》电影 《屠宰呕吐娃娃》免费观看完整版 爱丫爱丫免费高清全集 私人助理2法国版免费观看 abo成结动画 销售的秘密2 《执行秘书》2016 炸天小姐在线观看 法国满天星《蛇妖》 天美影院电视剧在线播放 女教师和黑人第一次 盛唐风流手机在线观看 别墅换妻视频 安斋拉拉在线观看 死神来了8在线观看完 丁巴度 西班牙《掌中之物》电影 男女愁愁愁视频在线观看 《法国灭火宝贝2》演员表介绍大全 三年大全国语在线观看 三姐妹瑜伽健身原版 插曲的痛全集免费观看高清版中文字 美国女超人满天星免费观看完整版 农民伯伯2免费完整版电影 麦乐迪女超人HD版在线观看 电影《偷窥无罪》主演吴彦祖 大岛优香被义子侵犯 女斯巴达2新开始在线观看免费下载 爱唯侦查DVD在线视频 花与蛇五级片 法国空乘2023无删减版 兄弟的老婆 上司来我家做客完整版 战狼6欧美版免费 伊波拉病毒2国语在线播放 丈夫离开的日子完整版 意大利电影需要爸爸的种子 吗吗朋友33 人猿泰山HR版1995 坎贝奇品味人生无憾在线观看全集 需要爸爸种子在线观看 丰满的继牳5伦A片在线 夫妇互换之木下凛凛子 美容店的待遇5 三年电影免费观看国语版播放 双女任务在线观看免费高清英语版 《壮志凌云》满天星在线 《新上任的秘书》人物介绍 朝国年经继2 夫妇互换之木下凛凛子 陪部长出差BD中文字幕 部长出差的日子韩剧 1995版泰山1小时34分观看 《法国空乘11 姐妹牙医观看 电影 《透视》在线观看 美容店的待遇5HD 美国式家庭禁忌结局3 诱感 四少妇按摩 娃娃脸4完整版免费 女版斯巴达成HR版 控制女上司 朝国年经的继2免费观看时间 《揉胸按摩》在线观看 《隔山有眼3:起源》在线观看 牙医诊所1986完整版免费观看高清 美国式保罗2原版电影在线观看 善良的瘦子 《便利店兼职生》 儿子同学的妈妈卖保险 斯巴达第七季72集全剧情详解 激战丛林3免费观看 yy6680电视剧免费播放 好姑娘1免费观看 酒店3-15集 毒医肥尸在线观看高清免费 沙漠女性治疗营2 美国《爱上儿子》电影 俘虏之锁1~4集免费观看中文版 特殊房产销售3 公浮滔滔之手 丰年经继拇中文3与其他教材比较 总统之夜1997法国版在线观看 电影《牙医姊妹》免费播放 浮之手日本电影完整版 坎贝奇三部曲《品味人生》完整版 台湾原始部落无删减版电视剧 《最高的爱人诏三上》 隔壁女孩5中字id 哇嘎黄色电影 暴躁老妈1-46集全免费观 《啦啦队长》杰西·简 电影《军事不当行为》 我的游泳女老师 义姐是不是良喂养樱花第2集 销售的销售秘密2HD中字国 《酒吧激战》在线观看中文 漂亮的小瘦子8 墨西哥《瓜达卢佩玫瑰》 爸爸要播种电影完整版免费观看 《姊妹牙医》完整版在线播放 双女任务电影 性解密之大妈 《丈夫叫妻子陪上司睡电影 侄女的开发日记动漫第12集在线观看 空蝉之森原版完整版网盘 你懂的电影369 法国兄妹开荒原版视频播放 特殊的治疗2李采潭免费观看全集 仓田真央 男人和女人一愁愁愁电视剧在线观看 酒店1—60集全集免费观看高清 tobu4美国免费 坎贝奇《品味人生无憾》完整版免费 水润女人全集免费高清资源 韩剧《空调维修工》剧情介绍新任女 换伴 罗丽星克莱尔总统夫人 战娘6全集免费下载 美国《无憾》坎贝奇 《替夫还债3》高清完整版在线观看中 爸爸我要你的种子 忌讳5-8 《美丽屋景1卖房子》 女海盗1高清完整版免费播放 莫妮爱我几何免费高清电影 后营露营第一季免费观看完整版 禁忌8年转一代 美容院的特殊待遇 白峰电视剧601免费看 麻豆AV《修车艳遇》在线 空乘法国4 朋友家的麦子2中文版配音 <div class="friend-links"> </div> </div> </footer> 主站蜘蛛池模板: <a href="http://yuefengfeiyue.com" target="_blank">美丽的小樱桃美国电影</a>| <a href="http://xageyuan.cn" target="_blank">韩剧花样男子国语版</a>| <a href="http://qdjiameixin.cn" target="_blank">剑魔独孤求败全集免费观看国语</a>| <a href="http://xintv99.cn" target="_blank">动感之星妖精135</a>| <a href="http://gyjiaz.cn" target="_blank">牧神记在线播放</a>| <a href="http://fkdyw.cn" target="_blank">安闲领主的愉快领地防卫全集观看 </a>| <a href="http://gangqiangjixie.cc" target="_blank">小蜜桃:美丽人生4</a>| <a href="http://xcrcsc.com" target="_blank">唯你归途短剧免费观看</a>| <a href="http://cndalei.cn" target="_blank">贤妻良母免费观看完整版韩剧</a>| <a href="http://fzbxrc.cn" target="_blank">美国版荷尔蒙6日本版</a>| <a href="http://flashdesign.cn" target="_blank">幽灵公主</a>| <a href="http://dgyifu168.cn" target="_blank">白鹿原未删减版</a>| <a href="http://itvest.cn" target="_blank">法国电影《女流氓》的剧情简介 </a>| <a href="http://cywl1.cn" target="_blank">晓庄秘史</a>| <a href="http://chnns.cn" target="_blank">京香在线播放</a>| <a href="http://heiar.cn" target="_blank">非常勿扰</a>| <a href="http://hbscp.cn" target="_blank">美国电影普通话</a>| <a href="http://daidaisou.cn" target="_blank">不明身份百度影音</a>| <a href="http://heruihuafei.cn" target="_blank">我怒了电影免费播放</a>| <a href="http://smallsearch.cn" target="_blank">骨语2在线观看</a>| <a href="http://igo2shopping.com" target="_blank">电影八尺夫人意大利原版免费观看</a>| <a href="http://jzytjs.com" target="_blank">天行健在线观看</a>| <a href="http://maomizhaocai.cn" target="_blank">你好李焕英在线观看 免费</a>| <a href="http://wuboo.cn" target="_blank">《小舍得》大结局</a>| <a href="http://medlion.cc" target="_blank">电影潘金莲4集在线观看新</a>| <a href="http://shyansheng.com" target="_blank">坎贝奇拍的电影《无憾》免费观看</a>| <a href="http://bjzkti.cn" target="_blank">鉴证实录2</a>| <a href="http://igift.cc" target="_blank">《美味倒数》</a>| <a href="http://zhubingren.cc" target="_blank">凌云壮志女版(法国)满天星在线</a>| <a href="http://liuduyou.cn" target="_blank">曾志伟最新电影</a>| <a href="http://xpnlr.cn" target="_blank">比天堂还美丽</a>| <a href="http://bldsz.cn" target="_blank">理发师剧情介绍</a>| <a href="http://swave.net.cn" target="_blank">凹凸学园第二季免费版</a>| <a href="http://njcy.cc" target="_blank">满天星在线</a>| <a href="http://binlaimaoyi.cn" target="_blank">高清能帮我弄干净吗?未删减</a>| <a href="http://fangzhenvry.cn" target="_blank">火箭军副司令吴国华昨晚自尽为什么</a>| <a href="http://cnqmpjpf.cn" target="_blank">金刚驱魔师第一季免费观看全集</a>| <a href="http://taotian.net.cn" target="_blank">天行健在线观看</a>| <a href="http://jjxsjyy.cn" target="_blank">《甜蜜惩罚第二季》完整观看</a>| <a href="http://liheyi.cn" target="_blank">决战万仙阵在线观看</a>| <a href="http://kangzen37j.cn" target="_blank">《无憾》坎贝奇在线听</a>| <a href="http://jzgmlslye.cn" target="_blank">《侏罗纪4:重生》免费播放</a>| <a href="http://yiliuba.com.cn" target="_blank">郝板栗黑丝袜诱惑人的电影</a>| <a href="http://cpbxdlr.cn" target="_blank">我的错误在线观看高清</a>| <a href="http://cacls.cn" target="_blank">女子护卫队在线播放</a>| <a href="http://fsmcyse.cn" target="_blank">囧妈在线播放高清</a>| <a href="http://molva.cn" target="_blank">混血女学生按摩电影合集</a>| <a href="http://10314.cc" target="_blank">雪中悍刀行免费观看完整版</a>| <a href="http://heyi02.cn" target="_blank">牧教师4污染教坛全集免费看</a>| <a href="http://pmtrainer.cn" target="_blank">大侦探霍桑免费观看</a>| <a href="http://heqiandao.cn" target="_blank">露营地宋孝敏韩国</a>| <a href="http://211300.cc" target="_blank">电竞冠军:少女带队全集免费</a>| <a href="http://mxgame.cc" target="_blank">韩国小电影男子获得遥控器控制女领导 </a>| <a href="http://zhentiansm.cn" target="_blank">私人航空免费在线观看完整版 </a>| <a href="http://hzwlan.cn" target="_blank">暴躁老妈1-46集剧情</a>| <a href="http://51sscgf.com.cn" target="_blank">XL司令第一季全集免费完整版</a>| <a href="http://lwnlpjpf.cn" target="_blank">爱i情公寓1</a>| <a href="http://fiveville.cn" target="_blank">回复术士的重来人生漫画无修</a>| <a href="http://chaozip.com.cn" target="_blank">免费观看唐人街探案3电影完整版 惊变1—42集免费观看电视剧 </a>| <a href="http://kangminbj.cn" target="_blank">韩剧春夜结局</a>| <a href="http://ynhymy.cn" target="_blank">森林里的熊先生无删节完整版</a>| <a href="http://zhongyi1688.cn" target="_blank">罗丽星克莱尔迷宫片长</a>| <a href="http://aa665.com" target="_blank">大内密探零零发免费版</a>| <a href="http://cizhong.cn" target="_blank">法国电影《女流氓》的剧情简介</a>| <a href="http://444703.cn" target="_blank">碧螺春产自</a>| <a href="http://sfwang.cn" target="_blank">呼吸过度动漫在线观看完整</a>| <a href="http://qxqhk.cn" target="_blank">那金花和她的女婿电视剧免费观看 </a>| <a href="http://whmdwx.cc" target="_blank">因为想你泰剧在线观看完整版免费</a>| <a href="http://shmeinian.com.cn" target="_blank">日韩伦理片 儿媳妇的味道</a>| <a href="http://zhengbenjx.cn" target="_blank">《笼中鸟》完整版</a>| <a href="http://mwgczx.cn" target="_blank">《出差遇到前任》全集在线观看</a>| <a href="http://zhtextile.com.cn" target="_blank">樱桃电影</a>| <a href="http://xiaoyubaba.cn" target="_blank">《美容院特殊待遇》</a>| <a href="http://gogohappy.cc" target="_blank">幻灭电视剧</a>| <a href="http://i4qdzb.cn" target="_blank">韩剧妈妈爱上儿子</a>| <a href="http://baobook.cn" target="_blank">我成了他的班主任</a>| <a href="http://jjlztxs.cn" target="_blank">日本女大学生按摩在线观看 </a>| <a href="http://nlnj.com.cn" target="_blank">极道英雄</a>| <a href="http://bjstfz.cn" target="_blank">真破血普通话免费看</a>| <a href="http://03897.cn" target="_blank">51vv视频社区福</a>| <a href="http://ynwanju.cn" target="_blank">美丽的小蜜在线观看完整版</a>| <a href="http://fainkgu.cn" target="_blank">天底良知电视剧完整版免费</a>| <a href="http://ttechan.com" target="_blank">XL司令第一季免费全集在线观看</a>| <a href="http://tyjjbx.cn" target="_blank">寻找同桌的你</a>| <a href="http://yvzquw.cn" target="_blank">再度重相逢伍佰</a>| <a href="http://xsbna.cn" target="_blank">珍馐记电视剧免费版在线观看</a>| <a href="http://zhuomilicai.com" target="_blank">赤坂丽牙医诊所</a>| <a href="http://jxxinghai.com" target="_blank">窃听风云3</a>| <a href="http://venliao.com" target="_blank">大蛇3龙蛇之战在线观看</a>| <a href="http://happyvege.cn" target="_blank">你礼貌吗是什么梗</a>| <a href="http://shhlwd.com" target="_blank">年轻的阿姨</a>| <a href="http://rhbttf.cn" target="_blank">本能 电影</a>| <a href="http://hfypt.cn" target="_blank">激情交叉点</a>| <a href="http://hnliushuo.cn" target="_blank">特种兵之火凤凰27</a>| <a href="http://hanimex.cc" target="_blank">星际迷航电影有几部</a>| <a href="http://cjqgfw.com" target="_blank">三位大学位按摩记在线观看</a>| <a href="http://lf-zongang.com" target="_blank">长江七号国语免费观看</a>| <a href="http://uandf.cn" target="_blank">部长出差的日子电影</a>| <a href="http://ddhangda.cn" target="_blank">你是我的荣耀完整版</a>| <a href="http://m20726.cn" target="_blank">食物链6大尺寸原声试听</a>| <a href="http://toplife.cc" target="_blank">冰冷长街</a>| <a href="http://evhsa.com" target="_blank">终极一班4全部20集</a>| <a href="http://338580.com" target="_blank">灵魂摆渡第三季</a>| <a href="http://huilingda.com.cn" target="_blank">羽田あい</a>| <a href="http://jiafengpvc.cn" target="_blank">zztt60.ccm黑料</a>| <a href="http://ruyinet.com" target="_blank">时光就像一把杀猪刀</a>| <a href="http://yhinjso.cn" target="_blank">黄色仓库视频在线.</a>| <a href="http://runday.com.cn" target="_blank">好想和你在一起电视剧免费观看</a>| <a href="http://yuemeihui.cn" target="_blank">少年天子剧情</a>| <a href="http://bitns.cn" target="_blank">在银行上班的老婆</a>| <a href="http://zwisdom.cn" target="_blank">黑夜造访</a>| <a href="http://bookspice.cc" target="_blank">江湖情电影</a>| <a href="http://luoleng.cn" target="_blank">青木花恋</a>| <a href="http://17wifi.com.cn" target="_blank">探索新境纪录片在线观看免费</a>| <a href="http://coppertone.cc" target="_blank">女房东的味道3</a>| <a href="http://0710777.cn" target="_blank">地牢女孩在线观看完整版高清</a>| <a href="http://erpadmin.com.cn" target="_blank">三级片爸爸帮我播种子</a>| <a href="http://long-xia.cc" target="_blank">女子秘密会所</a>| <a href="http://hpkyx.cn" target="_blank">《热心的女邻居》电视剧</a>| <a href="http://sldianzi.com.cn" target="_blank">糖果世界大冒险</a>| <a href="http://long-xia.cc" target="_blank">狂飙连续剧免费看</a>| <a href="http://whttjc.cn" target="_blank">电影铁皮鼓</a>| <a href="http://abmass.cn" target="_blank">360大佬爱上我第三季在线观看</a>| <a href="http://82348.cc" target="_blank">无可替代泰剧</a>| <a href="http://lvdled.cn" target="_blank">沈腾机器人电影叫什么</a>| <a href="http://ai0394.cn" target="_blank">女保险公司4</a>| <a href="http://pluswine.cn" target="_blank">一线高清在线观看</a>| <a href="http://amazingshop.com.cn" target="_blank">怪兽黑暗大陆</a>| <a href="http://ggewig.cn" target="_blank">蜜桃成熟时33d 影音</a>| <a href="http://gzcxtzzx.com" target="_blank">斗破苍穹176免费播放</a>| <a href="http://eccjuma.com.cn" target="_blank">军装下的绕指柔电视剧在线观看</a>| <a href="http://rmt18.cn" target="_blank">《最后羔羊》免费观看</a>| <a href="http://88798388.cn" target="_blank">哇嘎在线观看完整版</a>| <a href="http://gzhcloud.cn" target="_blank">如果我们没有遇见</a>| <a href="http://hehuantang.cc" target="_blank">台版1987渔夫荒淫史</a>| <a href="http://yngdzy.cn" target="_blank">中国媳妇主题曲</a>| <a href="http://shjiale.cn" target="_blank">美丽水蜜蜂</a>| <a href="http://hoshb.cn" target="_blank">苏染染追夫记电视剧</a>| <a href="http://gzhuafa.com.cn" target="_blank">联姻五年后她重生了短剧免费全集</a>| <a href="http://dllaowu.cn" target="_blank">《屠宰呕吐娃娃》免费观看完整版 </a>| <a href="http://hxcpp14.com" target="_blank">陆贞传奇全集观看</a>| <a href="http://liwanzi.cn" target="_blank">曹查理《浪蝶狂花》演员表电影</a>| <a href="http://wcai80.com" target="_blank">年经姨妈3电影</a>| <a href="http://wcpabx.cn" target="_blank">绝命狙击</a>| <a href="http://dafue.cn" target="_blank">凯登克劳斯壮志凌云3第三部</a>| <a href="http://pnp6f.cn" target="_blank">痴人之爱电影在线观看</a>| <a href="http://ycjltsm.cn" target="_blank">鹦鹉杀免费完整观看高清</a>| <a href="http://auscoo.cn" target="_blank">爱丫爱丫影院最新电视剧免费观看 </a>| <a href="http://njlvlin.cn" target="_blank">背水一战 电影天堂</a>| <a href="http://619xw.cn" target="_blank">邵氏电影《风月奇谭》免费观看</a>| <a href="http://jhcz120.com" target="_blank">性的暴行北越未删减版 </a>| <a href="http://wailin.cn" target="_blank">三更雪电视剧在线观看</a>| <a href="http://4000948848.cn" target="_blank">克莱尔的迷宫电影在线</a>| <a href="http://jninner.cn" target="_blank">巴不得妈妈粤语</a>| <a href="http://rwdzw.cn" target="_blank">《需要爸爸播种美国》导演是谁 </a>| <a href="http://ddd668.com" target="_blank">我会好好的电影</a>| <a href="http://xadfjy.cn" target="_blank">出差被前男友欺负中文</a>| <a href="http://mc168.cc" target="_blank">律政新人王2国语</a>| <a href="http://tzhuanyuhua.cn" target="_blank">卧底警花女特工被抓是哪一集</a>| <a href="http://dqb888.cn" target="_blank">19岁大学生免费观看电视剧美国</a>| <a href="http://shumeixieye.cn" target="_blank">摄政王的掌心娇短剧全集</a>| <a href="http://400480.com" target="_blank">火星情报局第二季</a>| <a href="http://263dy.cn" target="_blank">动漫《家属》在线观看免费</a>| <a href="http://mengdanlu.cc" target="_blank">护宝狗狗国语</a>| <a href="http://xymjly.cn" target="_blank">丧家之女</a>| <a href="http://velink.cc" target="_blank">隐形帽子在线观看</a>| <a href="http://laerfo.cn" target="_blank">多家快递公司回应新规</a>| <a href="http://miweilai.com" target="_blank">进击的巨人完结篇</a>| <a href="http://jyxdrh.cn" target="_blank">电影《女子护卫队》在线观看免费 </a>| <a href="http://yhedu.cc" target="_blank">疯人院电视剧在线观看免费完整版</a>| <a href="http://52peiyin.cn" target="_blank">密室大逃脱第一季免费</a>| <a href="http://jinshangbang.cn" target="_blank">苍老师电影全集免费播放在</a>| <a href="http://188sf.cn" target="_blank">泰剧爱的涟漪国语版</a>| <a href="http://64813.cc" target="_blank">电影《星愿》完整版</a>| <a href="http://ewait.cn" target="_blank">姐妹牙医在线观看免费完整版</a>| <a href="http://ihuc6fz.cn" target="_blank">坏女孩2满天星</a>| <a href="http://xt365.cc" target="_blank">情人别我伤心哭泣</a>| <a href="http://dgmotor.net.cn" target="_blank">《【欧美】Vixen-《V飯店 2》 第一集-反彈》- 红桃视频 </a>| <a href="http://lingd.cc" target="_blank">西游记之女儿国电影</a>| <a href="http://njqczl.cn" target="_blank">坎贝尔电影《无憾》在线观看 </a>| <a href="http://we-do-tech.com.cn" target="_blank">高清《我的砍价女王》电视剧</a>| <a href="http://qsbearing.cn" target="_blank">高清《房奴试爱》</a>| <a href="http://beartalk.cn" target="_blank">不当军事行为2017法版</a>| <a href="http://gdxy51899.cn" target="_blank">独家童话全集免费观看高清完整版</a>| <a href="http://ahlobn.cn" target="_blank">走向共和哪个平台能看</a>| <a href="http://tajqy.cn" target="_blank">西班牙电影《掌中之物》简介</a>| <a href="http://lygreen.cn" target="_blank">枪侠电视剧</a>| <a href="http://zeminuzmani.com" target="_blank">垃圾桶披萨</a>| <a href="http://51053.cn" target="_blank">爱我几何完整版免费观看原声在线播放</a>| <a href="http://qilinwl8.cn" target="_blank">终极台风电影在线观看</a>| <a href="http://jmusm.cn" target="_blank">权力王朝:默多克家族未删减</a>| <a href="http://nmggydxxb.cn" target="_blank">插曲30集全集免费播放在线观看</a>| <a href="http://dydoor.cc" target="_blank">女兵排电视剧全集</a>| <a href="http://hq123.com.cn" target="_blank">张思德的简介</a>| <a href="http://huanda.cc" target="_blank">圆盘皇女ova</a>| <a href="http://s1461.cn" target="_blank">《饥渴的女人和维修工在线电影</a>| <a href="http://gzlyzn.cn" target="_blank">幸孕萌宝宠翻天短剧免费播放</a>| <a href="http://czsxdq.cn" target="_blank">雾柳镇全集</a>| <a href="http://hspost.cn" target="_blank">怪盗女谍之天海翼未删减版</a>| <a href="http://dfrsapt.cn" target="_blank">之后电影</a>| <a href="http://cpaptubing.cn" target="_blank">女职员的付出5中字在线</a>| <a href="http://ycwpr.cn" target="_blank">银娇在线</a>| <a href="http://mingpaisf.cn" target="_blank">《部长出差的日子》电影中文字幕</a>| <a href="http://hemua.cc" target="_blank">高清《钢铁森林》电视剧</a>| <a href="http://baihuw.cn" target="_blank">黑白配hd1080完整版在 </a>| <a href="http://motuoc.cn" target="_blank">不正当军事行为2017</a>| <a href="http://xmweihui.cn" target="_blank">盗墓笔记 谜海归巢</a>| <a href="http://morganenergy.cn" target="_blank">女儿的男朋友av</a>| <a href="http://sldianzi.com.cn" target="_blank">规章制度的作用</a>| <a href="http://tbwlcm.cn" target="_blank">私人航空16在线观看免费</a>| <a href="http://sdj166.com" target="_blank">影子战士</a>| <a href="http://luotuopay.cn" target="_blank">婆媳是怎样炼成的</a>| <a href="http://nbnywb.cn" target="_blank">私人助理2法国版</a>| <a href="http://card-base.com.cn" target="_blank">热血街区极恶王X2完整版</a>| <a href="http://cqshujiao.cn" target="_blank">定乾坤:女丞相朝堂短剧全集</a>| <a href="http://9-time.cn" target="_blank">色戒 高清</a>| <a href="http://zxhgxx.com" target="_blank">男媒婆全集在线观看</a>| <a href="http://chdlr.cn" target="_blank">颐和园未删除精彩超清</a>| <a href="http://extenda.com.cn" target="_blank">门事件电影直播</a>| <a href="http://gzhuanong.net" target="_blank">三年中国免费观看完整版</a>| <a href="http://shuiping29.cn" target="_blank">《天注定》在线观看完整版</a>| <a href="http://wydmz.com.cn" target="_blank">爱情雨国语版全集</a>| <a href="http://whccjgk.com" target="_blank">新绛县</a>| <a href="http://ynwanju.cn" target="_blank">情靡全集免费观看</a>| <a href="http://wesdw.cn" target="_blank">千王之王2000国语高清</a>| <a href="http://houwangjiasuqi.cc" target="_blank">电影战狼4高清完整版在线观看免费9999 </a>| <a href="http://cqxueding.cn" target="_blank">沉香如屑电视剧40全集在线播放</a>| <a href="http://flaoac.cn" target="_blank">卖保险套的女人</a>| <a href="http://shcyg.com.cn" target="_blank">斗牛 qvod</a>| <a href="http://yjsx.com.cn" target="_blank">你好李焕英高清免费</a>| <a href="http://gujunlighting.cn" target="_blank">暴躁老妈国语版免费观看</a>| <a href="http://xinrenxiu.cn" target="_blank">巫师财经</a>| <a href="http://helloovr.cn" target="_blank">艾米加油主题曲</a>| <a href="http://hibanker.com.cn" target="_blank">新建文件夹在线观看完整版</a>| <a href="http://info66.cn" target="_blank">以家人之名在线</a>| <a href="http://mmhuang.cn" target="_blank">张警官在线免费观看</a>| <a href="http://yczngcf.cn" target="_blank">电视剧雾都猎狐</a>| <a href="http://sf168.cc" target="_blank">《致青春》电影免费观看</a>| <a href="http://yiqutang.cn" target="_blank">新有菜在线免费观看</a>| <a href="http://3154595.com" target="_blank">电视剧盛夏晚晴天全集</a>| <a href="http://ybtfq.cn" target="_blank">诱人的岳母</a>| <a href="http://zzchnidc.cn" target="_blank">塔日酒店1997法国</a>| <a href="http://slhpay.cn" target="_blank">公主把腿分大点毛笔</a>| <a href="http://famouscat.cn" target="_blank">林丹装路人打球</a>| <a href="http://dqjww.com" target="_blank">《私人航空》在线看</a>| <a href="http://jihui.net.cn" target="_blank">杨思敏1996版电视剧</a>| <a href="http://feiyuyan.com.cn" target="_blank">大唐女将樊梨花百度影音</a>| <a href="http://xiaobei365.cc" target="_blank">直击证人</a>| <a href="http://qxcxlp.cn" target="_blank">高清《澳门风云3》电影</a>| <a href="http://unicheoil.com.cn" target="_blank">机械师2高清完整版</a>| <a href="http://miqcx.cn" target="_blank">广场舞故乡的云</a>| <a href="http://dgaic-gov.cn" target="_blank">叔嫂恋2之血恋免费普通话</a>| <a href="http://kidenglish.cn" target="_blank">廖凡宿敌电视剧免费观看全集</a>| <a href="http://hdgjsj.cn" target="_blank">人形少女 快播</a>| <a href="http://unicrese.com.cn" target="_blank">《士兵突击》主演私下聚餐</a>| <a href="http://sacing.cn" target="_blank">女儿需要爸爸的播种的种子视频免费观看</a>| <a href="http://5ichengpin.com" target="_blank">擦枪走火电影完整版</a>| <a href="http://yibogu.cn" target="_blank">贝蒂的农场1980</a>| <a href="http://cbdbbs.cn" target="_blank">一起愁愁愁30免费观看完整版</a>| <a href="http://8ec63.com" target="_blank">援助交际网站</a>| <a href="http://helipi.cn" target="_blank">曾经的疫苗我不懂得珍惜</a>| <a href="http://ulunwen.cn" target="_blank">印度式保罗1原版</a>| <a href="http://dgcherry.com.cn" target="_blank">魔鬼天使徐若瑄下载</a>| <a href="http://likepet.cn" target="_blank">动漫原神高清免费观看</a>| <a href="http://kenyeah.com" target="_blank">爱唯侦察DVD</a>| <a href="http://xindawuzi.cn" target="_blank">今天河南法制频道节目</a>| <a href="http://honnywell.com.cn" target="_blank">婚姻攻略在线观看</a>| <a href="http://jszl.cc" target="_blank">友田真希中文字幕</a>| <a href="http://aberfeldy.cn" target="_blank">两女 一杯在线观看</a>| <a href="http://houwangjiasuqi.cc" target="_blank">检察官白峰美羽复仇的电影观看</a>| <a href="http://cnfreely.cn" target="_blank">天狼星行动电视剧全集40集</a>| <a href="http://dangang.com.cn" target="_blank">飞翔女孩满天星完整版</a>| <a href="http://shoulaiye.cn" target="_blank">全职高手动漫在线观看</a>| <a href="http://sznfcc.com.cn" target="_blank">宣武区</a>| <a href="http://soushang.cc" target="_blank">欲望之岛未删减版在线看 </a>| <a href="http://47ihzf.cn" target="_blank">绝代双骄梁朝伟版粤语</a>| <a href="http://dsffm.cc" target="_blank">韩国电影在线观看修理工的艳遇</a>| <a href="http://1st-mart.cn" target="_blank">金品梅在线</a>| <a href="http://lsj002.com" target="_blank">高清《天注定》在线观看完整版</a>| <a href="http://firmer.cn" target="_blank">莫丽3特别酒店完整版</a>| <a href="http://jlmpal.cn" target="_blank">回复术士的重启人生4集在线观看</a>| <a href="http://jaojao.net" target="_blank">大唐好男人电视剧</a>| <a href="http://schaoyu.com.cn" target="_blank">和讨厌的部长一起出差日本电影</a>| <a href="http://pfirm.cn" target="_blank">我的世界叶枫</a>| <a href="http://djsyw.cn" target="_blank">以法名义电视剧播放</a>| <a href="http://ruixingsoft.com.cn" target="_blank">《刺青》</a>| <a href="http://98114.cc" target="_blank">《爱我几何》日本</a>| <a href="http://warate.cc" target="_blank">我是造型师</a>| <a href="http://mzy666.cn" target="_blank">爱的蜜方的演员表</a>| <a href="http://huanxinjd.cn" target="_blank">俘虏之锁1~4集免费观看中文版 </a>| <a href="http://soeasynet.com.cn" target="_blank">虎兄虎弟 国语</a>| <a href="http://jiujin.cc" target="_blank">步步追魂完整版</a>| <a href="http://hgedu.net.cn" target="_blank">在线观看美国伦理电影小蜜桃 </a>| <a href="http://rmay.cn" target="_blank">千金奴日本电影播放完整版中文 </a>| <a href="http://gutgut.cc" target="_blank">战狼4欧美版免费观看完整版</a>| <a href="http://ganlva.cn" target="_blank">雪中悍刀行电视剧上映</a>| <a href="http://ejneyc.cn" target="_blank">你是我的荣耀在线观看完整版免费</a>| <a href="http://sc-hhhb.com" target="_blank">高清《地府阎王》免费观看</a>| <a href="http://hnjxy.cn" target="_blank">电影私人航空免费观看全集高清版下载</a>| <a href="http://tuancent.cn" target="_blank">《嘻嘻嘻嘻吸血鬼》</a>| <a href="http://bjshtc.com" target="_blank">《酒店V》第一季在线观看</a>| <a href="http://gechengjuan.cn" target="_blank">无头东宫国语版免费观看</a>| <a href="http://kj0516.cn" target="_blank">《满江红》在线观看</a>| <a href="http://cqwgg.com.cn" target="_blank">旋风小子粤语</a>| <a href="http://ninlao.cn" target="_blank">需要爸爸的播种2</a>| <a href="http://ltxia.cn" target="_blank">纯真时代在线观看</a>| <a href="http://tyklsm.cn" target="_blank">周末狂热</a>| <a href="http://mk-vr.cn" target="_blank">激战丛林电影在线观看</a>| <a href="http://szjjx168.com" target="_blank">行尸走肉第2季全集</a>| <a href="http://buytie.cn" target="_blank">电影风声未删减版在哪里可以看</a>| <a href="http://110pojie.cn" target="_blank">《卖楼销售员》完整版</a>| <a href="http://hyc7777.com.cn" target="_blank">免费网络电视</a>| <a href="http://sjxhzq.cn" target="_blank">冷宫娘娘有喜啦</a>| <a href="http://lc520.cc" target="_blank">全度妍下女</a>| <a href="http://437daohang.com" target="_blank">双女任务高清无删减</a>| <a href="http://fjchenwenge.cn" target="_blank">高清绝望写手 第五季未删减</a>| <a href="http://huabaoyilu.cn" target="_blank">女教授的隐密魅力</a>| <a href="http://dhgtzy.com" target="_blank">三年全在线观看免费高清版</a>| <a href="http://pazjz.cn" target="_blank">激情丛林在线免费观看</a>| <a href="http://gzbks.cn" target="_blank">无职转生第二季樱花动漫第三集</a>| <a href="http://xiaoyiw.cn" target="_blank">斗罗大陆2第二季免费观看</a>| <a href="http://dihuawei.cn" target="_blank">魔镜号中文字幕</a>| <a href="http://bzbpx.cn" target="_blank">市委书记的女婿</a>| <a href="http://52ccx.cn" target="_blank">斗罗大陆观看</a>| <a href="http://dalianhr.cn" target="_blank">《高压监狱3》伦理</a>| <a href="http://jtsyyxgs.cn" target="_blank">致命错伏</a>| <a href="http://fcsyxx.cn" target="_blank">奇葩说第六季在线观看</a>| <a href="http://huxol.cn" target="_blank">bigtitsvideos</a>| <a href="http://jianianhua.cc" target="_blank">在线观看瓜达卢佩的玫瑰</a>| <a href="http://yckj1688.cn" target="_blank">小舍得电视剧</a>| <a href="http://fashow99.cn" target="_blank">电热毯应该铺在哪一层</a>| <a href="http://weiyena.cc" target="_blank">男生和女生愁愁愁电视剧在线观看30分 </a>| <a href="http://xmf.net.cn" target="_blank">坎贝奇《无憾》免费下载</a>| <a href="http://aimiaimi.com" target="_blank">猫屎妈妈</a>| <a href="http://changfandiao.cn" target="_blank">金州疫情</a>| <a href="http://aaa111.cn" target="_blank">姐姐真漂亮第3季全部免费</a>| <a href="http://xrkgm.com" target="_blank">玉米电影</a>| <a href="http://dldcw123.cn" target="_blank">白峰电影高清播放在线观看</a>| <a href="http://guohaihotel.com.cn" target="_blank">战神带娃:奶爸人生短剧全集</a>| <a href="http://920cs.cn" target="_blank">电视剧回响免费观看完整版</a>| <a href="http://njshj.cn" target="_blank">19岁大学生真人电视</a>| <a href="http://tshongmei.com.cn" target="_blank">搞笑一家人国语配音</a>| <a href="http://rubikcube.cn" target="_blank">挠痒痒脚心痒痒</a>| <a href="http://morganenergy.cn" target="_blank">刘和刚父亲简谱</a>| <a href="http://nasaqi.com.cn" target="_blank">修女也疯狂2免费观看完整版</a>| <a href="http://dnfwaiguabar.cn" target="_blank">戏点鸳鸯</a>| <a href="http://bj-ulim.com" target="_blank">聊斋李月华免费播放</a>| <a href="http://jsjlgy.cn" target="_blank">替夫还债女律师免费观看完整版</a>| <a href="http://zchwuliu.cn" target="_blank">宇宙骑士2</a>| <a href="http://xxzmy.com" target="_blank">黑帮老大和我的365天第一部</a>| <a href="http://justblog.com.cn" target="_blank">公浮之手中字2023最新版</a>| <a href="http://asview.com.cn" target="_blank">惠州核电站爆炸</a>| <a href="http://bnjfmy.cn" target="_blank">Xl司令第二季第八集无马赛免费观看 </a>| <a href="http://bkkruba.cc" target="_blank">郭静纯纯色</a>| <a href="http://ketec.cc" target="_blank">驯龙记电影</a>| <a href="http://pintao365.com" target="_blank">唯舞独尊mv</a>| <a href="http://angoing.com" target="_blank">奇妙发型屋完整版</a>| <a href="http://weboss.cc" target="_blank">喋血劫花电视剧</a>| <a href="http://ddrszs.cn" target="_blank">美女武士国语</a>| <a href="http://singe.com.cn" target="_blank">王诗玥柳鑫宇公布恋情图片</a>| <a href="http://hnyifanwh.cn" target="_blank">羁绊5.7</a>| <a href="http://luannen.cn" target="_blank">不当军事行为在线</a>| <a href="http://jxxinghai.com" target="_blank">巴萨对曼联</a>| <a href="http://scyuxuan.cn" target="_blank">电视剧三叉戟</a>| <a href="http://wyingtong.cn" target="_blank">刘宝瑞 官场斗</a>| <a href="http://020yz.cn" target="_blank">梦里水乡mtv</a>| <a href="http://66f5k.cn" target="_blank">色影音</a>| <a href="http://3154595.com" target="_blank">河北三佳购物频道</a>| <a href="http://yujianyue.cn" target="_blank">徐良的女朋友</a>| <a href="http://zaowai.cn" target="_blank">法国电影《塔日酒店》高清在线观看 </a>| <a href="http://moneycopy.cn" target="_blank">警察锅哥40全集免费</a>| <a href="http://gzielts.cn" target="_blank">生化危机4战神再生电影</a>| <a href="http://tjyhpc.cn" target="_blank">鬼吹灯之天星术日本版在哪可以看 </a>| <a href="http://bokecloud.cn" target="_blank">掌中之物西班牙版本无删减在线观看 </a>| <a href="http://71sms.com.cn" target="_blank">安姨电影免费观看</a>| <a href="http://hqn520.com" target="_blank">白百合日本大尺度电影呈现 </a>| <a href="http://3gbyl.com" target="_blank">男女一起愁愁愁电视剧免费看</a>| <a href="http://szjjx168.com" target="_blank">危险关系在线</a>| <a href="http://rockcode.cn" target="_blank">极度召唤</a>| <a href="http://partyplanner.cn" target="_blank">外交风云电视剧</a>| <a href="http://85kw.com" target="_blank">《饥渴的女人和维修工在线电影 </a>| <a href="http://399798.com" target="_blank">扫黑风暴免费看</a>| <a href="http://cdshaocheng.cn" target="_blank">韩国伦理电影需要爸爸的种子</a>| <a href="http://399259.cn" target="_blank">哈利·波特5</a>| <a href="http://modetime.cn" target="_blank">萌宝当家爹地妈咪是特工</a>| <a href="http://h7731.cn" target="_blank">电影《替夫还债3》 </a>| <a href="http://bdcnp.cn" target="_blank">强我 电影</a>| <a href="http://gyjiaz.cn" target="_blank">姐妹花爱上我</a>| <a href="http://ynbags.com.cn" target="_blank">色琪</a>| <a href="http://jixiangled.cn" target="_blank">剑来动漫第一季免费观看</a>| <a href="http://ssqss.cn" target="_blank">贺军翔主演电视剧</a>| <a href="http://lcssygc.com" target="_blank">双女任务</a>| <a href="http://fsznb.cn" target="_blank">台剧浪漫女家教免费观看第14集 </a>| <a href="http://kbzjwdv.cn" target="_blank">复仇电影在线观看免费完整版</a>| <a href="http://zhandianwang.cn" target="_blank">电影《渔夫荒淫史》</a>| <a href="http://zfs123.cn" target="_blank">杀戮天使第二季</a>| <a href="http://5steel.cn" target="_blank">埃洛伊塞</a>| <a href="http://7g4476.cn" target="_blank">2012电影在线观看神马影视</a>| <a href="http://viridisflorentia.cn" target="_blank">小小蜜桃6免费播放全集电视剧 </a>| <a href="http://huanqiuedu.com.cn" target="_blank">推荐好看的电视剧</a>| <a href="http://obtkeqp.cn" target="_blank">新人肉叉烧包完整版</a>| <a href="http://wwwlaw.cn" target="_blank">男女一起愁愁免在线观看 </a>| <a href="http://badu8.cn" target="_blank">爱天地无用</a>| <a href="http://zsfyyds.com" target="_blank">三位少妇按摩计在线观看免费</a>| <a href="http://jnxxjx.cn" target="_blank">合租屋交换做爰</a>| <a href="http://seocg.cn" target="_blank">月光洒向离人巷</a>| <a href="http://cogpyto.cn" target="_blank">《替夫还债2》</a>| <a href="http://noikisk.cn" target="_blank">联姻对象是肉食系警官</a>| <a href="http://gjzqgs.cn" target="_blank">仙逆动漫免费在线</a>| <a href="http://jfbabyins.cn" target="_blank">鬼吹灯之南海归墟电视剧免费观看</a>| <a href="http://goshang.cn" target="_blank">罗莉星克莱尔的电影在线</a>| <a href="http://xinglong998.cn" target="_blank">兽电战队强龙者普通话版</a>| <a href="http://evro.cn" target="_blank">呆佬贺寿粤语</a>| <a href="http://zzwsj.cn" target="_blank">学会夹有多重要</a>| <a href="http://jxcars.com.cn" target="_blank">《特殊的女保险推销员》</a>| <a href="http://sm072.com" target="_blank">藤浦惠在线</a>| <a href="http://zamanim.cn" target="_blank">太空部队第二季</a>| <a href="http://dgmotor.net.cn" target="_blank">踏血寻梅电影</a>| <a href="http://ynwanju.cn" target="_blank">《瑜伽的狂热》完整版在线观看</a>| <a href="http://shlssy.cn" target="_blank">胜者即是正义2</a>| <a href="http://955111.net" target="_blank">刘小光街舞</a>| <a href="http://mzdmt.net" target="_blank">木子檀檀子剧免费观看第10集</a>| <a href="http://gongwudai.com.cn" target="_blank">神秘博士第八季</a>| <a href="http://xyydz.cn" target="_blank">张帝问答演唱会</a>| <a href="http://100recall.cn" target="_blank">《啄木鸟:军事不当行为》</a>| <a href="http://a2031.cn" target="_blank">成都片免费观看</a>| <a href="http://qiantaichang.cn" target="_blank">本草药王国语</a>| <a href="http://yourongtz.cn" target="_blank">我的老婆是赌圣</a>| <a href="http://333678.cc" target="_blank">不戴胸罩叫邻居修灯泡</a>| <a href="http://ipickcsya.cn" target="_blank">爱的边界国语版</a>| <a href="http://tsoftime.cn" target="_blank">无上神帝全集免费观看</a>| <a href="http://cpnyr.cn" target="_blank">黑暗森林莉娜安德森全集免费看</a>| <a href="http://vicney404.cn" target="_blank">美人图未删减</a>| <a href="http://136fldh.net" target="_blank">隐私欲望</a>| <a href="http://elcloquido.com" target="_blank">奥美迦奥特曼第3集</a>| <a href="http://mmcms.cc" target="_blank">义姐是不是良在哪里看</a>| <a href="http://romehotel.cn" target="_blank">金星秀孟非</a>| <a href="http://shinetop.cn" target="_blank">盗墓最新电视剧</a>| <a href="http://dellnb.cn" target="_blank">《私人助理2》电影免费观看</a>| <a href="http://cctcc.com.cn" target="_blank">半身死灵2</a>| <a href="http://comceo.cn" target="_blank">高清一级方程式:疾速争胜 第八季</a>| <a href="http://114114.cc" target="_blank">归晓路晨电视剧免费观看</a>| <a href="http://wwdfz.cn" target="_blank">花子vs倔强驱魔师全集免费观看高清 </a>| <a href="http://shenkongbbs.cn" target="_blank">《赤壁》电影</a>| <a href="http://437daohang.com" target="_blank">房奴试爱《高潮》4</a>| <a href="http://2xh.com.cn" target="_blank">安吉拉·怀特全集在线播放</a>| <a href="http://flyingmoon.com.cn" target="_blank">手机情缘</a>| <a href="http://szmsb.cc" target="_blank">五等分的花嫁第一季免费观看全集</a>| <a href="http://bangkuang.cn" target="_blank">荒野之行1986满天星</a>| <a href="http://lanpod.cn" target="_blank">私藏电视剧免费播放全集高清</a>| <a href="http://gzjingxiang.cc" target="_blank">隐形守护者演员</a>| <a href="http://xixi366.cn" target="_blank">无人区高清在线观看免费</a>| <a href="http://zjjqcbxw.cn" target="_blank">插曲免费高清完整版</a>| <a href="http://shdsan.cn" target="_blank">豪门大佬的校草男友</a>| <a href="http://szxbwl.cn" target="_blank">时光正好短剧免费完整版</a>| <a href="http://56daiyun.cn" target="_blank">天注定免费完整版在线</a>| <a href="http://tsoftime.cn" target="_blank">年轻儿媳妇的味道</a>| <a href="http://tv388.com" target="_blank">我是静宝呀vlog</a>| <a href="http://yisigangqin.cc" target="_blank">中方突然宣布出兵</a>| <a href="http://elcloquido.com" target="_blank">分手的决心在线观看</a>| <a href="http://xkqy1.cn" target="_blank">蓝色隐身帽子完整版</a>| <a href="http://15088.cc" target="_blank">跟别人家的老公出轨</a>| <a href="http://badu8.cn" target="_blank">最后的战士电视剧免费观看</a>| <a href="http://qyleague.com" target="_blank">《3对1:两个人一次性体检》免费观看</a>| <a href="http://gzxy888.com" target="_blank">韩剧《不屈的儿媳》国语版 </a>| <a href="http://gshxt.cn" target="_blank">欧式少女1集全观看视频</a>| <a href="http://58ssl.com" target="_blank">eeuss在线电影院</a>| <a href="http://pinganzk.cn" target="_blank">镜双城电视剧在线观看</a>| <a href="http://568694.cn" target="_blank">电影金钱帝国</a>| <a href="http://dm511.cn" target="_blank">出差偶遇渣男前任日剧</a>| <a href="http://3ex4k.cn" target="_blank">特殊诊所韩国</a>| <a href="http://chexun.cc" target="_blank">父亲的爱情</a>| <a href="http://05778.com.cn" target="_blank">韩剧她的私生活</a>| <a href="http://cnngoo.cn" target="_blank">壮志凌云女版2011杰西 </a>| <a href="http://monkeyabc.com.cn" target="_blank">迷雾追踪24集免费观看</a>| <a href="http://90nns.cn" target="_blank">灵与欲百度影音</a>| <a href="http://kokusin.com.cn" target="_blank">三合会电影完整</a>| <a href="http://zgfgj.net.cn" target="_blank">美国版《小蜜蜂》4</a>| <a href="http://xmbos.com.cn" target="_blank">影音先锋资源 彼女系</a>| <a href="http://rqav.cn" target="_blank">青春 裴斗娜版</a>| <a href="http://whskw.cn" target="_blank">花儿与少年第5季</a>| <a href="http://wopen.com.cn" target="_blank">荷尔蒙6美国</a>| <a href="http://lentb.cn" target="_blank">天涯热土电视剧全集免费观看</a>| <a href="http://pmgjt.com" target="_blank">唐朝诡事录4奇谭在线观看</a>| <a href="http://hnyts.cc" target="_blank">杀死比尔</a>| <a href="http://logun.cn" target="_blank">《落魄贵族》1-4集免费观看</a>| <a href="http://qiyuefushi.cn" target="_blank">第二次也很美电视剧</a>| <a href="http://4006250001.com" target="_blank">姨母辅导高清版</a>| <a href="http://aeonretail.cn" target="_blank">天门市</a>| <a href="http://jbscg.cn" target="_blank">《荣誉守则》</a>| <a href="http://zhubingren.cc" target="_blank">朋友的母亲4播放</a>| <a href="http://sms668.cn" target="_blank">田震最新歌曲</a>| <a href="http://silkroadgate.cn" target="_blank">目中无人2一口气看完</a>| <a href="http://haojingguan.cn" target="_blank">莫妮卡《爱我几何》免费版是真演吗 </a>| <a href="http://cqccri.cn" target="_blank">动漫在线观看鬼父完整版动漫</a>| <a href="http://4848885.com" target="_blank">甘南县</a>| <a href="http://lfschy.cn" target="_blank">王月天!激情小说</a>| <a href="http://jjgqxx.cn" target="_blank">少年莫扎特</a>| <a href="http://0797jiaju.cn" target="_blank">落花时节电视剧免费观看第38集</a>| <a href="http://csyouzhi.cn" target="_blank">大头儿子和小头爸爸全集</a>| <a href="http://subhealth.cc" target="_blank">性刑房3悬吊捆绑视频</a>| <a href="http://131633.com" target="_blank">功夫电影免费观看完整版国语高清</a>| <a href="http://xcxcxcxc.com" target="_blank">新金梅瓶2 国语完整版</a>| <a href="http://bebook.cc" target="_blank">高清《白夜行》电影完整版在线观看</a>| <a href="http://a8fuli.com" target="_blank">埃丽诺娃满天星</a>| <a href="http://bhaif.cn" target="_blank">逃狱兄弟在线播放完整版</a>| <a href="http://daengine.com.cn" target="_blank">孙杨复出首秀</a>| <a href="http://kannvshen.cn" target="_blank">无人在线直播免费观看</a>| <a href="http://espedu.com.cn" target="_blank">《富家千金赤子板栗》</a>| <a href="http://qianchuanhui.cn" target="_blank">新金瓶梅第2集</a>| <a href="http://sxjtaq.cn" target="_blank">吞噬星空202集完整版</a>| <a href="http://xiaobaijia.com.cn" target="_blank">维修工人的培训电影</a>| <a href="http://jsctwh.cn" target="_blank">和部长出差电影</a>| <a href="http://jhjyjt.cc" target="_blank">穆桂英挂帅免费</a>| <a href="http://0951cool.com" target="_blank">电视剧抗战奇侠</a>| <a href="http://lyyshj.cn" target="_blank">小丑1电影在线观看免费</a>| <a href="http://sdrongpan.cn" target="_blank">北越暴行2完整版免费</a>| <a href="http://zhglc.cn" target="_blank">电视剧心跳</a>| <a href="http://sh-gjjs.com" target="_blank">一代名妓苏小小</a>| <a href="http://kvmswitch.com.cn" target="_blank">全知读者视角动漫</a>| <a href="http://jszl.cc" target="_blank">《农场保卫战》满天星在线播放</a>| <a href="http://hnbdmek.cn" target="_blank">澳门风云1电影</a>| <a href="http://top-source.cn" target="_blank">大约是爱txt下载</a>| <a href="http://wanna999.cn" target="_blank">春子家有喜事了</a>| <a href="http://pinganpt.cn" target="_blank">爱的几何完整版免费观看</a>| <a href="http://fs-yakai.com" target="_blank">麦乐迪《家庭矛盾》4在线免费观看 </a>| <a href="http://happymen.cn" target="_blank">钓鱼迷三平</a>| <a href="http://tsningyuan.cn" target="_blank">大染房电视免费观看</a>| <a href="http://ounier.cc" target="_blank">卖房子的女销售91制片厂</a>| <a href="http://shoushenjia.cn" target="_blank">奔跑吧兄弟</a>| <a href="http://nouwai.cn" target="_blank">奇兵电影</a>| <a href="http://xmcfzs.com" target="_blank">俄罗斯伦理片需要爸爸的种子</a>| <a href="http://pbkyj.cn" target="_blank">雪豹38集</a>| <a href="http://qingkai.cc" target="_blank">堀北真希电影</a>| <a href="http://659632.cn" target="_blank">额济纳旗</a>| <a href="http://apksoul.com" target="_blank">安斋拉拉电影完整版电影 </a>| <a href="http://bizip.cn" target="_blank">金牌销售秘密</a>| <a href="http://saclub.cc" target="_blank">吾乃皇太子免费阅读</a>| <a href="http://pcplc.cn" target="_blank">HD版激战丛林完整版</a>| <a href="http://xixiamht.cn" target="_blank">电视剧城中之城</a>| <a href="http://hct315.cn" target="_blank">《急诊护士》法国版电影免费观看</a>| <a href="http://wangmingpian.com" target="_blank">日本电影修理工的培训</a>| <a href="http://adenk.cn" target="_blank">年轻的妈妈免费</a>| <a href="http://xmfczx.cn" target="_blank">狱凤之杀出重围</a>| <a href="http://rnjvjjc.cn" target="_blank">蓝山县</a>| <a href="http://wuyoa.cn" target="_blank">吴雪雯《性迷宫》在线</a>| <a href="http://shxl888.cn" target="_blank">李一事件</a>| <a href="http://travelau.cn" target="_blank">玫瑰的故事更新时间</a>| <a href="http://hdjj8.cn" target="_blank">春草电视剧免费全集完整版</a>| <a href="http://vknqht.cn" target="_blank">法国版《女超人:麦乐迪》2013</a>| <a href="http://gotomp.cn" target="_blank">色戒在线无删减</a>| <a href="http://bjmqmy.cn" target="_blank">西班牙情事</a>| <a href="http://maifanshi.cc" target="_blank">新娘无悔的爱</a>| <a href="http://oraclo.cn" target="_blank">凯登克罗斯电影完整版</a>| <a href="http://honghanfalv.cn" target="_blank">李晨电视剧</a>| <a href="http://teweiband.cn" target="_blank">奥特曼大全动画片</a>| <a href="http://riji365.cc" target="_blank">关山暮雪</a>| <a href="http://baonitao.cn" target="_blank">《入室暴行3被蹂躏》电影</a>| <a href="http://zcdc0722.com" target="_blank">免费看办公室秘密全集</a>| <a href="http://huahuadaren.cn" target="_blank">我的小确幸 电视剧</a>| <a href="http://uduopin.cn" target="_blank">凉宫春日的忧郁第二季</a>| <a href="http://sy958.cn" target="_blank">荣誉守则杰西简免费版</a>| <a href="http://fainkgu.cn" target="_blank">中华三国在线</a>| <a href="http://mycqc.cn" target="_blank">花房姑娘国语版免费观看高清</a>| <a href="http://alldy.cn" target="_blank">汪涵怎么老成这样了</a>| <a href="http://yase123.com" target="_blank">美国电影《需要爸爸播种》免费观看 </a>| <a href="http://qxcxlp.cn" target="_blank">二龙湖爱情故事2免费看</a>| <a href="http://b2653.cn" target="_blank">漂亮妈妈7巴字开头中字</a>| <a href="http://008989.cc" target="_blank">叛我更幸福免费观看完整版全集</a>| <a href="http://ab188.cn" target="_blank">枭起青壤免费观看</a>| <a href="http://xxmh1044.com" target="_blank">爸爸播种籽2全集免费看</a>| <a href="http://bangzevip.cn" target="_blank">舞出一片天</a>| <a href="http://jksmwx.cn" target="_blank">老板的女儿全集免费看</a>| <a href="http://zhengce.cc" target="_blank">爸爸请播种</a>| <a href="http://eepai.cn" target="_blank">李二不哈</a>| <a href="http://zaocj.com" target="_blank">斗破苍穹167在线观看</a>| <a href="http://tlfurui.com.cn" target="_blank">少先队队歌教唱</a>| <a href="http://00837.cn" target="_blank">岳母的味道</a>| <a href="http://xiaosanjiasuqi.cc" target="_blank">台湾黛比浪漫女家教在线观看飘花影院 </a>| <a href="http://yansulin123.cn" target="_blank">爱情公寓316</a>| <a href="http://vkingkeyn.com" target="_blank">初恋逆袭全集免费</a>| <a href="http://tkrshc.cn" target="_blank">天台县</a>| <a href="http://ibu8w.cn" target="_blank">入室暴行魔电影免费观看高清 </a>| <a href="http://jshinco.cc" target="_blank">海贼王全集土豆网</a>| <a href="http://lawauto.cn" target="_blank">元气满满的哥哥</a>| <a href="http://gujunlighting.cn" target="_blank">黑帮大佬我的365第二季</a>| <a href="http://jjdhk.cn" target="_blank">卖房子的女销售电影</a>| <a href="http://cnbaihua.cn" target="_blank">密爱韩剧电影版翻译成中文</a>| <a href="http://meipai66.com" target="_blank">《急诊护士》电影在线观看 </a>| <a href="http://ylbaobiao.cn" target="_blank">巴西按摩师无删减版在线观看百度云</a>| <a href="http://heldon.cn" target="_blank">北北北砂云缨巡街免费观看 </a>| <a href="http://5753519.cn" target="_blank">天地男儿国语版免费观看</a>| <a href="http://zcyjzz.cn" target="_blank">拳击手2罗莎版完整版</a>| <a href="http://nss969.cn" target="_blank">他是谁免费观看</a>| <a href="http://linyigmw.cn" target="_blank">《咱们结婚吧》</a>| <a href="http://etunion.cn" target="_blank">苍狼之特战突击电视剧免费观看</a>| <a href="http://jzgmlslye.cn" target="_blank">《驯服2》丽卡和谁在一起了电影名字</a>| <a href="http://jxsljzgc.com" target="_blank">神印王座动漫免费完整版观看</a>| <a href="http://dj10000.cn" target="_blank">恋爱先生免费观看全集</a>| <a href="http://elcloquido.com" target="_blank">美国兽人免费观看完整版电影 </a>| <a href="http://djsmshop.cn" target="_blank">特种部队2字幕</a>| <a href="http://huangdaoyi.cc" target="_blank">猎狼者 电视剧</a>| <a href="http://scssta.cn" target="_blank">公主岭市</a>| <a href="http://recube.cc" target="_blank">姐妹牙医1986赤子板栗完整版</a>| <a href="http://lndlyd.com.cn" target="_blank">贝多芬小姐的启示电影</a>| <a href="http://kelijin8.com" target="_blank">马龙王楚钦等15人获记大功奖励</a>| <a href="http://zzzlei.cn" target="_blank">孙俪电视剧全集免费观看</a>| <a href="http://sh-hddq.com" target="_blank">《战争之暴行女囚》电影在线观看纳 </a>| <a href="http://zhaowaigua.cn" target="_blank">疯狂造假团</a>| <a href="http://bstqw.cn" target="_blank">站着再来一次第26</a>| <a href="http://everlast.cc" target="_blank">租界少年热血档案</a>| <a href="http://szdsd.com.cn" target="_blank">爱情真善美40</a>| <a href="http://kgsz.com.cn" target="_blank">怒放之青春再见</a>| <a href="http://posdaeb.cn" target="_blank">老板办公室狂躁秘书在线观看</a>| <a href="http://nppsy.cn" target="_blank">东瀛鬼咒</a>| <a href="http://baofuxing.cn" target="_blank">孙颖莎长发</a>| <a href="http://ipbox.net.cn" target="_blank">动画片六神合体</a>| <a href="http://snpta.cn" target="_blank">你安全吗一共多少集</a>| <a href="http://8662586.com" target="_blank">麦乐迪和父亲</a>| <a href="http://cqqxsw.cn" target="_blank">火锅米线培训</a>| <a href="http://qihuotouzi.cn" target="_blank">李丽珍玉女心经2之阴阳和合剧情介绍 </a>| <a href="http://kehao.cc" target="_blank">麦乐迪女超人在线观看完整免费高清原声满天星百度网盘 </a>| <a href="http://intask.cn" target="_blank">赵晓讲道</a>| <a href="http://jlhotwave.cn" target="_blank">激战丛林1995版洛克 </a>| <a href="http://syhyi.net" target="_blank">天下第一大火锅开锅</a>| <a href="http://inrmvsr.cn" target="_blank">酒店1-90集在线观看免费高清</a>| <a href="http://0710777.cn" target="_blank">冢本越南村电影在线观看</a>| <a href="http://r2fantasy.com" target="_blank">搜查瑠公圳未删减</a>| <a href="http://hfycbj.cn" target="_blank">流浪地球2</a>| <a href="http://cdzisai.com.cn" target="_blank">魔术奇缘电视剧</a>| <a href="http://yjfss.cc" target="_blank">二阶堂在线视频</a>| <a href="http://lnxqj.cn" target="_blank">韩国理论片OK电影天堂</a>| <a href="http://jtsyyxgs.cn" target="_blank">法国肌肤下的火焰</a>| <a href="http://quanxiaolu.cn" target="_blank">骑骑上司妻在线观看</a>| <a href="http://dgmingxun.cn" target="_blank">战狼6妈妈版免费资源</a>| <a href="http://hiyanan.cn" target="_blank">淫荡的贞操锁电影 </a>| <a href="http://leyfarming.cn" target="_blank">2024电视剧《漂白》在线播放</a>| <a href="http://llxingnuo.cn" target="_blank">新有菜电影免费观看在线</a>| <a href="http://96116.cc" target="_blank">《天相》动漫免费观看</a>| <a href="http://yueda009.cn" target="_blank">上海女教师出轨</a>| <a href="http://nchisense.cn" target="_blank">小猪佩奇故事全集免费听</a>| <a href="http://lqmjqbd.cn" target="_blank">扇娘电视剧全集</a>| <a href="http://wdcms.cn" target="_blank">《小叔叔来家做客》电影</a>| <a href="http://maoxiaoliu.cn" target="_blank">德不缚我缇安</a>| <a href="http://bsps.cc" target="_blank">用我的手来打扰我吧</a>| <a href="http://hdsat.cn" target="_blank">双谍姐妹花</a>| <a href="http://zhengzhanyouhua.cc" target="_blank">战狼3免费高清版电影 </a>| <a href="http://dxmpx.cn" target="_blank">3d肉脯团高清完整版</a>| <a href="http://flame.net.cn" target="_blank">两个世界泰剧</a>| <a href="http://jjnnn.cn" target="_blank">《二对一的商务模式2》完整版 </a>| <a href="http://genuineness.com.cn" target="_blank">老阿姨电影电视剧免费播放</a>| <a href="http://sh-tuson.com" target="_blank">处女膜电影</a>| <a href="http://lnbaw.cn" target="_blank">十九岁观看免费高清完整版</a>| <a href="http://ntrip.net.cn" target="_blank">唐伯虎在线vlog免费观看全集中文</a>| <a href="http://0797jiaju.cn" target="_blank">黄金渔场130605</a>| <a href="http://hurrymedia.cn" target="_blank">漂白免费观看完整版</a>| <a href="http://akeradata.com" target="_blank">壮志凌云2010法国满天星</a>| <a href="http://candou.cc" target="_blank">电视剧离婚女人</a>| <a href="http://nbkeerma.com.cn" target="_blank">美女医生旗袍上班</a>| <a href="http://xlkqs.cn" target="_blank">人肉炸弹</a>| <a href="http://zhongmeitf.com" target="_blank">甜蜜皮鞭百度影音</a>| <a href="http://zhzgw.cn" target="_blank">哇嘎美国</a>| <a href="http://jieruish.cn" target="_blank">第三次初恋韩剧在线观看完整版</a>| <a href="http://metals180.cn" target="_blank">智勇三宝国语</a>| <a href="http://gouzahuo.com" target="_blank">米西亚品牌</a>| <a href="http://jstkj.cn" target="_blank">电影《姐妹牙医》完整版在线看</a>| <a href="http://nbnsrj.cn" target="_blank">美国私人女性监狱完整版观看免费 </a>| <a href="http://ngwes.cn" target="_blank">我的巨乳姐姐</a>| <a href="http://0766tc.com" target="_blank">因为我太傻中文歌词</a>| <a href="http://shuiyinshuju.com.cn" target="_blank">江桥决战</a>| <a href="http://wxdongxian.cn" target="_blank">哪吒之魔童降世在线观看</a>| <a href="http://ak777.cc" target="_blank">战狼6免费观看高清下载电影 </a>| <a href="http://bidder.cc" target="_blank">终极恶女</a>| <a href="http://qcbxzh.cn" target="_blank">丈夫上司饰品的妻子电视剧叫什么名</a>| <a href="http://van-gogh.com.cn" target="_blank">小斯亲口宣布离开篮网</a>| <a href="http://tajqy.cn" target="_blank">暴走财神5在线观看免费完整版</a>| <a href="http://emiro.cc" target="_blank">巴基斯坦老电影</a>| <a href="http://yijiangchun.cn" target="_blank">广场舞正月十五闹花灯</a>| <a href="http://jrwld.cn" target="_blank">美国禁忌式结局- 5</a>| <a href="http://chenhongnan.cn" target="_blank">石之海13集到24集在线播放</a>| <a href="http://www16bxbx.com" target="_blank">企业强人国语在线观看</a>| <a href="http://tstar.cc" target="_blank">猛鬼差馆2</a>| <a href="http://133wan.cn" target="_blank">誓盟电视剧</a>| <a href="http://gfzdw.cn" target="_blank">牙医郝板栗未删减版多少集 </a>| <a href="http://ahzxjt.cn" target="_blank">3d肉蒲团蓝燕</a>| <a href="http://lxwlkjyxgs.cn" target="_blank">郭峰歌曲</a>| <a href="http://showgo.cc" target="_blank">中文字Dl幕岳 和女胥 </a>| <a href="http://assignment.cc" target="_blank">高清公主骑士是蛮族的新娘</a>| <a href="http://yedaolugui.cn" target="_blank">《混血的摇篮曲1973》日本版</a>| <a href="http://bxifma.cn" target="_blank">别墅攻略HD完整版</a>| <a href="http://sdcgwy.com.cn" target="_blank">疯狂的女人</a>| <a href="http://moflower.com.cn" target="_blank">嫌疑人x的献身电影</a>| <a href="http://sf005.cn" target="_blank">东汽一中</a>| <a href="http://yzcggm.cn" target="_blank">麦乐迪女超人在线</a>| <a href="http://wsmgsce.cn" target="_blank">《巨乳女教师波多野吉衣电影</a>| <a href="http://yangxiang.cc" target="_blank">夫妻成长日记下载</a>| <a href="http://chezhan8.cn" target="_blank">唐朝浪漫英雄下载</a>| <a href="http://mujia.cc" target="_blank">嘻哈斗牛犬</a>| <a href="http://runbpmq.cn" target="_blank">维修工艳遇在线观看</a>| <a href="http://tbwnanz.cn" target="_blank">睡美人国语版</a>| <a href="http://pcpopjob.cn" target="_blank">暮光之城4下</a>| <a href="http://hzjintuo.cn" target="_blank">女教师被学生强伦女教师</a>| <a href="http://tsqvc.cn" target="_blank">降头国语</a>| <a href="http://hqxmzz.cn" target="_blank">中华大丈夫电视剧</a>| <a href="http://bnnqw.cn" target="_blank">悬崖 电视剧</a>| <a href="http://hljit.com.cn" target="_blank">美国高清youtube</a>| <a href="http://friendq.cn" target="_blank">叛逆的鲁鲁修第二部</a>| <a href="http://43tmc.cn" target="_blank">间谍过家家代号:白</a>| <a href="http://hkfyjs.cn" target="_blank">盲战电影安志杰免费</a>| <a href="http://huixingtour.cn" target="_blank">日本边添边摸边做边爱的网站</a>| <a href="http://ego888.cc" target="_blank">古墓丽影山寨版满天星免费观看</a>| <a href="http://ksjxhl.cn" target="_blank">东区女巫</a>| <a href="http://cchongtu.cn" target="_blank">人与动物免费观看电视剧完整版</a>| <a href="http://guduzhe.cn" target="_blank">宝贝等我短剧大结局免费观看全集</a>| <a href="http://3154595.com" target="_blank">名欲场在线观看</a>| <a href="http://7400611.com" target="_blank">高压监狱2线观看完整免费高清原声满天星2019</a>| <a href="http://zuoye114.com" target="_blank">俱乐部的目的 韩国</a>| <a href="http://snoko.cc" target="_blank">寒战2下载</a>| <a href="http://eidea.cc" target="_blank">狂飙风云短剧免费观看</a>| <a href="http://luotuopay.cn" target="_blank">灵与肉电视剧剧情介绍</a>| <a href="http://1dinghuo.cn" target="_blank">法国空姐2019</a>| <a href="http://adzvhb.cn" target="_blank">西游艳谭</a>| <a href="http://qipei100.cn" target="_blank">笑红颜 电视剧</a>| <a href="http://17-go.cn" target="_blank">甄嬛传电视剧全集完整版免费观看</a>| <a href="http://mengyijiaoyu.cn" target="_blank">夜关门欲望之花</a>| <a href="http://ruitukeji.cc" target="_blank">出差遇到前任渣男完整版</a>| <a href="http://inclub.cc" target="_blank">灌篮高手第二部1</a>| <a href="http://qd15966853028.com" target="_blank">密爱韩国电影完整版</a>| <a href="http://kan77.cc" target="_blank">扫毒粤语</a>| <a href="http://jablue.cc" target="_blank">那小子真酷</a>| <a href="http://huawechye.cn" target="_blank">高压监狱2019无删减版</a>| <a href="http://gangyenb.cn" target="_blank">林凡短剧免费观看全集</a>| <a href="http://kuliman.cc" target="_blank">妈妈的男朋友5线观看 高清</a>| <a href="http://diwei.cc" target="_blank">原千岁免费观看完整版 </a>| <a href="http://zrzx365.cn" target="_blank">性暴行y刂2</a>| <a href="http://seimleader.cn" target="_blank">蒸发太平洋 电影</a>| <a href="http://z1jbj73.cn" target="_blank">这省凭什么春节游客量第一</a>| <a href="http://bairunfa.cn" target="_blank">台湾马友蓉</a>| <a href="http://66779999.cn" target="_blank">六扇门之沦陷</a>| <a href="http://lbjrzx.cn" target="_blank">《角斗士3满天星版》在线</a>| <a href="http://zjudings.cn" target="_blank">桑德拉·拉索《满天星》女店主</a>| <a href="http://zgcsc.cc" target="_blank">斗罗大陆第109集</a>| <a href="http://gyjlz.cn" target="_blank">美国A片巜禁忌3</a>| <a href="http://yymu.cc" target="_blank">欢乐颂2</a>| <a href="http://moviebox.cc" target="_blank">时光尽头的恋人</a>| <a href="http://brainmaps.net" target="_blank">爱我几何电影在线观看免费莫尼卡 </a>| <a href="http://elcloquido.com" target="_blank">寸止挑战在线观看</a>| <a href="http://greenchannel.cc" target="_blank">鸡毛飞上天观看免费全集</a>| <a href="http://baiyou01.cn" target="_blank">韩国剧《爱上闺蜜》</a>| <a href="http://gggggds.cn" target="_blank">日本电影《律师坠落》的剧情简介魔</a>| <a href="http://yzaml.cn" target="_blank">金银梅电影</a>| <a href="http://caregoods.cn" target="_blank">星落凝成糖免费观看全集巴巴影视</a>| <a href="http://asoman.cn" target="_blank">沈腾马丽小品《寒舍不寒》</a>| <a href="http://hahamm.cn" target="_blank">伸冤人3 在线观看</a>| <a href="http://funhappy.cn" target="_blank">高清《致命审判》在线观看</a>| <a href="http://ztwuzi.cn" target="_blank">女保险推销员8</a>| <a href="http://41399.cc" target="_blank">一千滴泪</a>| <a href="http://wellensittich.cc" target="_blank">邻家娇妻文秋</a>| <a href="http://maidda.com.cn" target="_blank">风华鉴电视剧</a>| <a href="http://ylytsw.cc" target="_blank">十九岁在线观看免费完整版韩剧 </a>| <a href="http://xinhairong.cc" target="_blank">十七岁的天空插曲</a>| <a href="http://haiqu.cc" target="_blank">韩剧泡沫爱情</a>| <a href="http://889955.cc" target="_blank">火口山的两个人</a>| <a href="http://xmrig.cc" target="_blank">蒸盒号之歌</a>| <a href="http://nedrs.cn" target="_blank">放课后的职员室</a>| <a href="http://wuyoa.cn" target="_blank">黑白配hd1080完整版在 </a>| <a href="http://88511.cn" target="_blank">一念永恒52集完整版大结局</a>| <a href="http://xnsxw.cn" target="_blank">手撕绿茶:姐姐超飒全集免费</a>| <a href="http://a-shua.cn" target="_blank">《法国空姐2019法版》中文版</a>| <a href="http://tianyurun.cn" target="_blank">《睫毛膏4》美国电影在线观看 </a>| <a href="http://shdsan.cn" target="_blank">日本三国未删减</a>| <a href="http://hq-auto.cn" target="_blank">电影《顶级特工》</a>| <a href="http://17163.cn" target="_blank">天下第一大结局</a>| <a href="http://bjhzlf.cn" target="_blank">《火烈鸟》电影免费</a>| <a href="http://nedrs.cn" target="_blank">黑白配HD1080电影免费版 </a>| <a href="http://xtrdtek.com.cn" target="_blank">《牙医诊所》中字</a>| <a href="http://guohaihotel.com.cn" target="_blank">杀死我的温柔</a>| <a href="http://ssqss.cn" target="_blank">血溅十三号警署</a>| <a href="http://tlwkttd.cn" target="_blank">男人和女人愁愁愁电视剧全集免费</a>| <a href="http://tjzbd.cn" target="_blank">农民伯伯下乡2国</a>| <a href="http://51722.cc" target="_blank">地狱公使</a>| <a href="http://taop.cc" target="_blank">更好的生活</a>| <a href="http://haibetter.cc" target="_blank">香肠派对在线观看</a>| <a href="http://iorobotnet.cn" target="_blank">进击的巨人在线看观看</a>| <a href="http://13127272288.cn" target="_blank">日本大胸继拇</a>| <a href="http://ykc2018.cn" target="_blank">至尊红颜贾静雯版高清</a>| <a href="http://xrw8z9.cn" target="_blank">妻子3免费版电视剧</a>| <a href="http://02899.cc" target="_blank">韩国三姐妹</a>| <a href="http://huoniao.cc" target="_blank">《青囊传》电视剧</a>| <a href="http://huale.org.cn" target="_blank">麦乐迪马克斯《家庭矛盾》在线观看 </a>| <a href="http://mwgczx.cn" target="_blank">水饺皇后电影</a>| <a href="http://xmyrj.cn" target="_blank">淮河流域图</a>| <a href="http://readle.cn" target="_blank">锕锵锵锵铜铜铜铜免费</a>| <a href="http://linuxblog.cc" target="_blank">仙逆更新到75了</a>| <a href="http://jinwei.cc" target="_blank">97密挑</a>| <a href="http://szcsn.cn" target="_blank">心宅猎人电视剧在线观看免费高清</a>| <a href="http://ysfibre.cn" target="_blank">寻龙诀高清</a>| <a href="http://361ql.cn" target="_blank">《爸爸种子2》英文翻译</a>| <a href="http://qgitf.cn" target="_blank">美国1985小辣椒3正版</a>| <a href="http://fc369.cn" target="_blank">善良的妻子1中字巴巴鱼汤饭惹人</a>| <a href="http://bxrcwxn.cn" target="_blank">三国创世录</a>| <a href="http://ruxiong.cn" target="_blank">地狱尖兵2电影完整版</a>| <a href="http://bkkruba.cc" target="_blank">跆拳道表演</a>| <a href="http://xiaosanjiasuqi.cc" target="_blank">《丛林肉搏》电影</a>| <a href="http://xszd.cc" target="_blank">和部长一起去出差旅</a>| <a href="http://fengyuankang.cn" target="_blank">女人电影</a>| <a href="http://parkchinois.cn" target="_blank">进击的巨人真人版后篇</a>| <a href="http://zaila.cn" target="_blank">芭比彩虹仙子之美人鱼公主</a>| <a href="http://041a4.cn" target="_blank">蝙蝠 韩国</a>| <a href="http://11226262.com.cn" target="_blank">《性的暴行》日本电影</a>| <a href="http://cqwang.cn" target="_blank">我爱hk 开心万岁</a>| <a href="http://4001669999.com" target="_blank">樱兰高中男公关部</a>| <a href="http://201805.cn" target="_blank">赘婿 电视剧</a>| <a href="http://dxctuan.com.cn" target="_blank">真探第二季在线观看完整版</a>| <a href="http://dwershouche.com" target="_blank">特珠的精华油5</a>| <a href="http://sukeduanluqi.cn" target="_blank">伦理法国护士完整版</a>| <a href="http://80496.cn" target="_blank">石破天惊电视剧</a>| <a href="http://hwvu.cn" target="_blank">弹珠汽水猴子全集观看</a>| <a href="http://tlfurui.com.cn" target="_blank">孤独又灿烂的神一鬼怪</a>| <a href="http://ahwh120.cn" target="_blank">美洲杯2015</a>| <a href="http://58ssl.com" target="_blank">海外版电影《爱很烂》剧情</a>| <a href="http://wy8848.cn" target="_blank">维修工的艳遇理论片</a>| <a href="http://ajthy.cn" target="_blank">中国家庭第一部电视剧免费观看</a>| <a href="http://aji87.cn" target="_blank">外星人对女忍者</a>| <a href="http://jhyjz.cc" target="_blank">深夜姐妹会</a>| <a href="http://lnxsjs.cn" target="_blank">双柏县</a>| <a href="http://0431fcw.cn" target="_blank">爱丫爱丫电视剧免费高清</a>| <a href="http://18306.cc" target="_blank">我为聊狂</a>| <a href="http://aaapk.cn" target="_blank">只是结婚的关系免费观看</a>| <a href="http://yzh68.com" target="_blank">熊出没之年货大电影</a>| <a href="http://nbxxfj.cn" target="_blank">私人女性监狱在线播放</a>| <a href="http://68858.cc" target="_blank">纵有疾风起在线播放</a>| <a href="http://qiyusat.cn" target="_blank">活佛济公3迅雷下载</a>| <a href="http://2v6eq8.cn" target="_blank">一起又看流星雨14</a>| <a href="http://flighticket.com.cn" target="_blank">禁忌5在线观看</a>| <a href="http://zhongqu5.com" target="_blank">法国超人麦乐迪在线观看</a>| <a href="http://jctt0356.cc" target="_blank">我是特种兵3之狼牙</a>| <a href="http://fluke-tools.cn" target="_blank">魔发奇缘动漫</a>| <a href="http://shsstc.cn" target="_blank">拥抱每一刻</a>| <a href="http://duanwt.cn" target="_blank">有色视频在线播放</a>| <a href="http://anyufw.cn" target="_blank">电视剧成长</a>| <a href="http://qcbxzh.cn" target="_blank">今生也是第一次电视剧</a>| <a href="http://258lt.cn" target="_blank">司藤免费观看全集完整版在线观看 </a>| <a href="http://czdljchfj.com" target="_blank">点燃我温暖你在线</a>| <a href="http://czzzmmw.cn" target="_blank">仙逆第122集在线观看</a>| <a href="http://dzshanshi.cn" target="_blank">乡村爱情8 电视剧</a>| <a href="http://xiaomijiari.cn" target="_blank">《倔强退魔师》</a>| <a href="http://stgjp.cc" target="_blank">骄阳伴我电视剧免费观看</a>| <a href="http://shenzhenhch.cn" target="_blank">电视剧《深潜》免费播放在线观看</a>| <a href="http://meilanym.cn" target="_blank">马与人电影在线观看免费播放</a>| <a href="http://shijivip.com" target="_blank">中餐厅5免费观看完整版</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="6mqay" class="pl_css_ganrao" style="display: none;"><pre id="6mqay"></pre><tbody id="6mqay"></tbody><small id="6mqay"><sup id="6mqay"><center id="6mqay"></center></sup></small><del id="6mqay"></del><address id="6mqay"></address><dl id="6mqay"></dl><blockquote id="6mqay"></blockquote><thead id="6mqay"></thead><td id="6mqay"><option id="6mqay"></option></td><kbd id="6mqay"></kbd><table id="6mqay"><font id="6mqay"><s id="6mqay"></s></font></table><table id="6mqay"></table><form id="6mqay"></form><nobr id="6mqay"></nobr><input id="6mqay"></input><div id="6mqay"><code id="6mqay"></code></div><optgroup id="6mqay"><em id="6mqay"><output id="6mqay"><blockquote id="6mqay"></blockquote></output></em></optgroup><optgroup id="6mqay"></optgroup><dfn id="6mqay"><s id="6mqay"><u id="6mqay"><samp id="6mqay"></samp></u></s></dfn><meter id="6mqay"><tbody id="6mqay"></tbody></meter><track id="6mqay"><input id="6mqay"><pre id="6mqay"><dd id="6mqay"></dd></pre></input></track><tbody id="6mqay"></tbody><cite id="6mqay"><center id="6mqay"><dd id="6mqay"></dd></center></cite><acronym id="6mqay"><small id="6mqay"><bdo id="6mqay"><i id="6mqay"></i></bdo></small></acronym><legend id="6mqay"></legend><small id="6mqay"><nobr id="6mqay"></nobr></small><track id="6mqay"><dfn id="6mqay"></dfn></track><p id="6mqay"></p><thead id="6mqay"></thead><small id="6mqay"></small><thead id="6mqay"><td id="6mqay"></td></thead><output id="6mqay"><tfoot id="6mqay"><strike id="6mqay"><dl id="6mqay"></dl></strike></tfoot></output><tr id="6mqay"></tr><form id="6mqay"></form><address id="6mqay"><div id="6mqay"><pre id="6mqay"></pre></div></address><pre id="6mqay"></pre><pre id="6mqay"></pre><font id="6mqay"></font><legend id="6mqay"><p id="6mqay"><label id="6mqay"></label></p></legend><div id="6mqay"></div><xmp id="6mqay"></xmp><xmp id="6mqay"></xmp><meter id="6mqay"></meter><small id="6mqay"><output id="6mqay"></output></small><big id="6mqay"></big><style id="6mqay"></style><sup id="6mqay"></sup><s id="6mqay"><rt id="6mqay"><source id="6mqay"><td id="6mqay"></td></source></rt></s><label id="6mqay"></label><th id="6mqay"></th><small id="6mqay"></small><dl id="6mqay"></dl><p id="6mqay"></p><listing id="6mqay"><acronym id="6mqay"><wbr id="6mqay"><strong id="6mqay"></strong></wbr></acronym></listing><listing id="6mqay"></listing><label id="6mqay"></label><tr id="6mqay"><cite id="6mqay"></cite></tr><code id="6mqay"></code><td id="6mqay"><style id="6mqay"></style></td><cite id="6mqay"></cite><pre id="6mqay"><dd id="6mqay"><abbr id="6mqay"><pre id="6mqay"></pre></abbr></dd></pre><rp id="6mqay"></rp><sup id="6mqay"><button id="6mqay"><tbody id="6mqay"></tbody></button></sup><small id="6mqay"></small><abbr id="6mqay"></abbr><center id="6mqay"><source id="6mqay"><optgroup id="6mqay"><del id="6mqay"></del></optgroup></source></center><tbody id="6mqay"></tbody><optgroup id="6mqay"></optgroup><abbr id="6mqay"><font id="6mqay"></font></abbr><abbr id="6mqay"></abbr><ul id="6mqay"><thead id="6mqay"><th id="6mqay"></th></thead></ul><small id="6mqay"></small><tfoot id="6mqay"><object id="6mqay"><strong id="6mqay"><sup id="6mqay"></sup></strong></object></tfoot><kbd id="6mqay"></kbd><abbr id="6mqay"><button id="6mqay"><b id="6mqay"></b></button></abbr><thead id="6mqay"></thead><small id="6mqay"></small><tr id="6mqay"><span id="6mqay"></span></tr><strong id="6mqay"><tbody id="6mqay"></tbody></strong><xmp id="6mqay"><tr id="6mqay"></tr></xmp><option id="6mqay"></option><thead id="6mqay"><small id="6mqay"><u id="6mqay"></u></small></thead><bdo id="6mqay"></bdo><legend id="6mqay"></legend><code id="6mqay"></code><dl id="6mqay"></dl><small id="6mqay"></small><pre id="6mqay"></pre><th id="6mqay"><style id="6mqay"><var id="6mqay"></var></style></th><acronym id="6mqay"><em id="6mqay"><menuitem id="6mqay"></menuitem></em></acronym><li id="6mqay"><label id="6mqay"><xmp id="6mqay"><kbd id="6mqay"></kbd></xmp></label></li><ins id="6mqay"></ins><small id="6mqay"></small><dfn id="6mqay"></dfn><del id="6mqay"><xmp id="6mqay"></xmp></del><form id="6mqay"><pre id="6mqay"><menuitem id="6mqay"><center id="6mqay"></center></menuitem></pre></form><tr id="6mqay"></tr><dd id="6mqay"><xmp id="6mqay"><rt id="6mqay"></rt></xmp></dd><th id="6mqay"></th><span id="6mqay"><dl id="6mqay"></dl></span><ul id="6mqay"></ul><strong id="6mqay"></strong><abbr id="6mqay"></abbr><dfn id="6mqay"><nav id="6mqay"></nav></dfn><source id="6mqay"></source><dfn id="6mqay"></dfn><source id="6mqay"></source><small id="6mqay"><tr id="6mqay"></tr></small><tt id="6mqay"></tt><center id="6mqay"><dd id="6mqay"><meter id="6mqay"></meter></dd></center><div id="6mqay"></div><optgroup id="6mqay"></optgroup><pre id="6mqay"></pre><address id="6mqay"></address><sup id="6mqay"><center id="6mqay"><tfoot id="6mqay"><legend id="6mqay"></legend></tfoot></center></sup><tr id="6mqay"></tr><bdo id="6mqay"></bdo><em id="6mqay"></em><menu id="6mqay"></menu><optgroup id="6mqay"></optgroup><sup id="6mqay"></sup><small id="6mqay"></small><dfn id="6mqay"><center id="6mqay"></center></dfn><tr id="6mqay"><pre id="6mqay"><dfn id="6mqay"><div id="6mqay"></div></dfn></pre></tr><dl id="6mqay"></dl><b id="6mqay"></b><abbr id="6mqay"><kbd id="6mqay"><acronym id="6mqay"><meter id="6mqay"></meter></acronym></kbd></abbr><dd id="6mqay"></dd><tbody id="6mqay"></tbody><strong id="6mqay"><nav id="6mqay"><li id="6mqay"></li></nav></strong><pre id="6mqay"></pre><tbody id="6mqay"></tbody><source id="6mqay"><dl id="6mqay"><pre id="6mqay"><abbr id="6mqay"></abbr></pre></dl></source><td id="6mqay"></td><ul id="6mqay"></ul><ins id="6mqay"></ins><abbr id="6mqay"><li id="6mqay"><mark id="6mqay"></mark></li></abbr><rt id="6mqay"></rt><nobr id="6mqay"></nobr><nobr id="6mqay"><tr id="6mqay"></tr></nobr><abbr id="6mqay"></abbr><ol id="6mqay"><var id="6mqay"><optgroup id="6mqay"><track id="6mqay"></track></optgroup></var></ol><input id="6mqay"><small id="6mqay"></small></input><source id="6mqay"><cite id="6mqay"><label id="6mqay"></label></cite></source><ol id="6mqay"><var id="6mqay"><optgroup id="6mqay"></optgroup></var></ol><b id="6mqay"></b><meter id="6mqay"><del id="6mqay"><sub id="6mqay"><thead id="6mqay"></thead></sub></del></meter><label id="6mqay"></label><tr id="6mqay"></tr><thead id="6mqay"><tbody id="6mqay"><wbr id="6mqay"></wbr></tbody></thead></div> </html> <!--<script src="/static/js//mianbaoban/specialcolumn/newstouch.js" type="text/javascript"></script>-->