摘要: RemoveItem: function (val) { var index = selectedUsers.indexOf(val); if (index > -1) { selectedUsers.splice(index, 1); } } 阅读全文
posted @ 2017-10-31 10:41 —阿峰— 阅读(413) 评论(0) 推荐(0) 编辑
摘要: var date = new Date(parseInt(数据源.slice(6))); //获取到时间 年月日时分秒 var result = date.getFullYear() + '/' + (date.getMonth() + 1) + '/' + date.getDate(); //获取 阅读全文
posted @ 2017-10-31 10:36 —阿峰— 阅读(1516) 评论(0) 推荐(0) 编辑
摘要: function getNowFormatDate() { var date = new Date(); var seperator1 = "-"; var seperator2 = ":"; var month = date.getMonth() + 1; var strDate = date.g 阅读全文
posted @ 2017-10-31 10:32 —阿峰— 阅读(261) 评论(0) 推荐(0) 编辑
摘要: DECLARE @radioScoreRate decimal DECLARE @checkScoreRate decimal DECLARE @judgeScoreRate decimal DECLARE @radioQty decimal DECLARE @checkQty decimal DE 阅读全文
posted @ 2017-10-31 10:23 —阿峰— 阅读(1680) 评论(0) 推荐(0) 编辑