|
@@ -382,6 +382,27 @@ TalentInfoInfoDlg.downloadFile = function (id, type) {
|
|
|
}
|
|
|
|
|
|
|
|
|
+/**
|
|
|
+ * 全选
|
|
|
+ */
|
|
|
+TalentInfoInfoDlg.checkAll = function () {
|
|
|
+ $("#field input").each(function () {
|
|
|
+ this.checked = true;
|
|
|
+ })
|
|
|
+}
|
|
|
+/**
|
|
|
+ * 反选
|
|
|
+ */
|
|
|
+TalentInfoInfoDlg.unCheckAll = function () {
|
|
|
+ $("#field input").each(function () {
|
|
|
+ if (this.checked) {
|
|
|
+ this.checked = false;
|
|
|
+ } else {
|
|
|
+ this.checked = true;
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
$(function () {
|
|
|
$(":input").prop("disabled", true);
|
|
|
$("#talent_type option").eq(0).prop("selected", true);
|