payment_setting.js 323 B

123456789
  1. $(function () {
  2. autoFlashHeight();
  3. $('#mode-form input').on('click', function () {
  4. postData('/sp/' + spid + '/payment/save', { type: 'mode-setting', mode_type: $(this).attr('mode-type'), checked: $(this).is(':checked') }, function (result) {
  5. toastr.success('已配置');
  6. })
  7. });
  8. });