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
| { "id": "zjtWord", "name": "zjtword", "description": "word文档内容查询,检索是否存在某关键字符串", "version": "1.0.0", "author": "chendi", "language": "python", "license": "Official", "main": "index.py", "uiauto_config": { "attribution_id": "file_operation", "attribution_name": "文件处理", "operations": [ { "category_id": "word", "category_name": "WORD", "operation_id": "searchWord", "operation_name": "word内容判断", "method": "searchWord", "type": "Convention", "input": [ { "name": "必填属性", "id": "required_params", "properties": [ { "id": "filePath", "name": "文件路径", "type": "path", "required": true, "value": "", "options":{ "select_type":"openDirectory" } }, { "id": "fileName", "name": "文件名(xxx.docx)", "type": "text", "required": true, "value": "" }, { "id": "keyword", "name": "检索内容", "type": "text", "required": true, "value": "" } ] } ], "output": { "is_allow_global_use": true, "description": "文件处理结果", "value": "isExist" } } ] } }
|