Skip to content

Latest commit

 

History

History
37 lines (20 loc) · 550 Bytes

python-状态栏表格-显示按钮范例.md

File metadata and controls

37 lines (20 loc) · 550 Bytes

Name

python-状态栏表格-显示按钮范例

Author

小小梦

Source (python)

import json

def main():
    tab = {
        "type" : "table", 
        "title" : "demo", 
        "cols" : ["a", "b", "c"], 
        "rows" : [["1", "2", {"type" : "button", "cmd" : "coverAll", "name" : "平仓"}]]    # 在状态栏表格 第一行,第三列上配置一个按钮 名字是平仓
    }
    
    LogStatus("`" + json.dumps(tab) + "`")

Detail

https://www.fmz.com/strategy/147155

Last Modified

2019-05-10 11:35:13