浏览代码

海运运价添加目的港

lichao 3 年之前
父节点
当前提交
a3712c59c3
共有 1 个文件被更改,包括 20 次插入1 次删除
  1. 20 1
      src/views/kaihe/shipDynamics/vesselDetail/index.vue

+ 20 - 1
src/views/kaihe/shipDynamics/vesselDetail/index.vue

@@ -723,6 +723,24 @@
           >
             <el-table-column type="selection" width="55" align="center" />
             <el-table-column label="序号" type="index" width="80" />
+            <el-table-column prop="fDistinationid" header-align="center" align="center"  label="目的港">
+              <template slot-scope="scope">
+                <el-select
+                  v-model="scope.row.fDistinationid"
+                  clearable
+                  placeholder="请输入目的港"
+                  :disabled="doNot"
+                  size="small"
+                >
+                  <el-option
+                    v-for="item in portOptions"
+                    :key="item.fId"
+                    :label="item.fName"
+                    :value="item.fId"
+                  />
+                </el-select>
+              </template>
+            </el-table-column>
             <el-table-column prop="fCntrid" header-align="center" align="center"  label="集装箱">
               <template slot-scope="scope">
                 <el-select
@@ -1410,7 +1428,8 @@
               fPrice:null,
               remarks:null,
               fStatus:'T',
-              fDates:null
+              fDates:null,
+              fDistinationid: null,
             })
           }
         })