Skip to content

Commit

Permalink
V0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
naibo committed Jun 1, 2023
1 parent 0a5d159 commit 8b60730
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ElectronJS/src/taskGrid/FlowChart.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ <h4 class="modal-title">Equivalent XPath</h4>
<p><input onkeydown="inputDelete(event)" type="checkbox" v-model='useLoop'></input>Use text inside the Loop (If not checked, the text entered each time will be the text inside the "Input Value" textbox below. If checked, the text set within the loop will be used)</p>
</div>
<div v-if='!useLoop'>
<label>Input Value:</label>
<label>Input Value (Use Field["FieldName"] to input the last extracted value of a field):</label>
<input onkeydown="inputDelete(event)" class="form-control" v-model='nowNode["parameters"]["value"]'></input>
</div>

Expand Down Expand Up @@ -378,7 +378,7 @@ <h4 class="modal-title">Equivalent XPath</h4>
<textarea onkeydown="inputDelete(event)" class="form-control" rows="3" v-model='nowNode["parameters"]["pathList"]'></textarea>
</div>
<div v-else-if='parseInt(loopType) < 5'>
<label>Content List:</label>
<label>Content List (Use Field["FieldName"] to input the last extracted value of a field):</label>
<textarea onkeydown="inputDelete(event)" class="form-control" rows="3" placeholder="One text/URL per line" v-model='nowNode["parameters"]["textList"]'></textarea>
</div>
<div v-else-if='parseInt(loopType) < 7'>
Expand Down
4 changes: 2 additions & 2 deletions ElectronJS/src/taskGrid/FlowChart_CN.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ <h4 class="modal-title">等价XPath</h4>
<p><input onkeydown="inputDelete(event)" type="checkbox" v-model='useLoop'></input>使用循环内的文本(不勾选则每次输入的文本为下方“输入值”文本框内的文本,勾选后会使用所在循环内设置的文本)</p>
</div>
<div v-if='!useLoop'>
<label>输入值:</label>
<label>输入值(用Field["字段名"]来输入某字段最后一次提取到的值)</label>
<input onkeydown="inputDelete(event)" class="form-control" v-model='nowNode["parameters"]["value"]'></input>
</div>

Expand Down Expand Up @@ -378,7 +378,7 @@ <h4 class="modal-title">等价XPath</h4>
<textarea onkeydown="inputDelete(event)" class="form-control" rows="3" placeholder="每行一个XPath" v-model='nowNode["parameters"]["pathList"]'></textarea>
</div>
<div v-else-if='parseInt(loopType) < 5'>
<label>内容列表:</label>
<label>内容列表(用Field["字段名"]来输入某字段最后一次提取到的值)</label>
<textarea onkeydown="inputDelete(event)" class="form-control" rows="3" placeholder="每行一个文本/网址" v-model='nowNode["parameters"]["textList"]'></textarea>
</div>
<div v-else-if='parseInt(loopType) < 7'>
Expand Down

0 comments on commit 8b60730

Please sign in to comment.