|
@@ -344,7 +344,7 @@
|
|
|
v-model="form.fCorpid"
|
|
|
filterable
|
|
|
remote
|
|
|
- :disabled="notChange"
|
|
|
+ :disabled="notChange || formBrowseStatus"
|
|
|
style="width: 80%"
|
|
|
:remote-method="corpsRemoteMethod"
|
|
|
placeholder="请选择货权方"
|
|
@@ -364,7 +364,7 @@
|
|
|
v-model="form.fTocorpid"
|
|
|
filterable
|
|
|
remote
|
|
|
- :disabled="notChange"
|
|
|
+ :disabled="notChange || formBrowseStatus"
|
|
|
style="width: 80%"
|
|
|
@change="changefCorpid(form)"
|
|
|
:remote-method="corpsRemoteMethod"
|
|
@@ -397,7 +397,7 @@
|
|
|
v-model="form.fBsdate"
|
|
|
style="width: 80%"
|
|
|
type="date"
|
|
|
- :disabled="notChange"
|
|
|
+ :disabled="notChange || formBrowseStatus"
|
|
|
value-format="timestamp"
|
|
|
placeholder="货转日期"
|
|
|
>
|
|
@@ -410,7 +410,7 @@
|
|
|
v-model="form.fChargedate"
|
|
|
style="width: 80%"
|
|
|
type="date"
|
|
|
- :disabled="notChange"
|
|
|
+ :disabled="notChange || formBrowseStatus"
|
|
|
value-format="timestamp"
|
|
|
placeholder="仓储计费日期">
|
|
|
</el-date-picker>
|
|
@@ -421,7 +421,7 @@
|
|
|
<el-select
|
|
|
v-model="form.fWarehouseid"
|
|
|
filterable
|
|
|
- :disabled="notChange"
|
|
|
+ :disabled="notChange || formBrowseStatus"
|
|
|
remote
|
|
|
style="width: 80%"
|
|
|
:remote-method="warehouseRemoteMethod"
|
|
@@ -443,7 +443,7 @@
|
|
|
v-model="form.fStltypeid"
|
|
|
placeholder="请选择结算方式"
|
|
|
clearable
|
|
|
- :disabled="notChange"
|
|
|
+ :disabled="notChange || formBrowseStatus"
|
|
|
style="width: 80%"
|
|
|
>
|
|
|
<el-option
|
|
@@ -461,7 +461,7 @@
|
|
|
v-model="form.fFeetunit"
|
|
|
placeholder="请选择计费单位"
|
|
|
clearable
|
|
|
- :disabled="notChange"
|
|
|
+ :disabled="notChange || formBrowseStatus"
|
|
|
style="width: 80%"
|
|
|
>
|
|
|
<el-option
|
|
@@ -479,7 +479,7 @@
|
|
|
v-model="form.fTrademodeid"
|
|
|
placeholder="请选择贸易方式"
|
|
|
clearable
|
|
|
- :disabled="notChange"
|
|
|
+ :disabled="notChange || formBrowseStatus"
|
|
|
style="width: 80%"
|
|
|
>
|
|
|
<el-option
|
|
@@ -497,7 +497,7 @@
|
|
|
<el-form-item label="提单号" prop="fMblno">
|
|
|
<el-input
|
|
|
v-model="form.fMblno"
|
|
|
- :disabled="browseStatus"
|
|
|
+ :disabled="notChange"
|
|
|
style="width: 80%"
|
|
|
placeholder="手工输入"
|
|
|
/>
|
|
@@ -508,7 +508,7 @@
|
|
|
<el-input
|
|
|
v-model="form.fOriginalbillno"
|
|
|
style="width: 80%"
|
|
|
- :disabled="browseStatus"
|
|
|
+ :disabled="notChange"
|
|
|
placeholder="原始入库单号"
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -521,7 +521,7 @@
|
|
|
value-format="yyyy-MM-dd"
|
|
|
range-separator="至"
|
|
|
style="width: 80%"
|
|
|
- :disabled="browseStatus"
|
|
|
+ :disabled="notChange"
|
|
|
start-placeholder="开始日期"
|
|
|
end-placeholder="结束日期"
|
|
|
>
|