This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reportReasonMerge2(state,action) { | |
let { | |
mData, | |
orecords, | |
} = action.payload | |
let { | |
reportMerge, | |
reportRecords | |
} = state | |
let data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by marginyu on 17/4/10. | |
*/ | |
import React,{Component, PropTypes} from 'react'; | |
import {DatePicker,Tag} from "antd"; | |
import moment from 'moment'; | |
const {RangePicker} = DatePicker; | |
const dateFormat = "YYYY-MM-DD"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//全选的实现 | |
$(".check-all").click(function (e) { | |
$(this).parents('.table').find('.ids').prop("checked", this.checked); | |
}); | |
$(".ids").click(function () { | |
var pel = $(this).parents('.table'); | |
var all = pel.find('.check-all'); | |
if (pel.find('input.ids').not(':checked').length > 0) | |
all.prop("checked", false); | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--[if lte IE 10]> | |
<script | |
src="/js/media.match.min.js"></script> | |
<![endif]--> |