|
@@ -303,6 +303,8 @@ $(document).ready(() => {
|
|
|
|
|
|
// 清单选中和移除
|
|
// 清单选中和移除
|
|
$('body').on('click', '#table-list-select tr', function () {
|
|
$('body').on('click', '#table-list-select tr', function () {
|
|
|
|
+ $('#table-list-select tr').removeClass('table-warning');
|
|
|
|
+ $(this).addClass('table-warning');
|
|
const isCheck = $(this).hasClass('table-success') ? true : false;
|
|
const isCheck = $(this).hasClass('table-success') ? true : false;
|
|
const data_bwmx = $(this).attr('data-bwmx').split('$#$');
|
|
const data_bwmx = $(this).attr('data-bwmx').split('$#$');
|
|
const isDeal = $(this).data('gcl') !== undefined ? true : false;
|
|
const isDeal = $(this).data('gcl') !== undefined ? true : false;
|