|
@@ -36,7 +36,7 @@
|
|
|
<td class="titleVal">{{ tableData.orderNo }}</td>
|
|
|
<td class="titlesmall">数量</td>
|
|
|
<td class="titleVal">
|
|
|
- {{ tableData.remark1.num ? tableData.remark1.num : "/" }}
|
|
|
+ {{ tableData.num ? tableData.num : "/" }}
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@@ -441,6 +441,15 @@ const setBoxValue = () => {
|
|
|
} else if (props.tableData.remark4?.res == "1") {
|
|
|
checkboxes2[1].checked = true;
|
|
|
}
|
|
|
+ if (
|
|
|
+ undefined != props.tableData.seqs &&
|
|
|
+ null != props.tableData.seqs &&
|
|
|
+ "" != props.tableData.seqs
|
|
|
+ ) {
|
|
|
+ props.tableData.num = props.tableData.seqs.split(",").length;
|
|
|
+ } else {
|
|
|
+ props.tableData.num = 0;
|
|
|
+ }
|
|
|
};
|
|
|
import dictDataUtil from "@/common/configs/dictDataUtil";
|
|
|
watch(
|