老板问我对工资的要求,不知道怎么女生回答不知道

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);
如何机智的回答老板问的[你觉得我应该给你多少工资]or[你的理想工资是多少]?&&&悬赏分(0)&
拿出压箱底的答案,不许外传,那些HR会恨死我的。-&笑着说,好像开玩笑,“当然越多越好了!”-&转折,“当然,我知道每个公司都有自己的薪酬结构,我会遵守这个结构的。“-&再来一个转折,”当然,我期望是与我的能力、经验、表现相匹配。“-&最后杀手锏,”我想一进来就能够全身心地投入工作,不去想其它的。“谢谢大家的点赞与拍砖,再深入解释一下这背后的道理:第一:当然,大前题是你喜欢这份工作,如果不喜欢,就别玩这个游戏,或直接要求一个高工资;第二:这个过程是一个博弈的过程,每个候选人都很犹豫不知道应该说多少,其实坐在你对面的HR也很犹豫,不知道应该说多少,那,你为什么不把压力交给他?第三:对方开口说了第一个,给你很多的自由度,接受、拒绝、讨价还价,总比你回答HR一个你期望的薪酬,然后就没有然后了好吧!----------------嘻嘻&
人浏览 0 人关注
共 1 个回复
再深入解释一下这背后的道理
回复于55天前
将该回复设置为最佳答案
对此回复提供一点评价吧(选填)
不能回复自己发布的问题, 你可以修改问题内容
您已回复此信息,在 10 分钟内不能回复!
此问题,无法回复!
查看更多回复或要回复此信息请先或
2个关注&&&&
|&&&& 2个粉丝
暂无相关数据
客服热线:010-
扫一扫,加官方微信
服务咨询电话查看: 2554|回复: 12||
贡献0 点铁甲币188 枚柴油464 升在线时间35 小时主题帖子精华0阅读权限30注册时间UID268263
推土机, 积分 322, 距离下一级还需 178 积分
TA的每日心情开心签到天数: 8 天[LV.3]偶尔看看II铁甲币188 枚精华0柴油464 升帖子
当老板没有按时发工资的时候,我一般都和老板说:老板我手机没话费了。这时候,老板大多时候都晓得我是缺钱花。。。你们还对老板说过什么“潜台词”
机甲同盟,替您省钱,帮您赚钱,好用又好玩。
[微信搜索:机甲同盟。]
试试看~~给你不一样的惊喜哦!~
贡献0 点铁甲币188 枚居住地 桂林市柴油1295 升在线时间4 小时主题帖子精华0阅读权限50注册时间UID257811
挖掘机, 积分 651, 距离下一级还需 349 积分
TA的每日心情开心签到天数: 240 天[LV.8]以坛为家I居住地 桂林市铁甲币188 枚精华0柴油1295 升帖子
&#32769;&#26495;&#65292;&#25105;&#25163;&#30162;&#20102;&#12290;
贡献0 点铁甲币188 枚柴油2378 升在线时间394 小时主题帖子精华0阅读权限150注册时间UID191500
大型矿卡, 积分 2774, 距离下一级还需 2226 积分
TA的每日心情奋斗签到天数: 214 天[LV.7]常住居民III铁甲币188 枚精华0柴油2378 升帖子
老板,你这两天少输点,我嫖瘾犯了。
任何挖机司机最大的仇人不是老板而是工头~~~~~
贡献0 点铁甲币219 枚拥有设备卡特彼勒320DL,三一重工SY60C-9,神钢SK70SR-2操作设备小松pc600柴油4849 升在线时间477 小时主题帖子精华0阅读权限150注册时间UID69079
大型矿卡, 积分 3817, 距离下一级还需 1183 积分
TA的每日心情开心签到天数: 1230 天[LV.10]以坛为家III操作设备小松pc600拥有设备卡特彼勒320DL,三一重工SY60C-9,神钢SK70SR-2铁甲币219 枚精华0柴油4849 升帖子
老板你闺女还好吧
贡献0 点铁甲币188 枚柴油2055 升在线时间103 小时主题帖子精华0阅读权限100注册时间UID228279
摊铺机, 积分 1428, 距离下一级还需 572 积分
该用户从未签到铁甲币188 枚精华0柴油2055 升帖子
随便编一个什么理由
贡献0 点铁甲币188 枚QQ居住地 楚雄彝族自治州柴油267 升在线时间0 小时主题帖子精华0阅读权限10注册时间UID266172
装载机, 积分 128, 距离下一级还需 72 积分
TA的每日心情开心签到天数: 2 天[LV.1]初来乍到居住地 楚雄彝族自治州铁甲币188 枚精华0柴油267 升帖子
&#21733;&#21733;&#65292;&#25972;&#36300;&#38065;&#26469;&#29992;&#29992;&#65292;&#20004;&#21315;&#23569;&#19981;&#35201;&#25343;&#25343;&#26469;&#25972;&#21487;&#23612;&#29595;&#27599;&#27425;&#21482;&#&#&#65292;&#30456;&#24403;&#29983;&#27668;&#128544;
贡献0 点铁甲币188 枚柴油464 升在线时间35 小时主题帖子精华0阅读权限30注册时间UID268263
推土机, 积分 322, 距离下一级还需 178 积分
TA的每日心情开心签到天数: 8 天[LV.3]偶尔看看II铁甲币188 枚精华0柴油464 升帖子
此楼为楼主
佳天下 发表于
老板你闺女还好吧
老板听了之后还没有报警吗?
机甲同盟,替您省钱,帮您赚钱,好用又好玩。
[微信搜索:机甲同盟。]
试试看~~给你不一样的惊喜哦!~
贡献0 点铁甲币188 枚柴油464 升在线时间35 小时主题帖子精华0阅读权限30注册时间UID268263
推土机, 积分 322, 距离下一级还需 178 积分
TA的每日心情开心签到天数: 8 天[LV.3]偶尔看看II铁甲币188 枚精华0柴油464 升帖子
此楼为楼主
铁甲spiderman 发表于
随便编一个什么理由
都编过什么理由
机甲同盟,替您省钱,帮您赚钱,好用又好玩。
[微信搜索:机甲同盟。]
试试看~~给你不一样的惊喜哦!~
贡献0 点铁甲币188 枚柴油464 升在线时间35 小时主题帖子精华0阅读权限30注册时间UID268263
推土机, 积分 322, 距离下一级还需 178 积分
TA的每日心情开心签到天数: 8 天[LV.3]偶尔看看II铁甲币188 枚精华0柴油464 升帖子
此楼为楼主
挖了不要不要的 发表于
&#21733;&#21733;&#65292;&#25972;&#36300;&#38065;&#26469;&#29992;&#29992;&#65292;&#20004;&#21315;&#23 ...
哈哈~~~下次说要20000,没准就有2000了
机甲同盟,替您省钱,帮您赚钱,好用又好玩。
[微信搜索:机甲同盟。]
试试看~~给你不一样的惊喜哦!~
贡献0 点铁甲币188 枚柴油464 升在线时间35 小时主题帖子精华0阅读权限30注册时间UID268263
推土机, 积分 322, 距离下一级还需 178 积分
TA的每日心情开心签到天数: 8 天[LV.3]偶尔看看II铁甲币188 枚精华0柴油464 升帖子
此楼为楼主
KOMATSU-pc200-8 发表于
老板,你这两天少输点,我嫖瘾犯了。
机甲同盟,替您省钱,帮您赚钱,好用又好玩。
[微信搜索:机甲同盟。]
试试看~~给你不一样的惊喜哦!~
Powered by}

我要回帖

更多关于 不知道怎么回答 的文章

更多推荐

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

点击添加站长微信