贪玩魅影传说官网网卖装备吗

服务器列表
【攻略】04-11
【攻略】11-05
【攻略】12-16
【攻略】09-28
【攻略】09-17
【攻略】09-17
【攻略】09-17
【攻略】09-17
用户中心适龄提示:18岁以上玩家
在线客服:
游戏咨询:
电话热线:
贪玩《魅影传说》是一款以秦、汉、唐历史为背景的即时战斗ARPG网页游戏,以跨时空的混战、皇城的争夺为线索,展现大气磅礴的历史长河画幅。《魅影传说》拥有精致完美的场景画面、步步惊心的副本探索、万人同台PK的荣誉之战、火爆绚丽的技能效果等等,以最新游戏技术渲染最震撼的战斗体验!关注新浪微博
关注官方微信
if (topicNameList[i] == "") {
html += '';
html += '';
html += '' +
$("#hfTopicSelCount").val(topicCount);
$("#hfTopicIDs").val(topicIDs);
$("#hfTopicNames").val(topicNames);
$(this).html(html);
//话题维护
function ShowTopicDetail(id) {
var url = '/study/question/topicdetail.htm?ID=' +
window.open(url);
//输出json时间格式字符串yyyy-MM-dd HH:mm
function GetFormatDateTime(objDate) {
if (objDate == null) return "";
var jsonDate = eval('new ' + (objDate.replace(/\//g, '')));
var year = jsonDate.getFullYear();
var month = jsonDate.getMonth() + 1;
var date = jsonDate.getDate();
var hour = jsonDate.getHours();
var minute = jsonDate.getMinutes();
var second = jsonDate.getSeconds();
if (month < 10)
month = "0" +
if (date < 10)
date = "0" +
if (hour < 10)
hour = "0" +
if (minute < 10)
minute = "0" +
if (second
return parseInt(diff / (1000 * 60 * 60 * 24 * 365), 10) + "年前";
else if (diff / (1000 * 60 * 60 * 24) > 1)
return parseInt(diff / (1000 * 60 * 60 * 24), 10) + "天前";
else if (diff / (1000 * 60 * 60) > 1)
return parseInt(diff / (1000 * 60 * 60), 10) + "小时前";
else if (diff / (1000 * 60) > 1)
return parseInt(diff / (1000 * 60), 10) + "分钟前";
return "1分钟前";
//关注问题
function CareQuestion() {
var questionID = $("#hfQuestionID").val();
var methodName = "AddFocusQuestion";
var params = '{"questionID":"' + questionID + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#btnCareQuestion").css("display", "none");
$("#btnCancelCareQuestion").css("display", "");
showWarningMsg("关注失败。");
}, false, true, true);
//取消关注问题
function CancelCareQuestion() {
var questionID = $("#hfQuestionID").val();
var methodName = "CancelFocus";
var params = '{"id":"' + questionID + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#btnCareQuestion").css("display", "");
$("#btnCancelCareQuestion").css("display", "none");
showWarningMsg("取消关注失败。");
}, false, true, true);
//设为/取消FAQ
function SetFAQ(questionID, isfaq) {
var methodName = "SetFAQ";
var params = '{"questionID":"' + questionID + '", "isfaq":"' + isfaq + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
if (isfaq == 1) {
$("#spanSetFAQ").css("display", "none");
$("#spanCancelFAQ").css("display", "");
$("#spanSetFAQ").css("display", "");
$("#spanCancelFAQ").css("display", "none");
if (isfaq == 1) {
showWarningMsg("设为FAQ失败。");
showWarningMsg("取消FAQ失败。");
}, false, true, true);
//设为/取消精华
function SetEssence(questionID, isfaq) {
var methodName = "SetFAQ";
var params = '{"questionID":"' + questionID + '", "isfaq":"' + isfaq + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
if (isfaq == 1) {
$("#spanSetEssence").css("display", "none");
$("#spanCancelEssence").css("display", "");
$("#spanSetEssence").css("display", "");
$("#spanCancelEssence").css("display", "none");
if (isfaq == 1) {
showWarningMsg("设为精华失败。");
showWarningMsg("取消精华失败。");
}, false, true, true);
//编辑提问
function ShowAskQuestionEdit(id, type, forumID, isFAQ) {
var url = "";
if (type == "forum") {
if (isFAQ == "True") {
url = '/index/question/addfaqindex.htm?OP=Edit&id=' + id + '&forumID=' + forumID;
url = '/index/question/askquestionindex.htm?OP=Edit&id=' + id + '&forumID=' + forumID;
if (isFAQ == "True") {
url = '/study/question/addfaq.htm?OP=Edit&id=' +
url = '/study/question/askquestion.htm?OP=Edit&id=' +
window.open(url);
//编辑帖子
function ShowBBSEdit(id, forumID) {
var url = "";
url = '/index/question/createbbs.htm?OP=Edit&id=' + id + '&forumID=' + forumID;
window.open(url);
//关闭问题
function CloseQuestion(id) {
if (confirm("关闭此问题后别人无法回复此问题,确认关闭此问题?")) {
var methodName = "CloseQuestion";
var params = '{"questionID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#divCloseQuestion").css("display", "none");
showWarningMsg("关闭问题失败。");
}, false, true, true);
//删除问题
function DelQuestion(id) {
if (confirm("删除此问题后别人无法回复此问题,确认删除此问题?")) {
var methodName = "DelQuestion";
var params = '{"questionID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result.indexOf("ok")>=0) {
var opener = window.
if (opener) {
opener.location.href = opener.location.
window.close();
showWarningMsg("删除问题失败。");
}, false, true, true);
//赞(顶)/取消赞(顶)
function SupportQuestion(div, id) {
var methodName = "SupportQuestion";
var params = '{"answerID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result != "") {
var Result = result.split(';');
if (Result[0] == "support") {
var html = Result[1];
$("#divLastSupportUser" + id).html(html);
//赞同来自。。。
var oldNum = $("#span" + id).text();
var newNum = parseInt($("#span" + id).text()) + 1;
$("#span" + id).text(newNum.toString());
$(div).removeClass("good");
$(div).addClass("good_disabled");
div.onmouseout = function () { this.className = 'good_disabled'; };
$(div).next().next().removeClass("bad_disabled");
$(div).next().next().addClass("bad");
var divIsBad = document.getElementById("divIsBad" + id);
divIsBad.onmouseout = function () { this.className = 'bad'; };
var html = Result[1];
$("#divLastSupportUser" + id).html(html);
//赞同来自。。。
var oldNum = $("#span" + id).text();
var newNum = parseInt($("#span" + id).text()) - 1;
$("#span" + id).text(newNum.toString());
$(div).removeClass("good_disabled");
$(div).addClass("good");
div.onmouseout = function () { this.className = 'good'; };
}, false, true, false);
//踩/取消踩回答
function UnSupportQuestion(div, id) {
var methodName = "UnSupportQuestion";
var params = '{"answerID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result != "") {
if (result == "unSupport") {
$(div).removeClass("bad");
$(div).addClass("bad_disabled");
div.onmouseout = function () { this.className = 'bad_disabled'; };
else if (result == "unSupportAndDel") {
var oldNum = $("#span" + id).text();
var newNum = parseInt($("#span" + id).text()) - 1;
$("#span" + id).text(newNum.toString());
$(div).removeClass("bad");
$(div).addClass("bad_disabled");
div.onmouseout = function () { this.className = 'bad_disabled'; };
$(div).prev().prev().removeClass("good_disabled");
$(div).prev().prev().addClass("good");
var divIsGood = document.getElementById("divIsGood" + id);
divIsGood.onmouseout = function () { this.className = 'good'; };
$(div).removeClass("bad_disabled");
$(div).addClass("bad");
div.onmouseout = function () { this.className = 'bad'; };
}, false, true, false);
//对我没有帮助/撤销没有帮助
function IsHelpMe(id) {
var methodName = "IsHelpMe";
var params = '{"answerID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#spanHelp" + id).text("撤销没有帮助");
else if (result == "cancel") {
$("#spanHelp" + id).text("对我没有帮助");
}, false, true, false);
//分享问题
var temp = 1;
var control = "";
function ShareAnswer(obj, title, contentID, id) {
title = decodeURI(title);
if (control != obj.id) {
var c = document.getElementById(contentID).innerHTML;
var area = $(obj).get(0).getBoundingClientRect();
$("#shareAnswer" + id).css("left", area.left + $(window).scrollLeft());
$("#shareAnswer" + id).css("top", area.top + 20 + $(window).scrollTop());
var share = new ShareToMainSite();
share.render("question" + id, "", title, c);
$(".sharetext").html("");
$("#shareAnswer" + id).show();
loadShareOnClick(id);
if (temp == 1) {
var c = document.getElementById(contentID).innerHTML;
var area = $(obj).get(0).getBoundingClientRect();
$("#shareAnswer" + id).css("left", area.left + $(window).scrollLeft());
$("#shareAnswer" + id).css("top", area.top + 20 + $(window).scrollTop());
var share = new ShareToMainSite();
share.render("question" + id, "", title, c);
$(".sharetext").html("");
$("#shareAnswer" + id).show();
loadShareOnClick(id);
$("#shareAnswer" + id).hide();
control = obj.
//更新分享问题数量
function loadShareOnClick(id) {
var arrHtmlTag = document.getElementById("question" + id).getElementsByTagName("a");
for (var i = 0; i = totalCommentCount) {
$("#linkMoreFive" + id).css("display", "none");
$("#linkMoreFive" + id).css("display", "block");
var panel = $("#divComment" + id);
var methodName = "ShowAnswerComments";
var params = '{"answerID":"' + id + '","pageSize":"' + pageSize + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
var jsonObj = "";
if (result && result != "[]") {
jsonObj = eval("(" + result + ")");
RenderCommentPanel(id, jsonObj);
}, true, true, true);
panel.css("display", "block");
//输出评论内容
function RenderCommentPanel(id, jsonObj) {
var userID = $("#hfUserID").val();
var imgUrl = '/|||';
imgUrl = imgUrl.replace("|||", "");
var defaultImgUrl = '/yxt/systemfiles/defaultimages/photo.gif';
var html = "";
if (jsonObj.length > 0) {
for (var i = 0; i < jsonObj. i++) {
var photoUrl = "";
if (jsonObj[i].UserPhotoUrl == "") {
photoUrl = defaultImgU
photoUrl = imgUrl + jsonObj[i].UserPhotoU
html += '' +
jsonObj[i].CommentContent + '' +
$("#divCommentList" + id).html(html);
//回复评论
function ReturnAnswer(id, userName, answerID) {
$("#txtAnswerOne" + answerID).val("回复 " + userName + ":");
$("#hfCurrentCommentID").val(id);
//回复回答提交
function submitCommentPanel(answerID, sourceTitle, commentedUserID, commentedCName, viewUrl) {
var content = $("#txtAnswerOne" + answerID).val();
var commentID = $("#hfCurrentCommentID").val();
var commentContent = $("#hfCurrentCommentContent").val();
if (content != null) {
if (commentID != "") {
var methodName = "ReplyComment";
var params = '{"masterID":"' + commentID + '","commentContent":"' + commentContent + '","content":"' + content + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
showCommentPanel(answerID, $("#hfPageSize" + answerID).val());
$("#hfCurrentCommentID").val("");
}, false, false, false);
var methodName = "PublishComment";
var params = '{"masterID":"' + answerID + '","type":"Question","score":"0","content":"' + content + '","sourceTitle":"' + sourceTitle + '","sourceUrl":"' + viewUrl + '","commentedUserID":"' + commentedUserID + '","commentedCName":"' + commentedCName + '","status":"Approved"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result != "") {
var returnResult = result.split("|");
if (returnResult[0] == "1") {
var oldCount = $("#hfTotalCommentCount" + answerID).val();
var newCount = parseInt(oldCount) + 1;
$("#hfTotalCommentCount" + answerID).val(newCount);
if (newCount == 0) {
$("#spanTotalCommentCount" + answerID).text("添加评论");
$("#spanTotalCommentCount" + answerID).text(newCount + "条评论");
showCommentPanel(answerID, $("#hfPageSize" + answerID).val());
showWarningMsg(returnResult[1]);
} catch (e) { }
}, false, false, false);
showWarningMsg("请输入评论内容。");
//删除评论
function DelReturnAnswer(answerID, id) {
var methodName = "DeleteComment";
var params = '{"ID":"' + id + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
var oldCount = $("#hfTotalCommentCount" + answerID).val();
var newCount = parseInt(oldCount) - 1;
$("#hfTotalCommentCount" + answerID).val(newCount);
if (newCount == 0) {
$("#spanTotalCommentCount" + answerID).text("添加评论");
$("#spanTotalCommentCount" + answerID).text(newCount + "条评论");
showCommentPanel(answerID, $("#hfPageSize" + answerID).val());
}, false, true, true);
//显示更多五条
function MoreFive(id) {
var oldPageSize = $("#hfPageSize" + id).val();
var newPageSize = parseInt(oldPageSize) + 5;
$("#hfPageSize" + id).val(newPageSize);
showCommentPanel(id, newPageSize);
//根据课程ID显示话题设置
function ShowTopicSetByCourseID(courseID, obj) {
if (obj) {
var area = obj.getBoundingClientRect();
$('#dvSelectTopic').css("left", area.left + $(window).scrollLeft());
$('#dvSelectTopic').css("top", area.top + 22 + $(window).scrollTop());
$('#dvSelectTopic').show();
var title = $("#txtTopic").val();
var methodName = "ShowSetTopicByCourseID";
var params = '{"courseID":"' + courseID + '","title":"' + title + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
var jsonObj = "";
if (result && result != "[]") {
jsonObj = eval("(" + result + ")");
var hfTopicsJson = "";
for (var i = 0; i < jsonObj. i++) {
hfTopicsJson += jsonObj[i].ID + "," + jsonObj[i].Name + "|";
$("#hfTopicsJson").val(hfTopicsJson);
RenderTopicPanel(1);
var html = "";
html += '' +
'暂无话题信息。' +
$("#divTopicContent").html(html);
$("#preandnext").css("display", "none");
}, false, true, true);
//根据问吧版块ID显示话题设置
function ShowTopicSetByForumID(forumID, obj) {
if (obj) {
var area = obj.getBoundingClientRect();
$('#dvSelectTopic').css("left", area.left + $(window).scrollLeft());
$('#dvSelectTopic').css("top", area.top + 22 + $(window).scrollTop());
$('#dvSelectTopic').show();
var title = $("#txtTopic").val();
var methodName = "ShowSetTopicByForumID";
var params = '{"forumID":"' + forumID + '","title":"' + title + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
var jsonObj = "";
if (result && result != "[]") {
jsonObj = eval("(" + result + ")");
var hfTopicsJson = "";
for (var i = 0; i < jsonObj. i++) {
hfTopicsJson += jsonObj[i].ID + "," + jsonObj[i].Name + "|";
$("#hfTopicsJson").val(hfTopicsJson);
RenderTopicPanel(1);
var html = "";
html += '' +
'暂无话题信息。' +
$("#divTopicContent").html(html);
$("#preandnext").css("display", "none");
}, false, true, true);
//输出话题内容
function RenderTopicPanel(pageIndex) {
var data = $("#hfTopicsJson").val().split('|');
var dataCount = data.length - 1;
//话题总数
var html = "";
var count = 0;
$("#hfPageIndex").val(pageIndex);
var pageCount = 0;
$("#spanTopicCount").text(dataCount);
//话题总数
if ((dataCount / 12) > parseInt(dataCount / 12)) {
pageCount = parseInt(dataCount / 12) + 1;
pageCount = dataCount / 12;
$("#hfPageCount").val(pageCount);
if (dataCount <= 12) {
//判断上一组/下一组按钮可见
$("#preandnext").css("display", "none");
$("#preandnext").css("display", "block");
if (pageIndex
var hfTopicsJson = "";
for (var i = 0; i
(pageIndex - 1) * 12 && count <= pageIndex * 12) {
var id = (data[i].split(','))[0];
var name = (data[i].split(','))[1];
html += '' +
if ($("#hfTopicIDs").val().indexOf(id) >= 0) {
html += '' +
html += '' +
html += '' +
'暂无话题信息。' +
$("#preandnext").css("display", "none");
$("#divTopicContent").html(html);
function PreTopics() {
var pageIndex = parseInt($("#hfPageIndex").val());
pageIndex -= 1;
//改变当前页序号
$("#hfPageIndex").val(pageIndex);
RenderTopicPanel(pageIndex);
function NextTopics() {
var pageIndex = parseInt($("#hfPageIndex").val());
pageIndex += 1;
//改变当前页序号
$("#hfPageIndex").val(pageIndex);
RenderTopicPanel(pageIndex);
//话题选择chechbox
function ClickSelf(id) {
var count = parseInt($("#hfTopicSelCount").val());
var selTopic = $("#hfTopicIDs").val();
var selTopicNames = $("#hfTopicNames").val();
if ($(id).attr("checked") == true) {
if (count >= 4) {
showWarningMsg("最多可选择 4 个话题。");
$(id).attr("checked", false);
count += 1;
$("#hfTopicSelCount").val(count);
if (selTopic.indexOf($(id).val()) = 0) {
var removeID = $(id).val();
$("#hfTopicIDs").val(selTopic.replace(removeID + ",", ""));
var removeName = $(id).next().val();
$("#hfTopicNames").val(selTopicNames.replace(removeName + "∑", ""));
//改变当前取消选择话题的颜色
$(id).parent().next().children().removeClass("messagearea2select");
$(id).parent().next().children().addClass("messagearea2");
$(id).parent().next().children().mouseout(function () { this.className = 'messagearea2'; });
$(id).parent().next().children().mousemove(function () { this.className = 'messagearea2select'; });
//确定选择话题
function SubmitSelTopics(id) {
var selTopics = $("#hfTopicIDs").val();
var selTopicNames = $("#hfTopicNames").val();
var methodName = "SubmitSelTopics";
var params = '{"id":"' + id + '","topics":"' + selTopics + '","topicNames":"' + selTopicNames + '"}';
AjaxAsyncCallMethod(methodName, params,
function (result) {
if (result == "ok") {
$("#dvSelectTopic").hide();
var html = "";
if (selTopics != "") {
var topicIDList = selTopics.split(',');
var topicNameList = selTopicNames.split('∑');
for (var i = 0; i < topicIDList. i++) {
if (topicIDList[i] != "") {
html += '' +
if (topicNameList[i] == "") {
html += '';
html += '';
html += '' +
$(".labelcontent").html(html);
showWarningMsg("选择话题失败。");
}, false, true, true);
//搜索话题
function SearchTopics(type, groupID) {
var title = $("#txtTopic").val();
if (type == "forum") {
ShowTopicSetByForumID(groupID);
ShowTopicSetByCourseID(groupID);
有钱任性《魅影传说》金币获取大揭秘&&&悬赏分(0)&
俗话说得好:“巧妇难为无米之炊,游戏难死无钱之人”,玩游戏身上没钱,可真是在游戏里寸步难行啊!有钱才能任性,在《魅影传说(抢驻新服)》当中,金币是不可缺少的货币之一,在技能,押镖,精炼,冲星,经脉都是需要大量的金币的,小编今日就给大家揭秘金币获取攻略,那些荷包尴尬的玩家们就一定不能错过哦!  有钱任性《魅影传说》金币获取大揭秘  【金手指】  目前对于VIP玩家来说,金手指是性价比较高的获取金币的方式,钻石和金币的兑换比例为1:5000,即使非R玩家也能一天也能兑换两次金手指,大概有20W金币。  【挑战星宿/竞技场】  挑战星宿也是获得快速获得金币的来源之一,其好处是参与门槛比较抵,不需要VIP的支持也能够获取到大量的金币,如果是壕级的VIP玩家还可重置一次星宿挑战,几百万金币不是梦。竞技场也可以获得少量金币,在挑战有CD的时候也可以做下。  有钱任性《魅影传说》金币获取大揭秘  【商城宝石】  出售宝石也可以获得大量的金币,商城一个1级宝石可以卖到5W金币,售价是20钻石,兑换比例为1:2500,在金手指用完的情况下如果比较缺少金币,可以用钻石购买1级宝石解决燃眉之急。  【贩卖装备以及其他】  虽然贩卖装备也可以获得少量金币,但是并不是很划算,毕竟装备可以作为装备精炼的经验或者给神器附魔,所以小编并不推荐出售装备哦。  有钱任性《魅影传说》金币获取大揭秘  《魅影传说》是一款由中国国宝级知名画家所带领的上百人美术大师团队打造的中国名族风游戏背景音乐,耗时3年精心打造,集华丽战斗,互动养成于一身的全球首款写实风格的大型MMORPG手游。在系统玩法上有如大百科全书般的集市场上大部分游戏的亮点功能,同时加入了大量创新性玩法,可以说是个真正的集大成者。
16小时前&&&13
人浏览 0 人关注
共 0 个回复
不能回复自己发布的问题, 你可以修改问题内容
您已回复此信息,在 10 分钟内不能回复!
此问题,无法回复!
查看更多回复或要回复此信息请先或
0个关注&&&&
|&&&& 0个粉丝
暂无相关数据
客服热线:010-
扫一扫,加官方微信
服务咨询电话魅影传说家族商城购买技巧攻略_魅影传说攻略 - 07073魅影传说网页游戏官网
> 魅影传说家族商城购买技巧攻略
魅影传说家族商城购买技巧攻略
用手机扫描
  家族商城中的物品共有24件,分别有背包拓展符、坐骑进阶丹、好酒、金符、普通升星宝石、一等玉石、五彩精魄、五行石碎片、精致升星宝石、二等玉石、生命药水、防御药水、攻击药水、三等玉石、3倍经验丹、3级暴击宝石、强效生命药水、强效防御药水、强效攻击药水、3级闪避宝石、灵魂碎片、3级固伤宝石、橙装精华、无暇升星宝石。
  不同的道具需家族商城达到对应的等级后才能购买,24件商品全部可以购买需家族商城等级达到10级。下面我们就以10级商城的购买技巧为例。
  其实从这些道具的颜色就可以看出道具的珍稀程度,白色&绿色&蓝色&紫色&橙色。其中最高品质的橙色只有橙装精华和无暇升星宝石,橙装精华必换,这可是合成魅影传说橙色装备的必备材料,除非你已拿到最高级的橙色装备;无暇升星宝石,用于将10-14星的装备提升至11-15星,建议未达到15星的购买,最好是积攒一定量后再升星。
  接着是紫色道具,坐骑进阶丹必换,此乃魅影传说坐骑进阶道具,还未得到十阶炼狱麒麟的玩家必须时刻积攒。精致升星宝石是用于5-9星装备提升至6-10星的,未达到10星装备的也必换。之后便是强效药水了,这些道具都是在一定时间内提升战斗力的瞬间道具,可换可不换。
  至于魅影传说家族商城中的蓝色以下品质的道具,就依玩家的个人需求来购买了。只要还未达到满级,这些道具都是必须的。达到满级之后,若有多余的也可拿去精炼法宝,完全不会浪费。
责任编辑:樱冥殇
拯救小编,无私分享:
留档首次封测
游戏类型:即时 奇幻
留档二次封测
游戏类型:即时 奇幻
游戏类型:即时 奇幻
留档二次封测
游戏类型:即时 武侠
留档二次内测
游戏类型:回合 奇幻
留档二次封测
游戏类型:回合 历史
留档首次内测
游戏类型:回合 神话
留档二次封测
游戏类型:即时 奇幻
留档首次内测
游戏类型:即时 武侠
游戏类型:回合 历史}

我要回帖

更多关于 魅影传说官网 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信