|
|
@@ -35,16 +35,9 @@
|
|
|
卸货中
|
|
|
</div>
|
|
|
<div
|
|
|
- style="border-left: none"
|
|
|
@click="changeVoyageType(4)"
|
|
|
- :class="status == 4 ? 'currentbtn radio-btns' : 'radio-btns'"
|
|
|
- >
|
|
|
- 未签单
|
|
|
- </div>
|
|
|
- <div
|
|
|
- @click="changeVoyageType(5)"
|
|
|
:class="
|
|
|
- status == 5
|
|
|
+ status == 4
|
|
|
? 'currentbtn radio-btns right-radius'
|
|
|
: 'radio-btns right-radius '
|
|
|
"
|
|
|
@@ -192,14 +185,36 @@
|
|
|
min-width="80"
|
|
|
align="center"
|
|
|
></el-table-column>
|
|
|
-
|
|
|
+ <el-table-column
|
|
|
+ prop="waybillStatus"
|
|
|
+ sortable
|
|
|
+ label="签单状态"
|
|
|
+ min-width="100"
|
|
|
+ align="center"
|
|
|
+ >
|
|
|
+ <template v-slot="scope">
|
|
|
+ {{
|
|
|
+ scope.row.waybillStatus == 0
|
|
|
+ ? ""
|
|
|
+ : scope.row.waybillStatus == 1
|
|
|
+ ? "未签单"
|
|
|
+ : "已签单"
|
|
|
+ }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
prop="transStatus"
|
|
|
label="船舶状态"
|
|
|
min-width="100"
|
|
|
align="center"
|
|
|
></el-table-column>
|
|
|
-
|
|
|
+ <el-table-column
|
|
|
+ sortable
|
|
|
+ prop="createTime"
|
|
|
+ label="创建时间"
|
|
|
+ min-width="100"
|
|
|
+ align="center"
|
|
|
+ ></el-table-column>
|
|
|
<el-table-column
|
|
|
prop="remark"
|
|
|
label="备注"
|