manualStopTransfer.html
2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Yoho!Buy运营平台</title>
<script src="/ufoPlatform/js/include.js"></script>
</head>
<body class="easyui-layout">
<div region="north" style="height:230px;">
<script>
document.write(addHead('打款管理', '停止打款'));
</script>
<div style="padding:20px;">
<label id="transferSwitch"></label>
<a id="manualStopTransfer" class="btn-success">停止打款</a>
<a id="manualStartUpTransfer" class="btn-success">开启打款</a>
</div>
</div>
<script>
$(function() {
setTransferSwitchOff();
$("#manualStopTransfer").linkbutton({
iconCls : "icon-search",
onClick : function() {
$.ajax({
type: "POST",
url: contextPath + '/tradeBills/manualStopTransfer',
async: false,
cache: false,
dataType: 'json',
success: function (result) {
if(result.code == 200) {
window.self.$.messager.show({
title : "提示",
msg : "关闭打款!"
});
setTransferSwitchOff();
}
}
});
}
});
$("#manualStartUpTransfer").linkbutton({
iconCls : "icon-search",
onClick : function() {
$.ajax({
type: "POST",
url: contextPath + '/tradeBills/manualStartUpTransfer',
async: false,
cache: false,
dataType: 'json',
success: function (result) {
if(result.code == 200) {
window.self.$.messager.show({
title : "提示",
msg : "开启打款!"
});
}
setTransferSwitchOff();
}
});
}
});
});
function setTransferSwitchOff(){
$.ajax({
type: "POST",
url: contextPath + '/tradeBills/getTransferSwitchOff',
async: false,
cache: false,
dataType: 'json',
success: function (result) {
if(result.code == 200) {
$("#transferSwitch").text(result.data);
}
}
});
}
</script>
</body>
</html>