|
|
@@ -27,7 +27,7 @@
|
|
|
placeholder="请输入 本次签收CNY"
|
|
|
size="mini"
|
|
|
style="width: 100%;"
|
|
|
- :disabled="row.currentStlCurCode != 'CNY'"
|
|
|
+ :disabled="row.currentStlCurCode != 'CNY' || (row.currentStlAmountRMB == 0 && row.currentStlAmountUSD == 0)"
|
|
|
></el-input-number>
|
|
|
<span v-else>{{ row.currentStlAmountRMB }}</span>
|
|
|
</tempalte>
|
|
|
@@ -40,7 +40,7 @@
|
|
|
placeholder="请输入 本次签收USD"
|
|
|
size="mini"
|
|
|
style="width: 100%;"
|
|
|
- :disabled="row.currentStlCurCode != 'USD'"
|
|
|
+ :disabled="row.currentStlCurCode != 'USD' || (row.currentStlAmountRMB == 0 && row.currentStlAmountUSD == 0)"
|
|
|
></el-input-number>
|
|
|
<span v-else>{{ row.currentStlAmountUSD }}</span>
|
|
|
</tempalte>
|