|
|
@@ -3587,7 +3587,8 @@
|
|
|
rows += ioCell(ins[i], "in");
|
|
|
if (i === 0) {
|
|
|
rows += `<td rowspan="${n}">${s.via ? `<span class="pill teal">${esc(s.via)}</span>` : ""}</td>
|
|
|
- <td rowspan="${n}" class="vtxt">${esc(s.action || "")}</td>`;
|
|
|
+ <td rowspan="${n}" class="vtxt">${esc(s.action || "")}</td>
|
|
|
+ <td rowspan="${n}" class="vtxt">${esc(s.directive || "")}</td>`;
|
|
|
}
|
|
|
rows += ioCell(outs[i], "out");
|
|
|
rows += "</tr>";
|
|
|
@@ -3598,15 +3599,15 @@
|
|
|
<col style="width:44px"><col style="width:200px"><col style="width:92px">
|
|
|
<col style="width:180px"><col style="width:168px">
|
|
|
<col style="width:112px"><col style="width:330px"><col style="width:92px">
|
|
|
- <col style="width:118px"><col style="width:130px">
|
|
|
+ <col style="width:118px"><col style="width:130px"><col style="width:130px">
|
|
|
<col style="width:112px"><col style="width:360px"><col style="width:110px">
|
|
|
</colgroup>
|
|
|
<thead>
|
|
|
- <tr><th class="h-req" colspan="5">需 求</th><th class="h-in" colspan="3">输 入</th><th class="h-im" colspan="2">实 现</th><th class="h-out" colspan="3">输 出</th></tr>
|
|
|
+ <tr><th class="h-req" colspan="5">需 求</th><th class="h-in" colspan="3">输 入</th><th class="h-im" colspan="3">实 现</th><th class="h-out" colspan="3">输 出</th></tr>
|
|
|
<tr>
|
|
|
<th class="h-req2">#</th><th class="h-req2">目的</th><th class="h-req2">作用</th><th class="h-req2">实质</th><th class="h-req2">形式</th>
|
|
|
<th class="h-in2">类型</th><th class="h-in2">值</th><th class="h-in2">来源</th>
|
|
|
- <th class="h-im2">外部工具</th><th class="h-im2">动作</th>
|
|
|
+ <th class="h-im2">外部工具</th><th class="h-im2">动作</th><th class="h-im2">指令</th>
|
|
|
<th class="h-out2">类型</th><th class="h-out2">值</th><th class="h-out2">去处</th>
|
|
|
</tr>
|
|
|
</thead><tbody>${rows}</tbody></table></div>`;
|