main
kgdxpr 1 year ago
parent f9b72607d7
commit bd98943ffb

@ -61,11 +61,9 @@
function tableRender() {
table.render({
elem: '#data-table',
url: '/QingLong/yunxiao/getTop10',
url: '/QingLong/collect/getAllBureau',
where: {
page: 1,
limit: 100,
system_id: 0
is_match: 1
},
height: 'full-60',
page: {
@ -91,6 +89,24 @@
});
window.unMatch = function (obj) {
var orgId = obj.data.org_id;
$.ajax({
url: "/QingLong/collect/disMatchBureau?org_id",
async: false,
type: 'GET',
success: function (res) {
},
error: function (xhr, status, error) {
layer.msg("出现异常!", {
icon: 2,
time: 1000
});
}
});
console.log(obj);
refresh();
}

@ -1910,8 +1910,8 @@ public class CollectController extends Controller {
*
* @throws InterruptedException
*/
@Before({GET.class, RepeatIntercetpor.class})
@EmptyInterface({"third_party_id", "org_id"})
@Before({POST.class, RepeatIntercetpor.class})
@EmptyInterface({"org_id"})
public void disMatchBureau(String org_id) {
cm.disMatchBureau(org_id);
Map<String, Object> map = new HashMap<>();

Loading…
Cancel
Save