|
|
@@ -88,7 +88,7 @@
|
|
88
|
88
|
$(".remove").click(function () {
|
|
89
|
89
|
var ids = $.map($('#list').bootstrapTable('getSelections'),
|
|
90
|
90
|
function (row) {
|
|
91
|
|
- return row.F_ID;
|
|
|
91
|
+ return row.F_Id;
|
|
92
|
92
|
});
|
|
93
|
93
|
/*判断长度*/
|
|
94
|
94
|
if (ids.length <= 0) {
|
|
|
@@ -125,7 +125,7 @@
|
|
125
|
125
|
$(".xg").click(function () {
|
|
126
|
126
|
var ids = $.map($('#list').bootstrapTable('getSelections'),
|
|
127
|
127
|
function (row) {
|
|
128
|
|
- return row.F_ID;
|
|
|
128
|
+ return row.F_Id;
|
|
129
|
129
|
});
|
|
130
|
130
|
if (ids.length != 1) {
|
|
131
|
131
|
layer.confirm('请选择一行进行修改?', {
|
|
|
@@ -143,7 +143,7 @@
|
|
143
|
143
|
content: html
|
|
144
|
144
|
});
|
|
145
|
145
|
|
|
146
|
|
- $("#ID").val(result.data.F_ID);
|
|
|
146
|
+ $("#ID").val(result.data.F_Id);
|
|
147
|
147
|
$("#workstart").val(result.data.F_WorkStartTimes.substr(11, 8));
|
|
148
|
148
|
$("#workend").val(result.data.F_WorkEndTimes.substr(11, 8));
|
|
149
|
149
|
$("#timename").val(result.data.F_TimeName);
|