|
@@ -528,29 +528,37 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- label="应收运价"
|
|
|
+ label="应付运价"
|
|
|
align="center"
|
|
|
- prop="freightPriceDr"
|
|
|
+ prop="freightPriceCr"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<el-input
|
|
|
- v-model="scope.row.freightPriceDr"
|
|
|
- placeholder="应收运价"
|
|
|
+ v-model="scope.row.freightPriceCr"
|
|
|
+ placeholder="应付运价"
|
|
|
disabled
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- label="应付运价"
|
|
|
+ label="运输性质"
|
|
|
align="center"
|
|
|
prop="freightPriceCr"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input
|
|
|
- v-model="scope.row.freightPriceCr"
|
|
|
- placeholder="应付运价"
|
|
|
+ <el-select
|
|
|
+ v-model="scope.row.transProp"
|
|
|
+ placeholder="请选择运输性质"
|
|
|
disabled
|
|
|
- />
|
|
|
+ size="mini"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="(dict, index) in transPropList"
|
|
|
+ :key="index.dictValue"
|
|
|
+ :label="dict.dictLabel"
|
|
|
+ :value="dict.dictValue"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="备注" align="center" prop="remarks">
|
|
@@ -712,19 +720,6 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- label="应收运价"
|
|
|
- align="center"
|
|
|
- prop="freightPriceDr"
|
|
|
- >
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-input
|
|
|
- v-model="scope.row.freightPriceDr"
|
|
|
- placeholder="应收运价"
|
|
|
- disabled
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column
|
|
|
label="应付运价"
|
|
|
align="center"
|
|
|
prop="freightPriceCr"
|