|
@@ -604,7 +604,7 @@
|
|
|
v-input-limit="0"
|
|
|
placeholder="货量"
|
|
|
:disabled="
|
|
|
- scope.row.billStatus == 6 || scope.row.billStatus == 3
|
|
|
+ scope.row.billStatus > 6 || scope.row.billStatus == 3
|
|
|
"
|
|
|
/>
|
|
|
</template>
|
|
@@ -621,7 +621,7 @@
|
|
|
v-model="scope.row.cntrNo"
|
|
|
placeholder="箱号"
|
|
|
:disabled="
|
|
|
- scope.row.billStatus == 6 || scope.row.billStatus == 3
|
|
|
+ scope.row.billStatus > 6 || scope.row.billStatus == 3
|
|
|
"
|
|
|
/>
|
|
|
</template>
|
|
@@ -642,7 +642,7 @@
|
|
|
v-model="scope.row.carregNo"
|
|
|
placeholder="车号"
|
|
|
:disabled="
|
|
|
- scope.row.billStatus == 6 || scope.row.billStatus == 3
|
|
|
+ scope.row.billStatus > 6 || scope.row.billStatus == 3
|
|
|
"
|
|
|
:clearable="true"
|
|
|
filterable
|
|
@@ -668,7 +668,7 @@
|
|
|
v-model="scope.row.driverName"
|
|
|
placeholder="司机姓名"
|
|
|
:disabled="
|
|
|
- scope.row.billStatus == 6 || scope.row.billStatus == 3
|
|
|
+ scope.row.billStatus > 6 || scope.row.billStatus == 3
|
|
|
"
|
|
|
/>
|
|
|
</template>
|
|
@@ -685,7 +685,7 @@
|
|
|
placeholder="联系电话"
|
|
|
v-input-limit="2"
|
|
|
:disabled="
|
|
|
- scope.row.billStatus == 6 || scope.row.billStatus == 3
|
|
|
+ scope.row.billStatus > 6 || scope.row.billStatus == 3
|
|
|
"
|
|
|
/>
|
|
|
</template>
|
|
@@ -696,7 +696,7 @@
|
|
|
v-model="scope.row.remarks"
|
|
|
placeholder="备注"
|
|
|
:disabled="
|
|
|
- scope.row.billStatus == 6 || scope.row.billStatus == 3
|
|
|
+ scope.row.billStatus > 6 || scope.row.billStatus == 3
|
|
|
"
|
|
|
/>
|
|
|
</template>
|
|
@@ -711,7 +711,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if="scope.row.billStatus == 2">已暂存</div>
|
|
|
<div v-if="scope.row.billStatus == 3">已撤销</div>
|
|
|
- <div v-if="scope.row.billStatus == 6">已提交</div>
|
|
|
+ <div v-if="scope.row.billStatus == 7">已提交</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -741,7 +741,7 @@
|
|
|
icon="el-icon-document-checked"
|
|
|
@click.native.prevent="addscarsRow(scope.row)"
|
|
|
:disabled="
|
|
|
- scope.row.billStatus == 6 || scope.row.billStatus == 3
|
|
|
+ scope.row.billStatus > 6 || scope.row.billStatus == 3
|
|
|
"
|
|
|
v-hasPermi="['fleet:ftmsorderbillscars:edit']"
|
|
|
>提交</el-button
|