交易规则完成

This commit is contained in:
2020-08-16 17:19:52 +08:00
parent 2fef75a2c9
commit e9c91cc7e4
6 changed files with 486 additions and 0 deletions

10
js/trade_rule_detail.js Normal file
View File

@@ -0,0 +1,10 @@
mui.plusReady(function(){
// some ajax
window.self = plus.webview.currentWebview();
window.Id = self.ruleId;
const parentData = self.parentData;
var block = $('.block');
if (parentData) {
block.html(parentData.content)
}
})