|
@@ -122,19 +122,19 @@
|
|
|
|
|
|
<el-table v-loading="loading" :data="whgenlegList" show-summary :summary-method="getSum">
|
|
<el-table v-loading="loading" :data="whgenlegList" show-summary :summary-method="getSum">
|
|
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
- <el-table-column type="index" label="行号" align="center" width="120"/>
|
|
|
|
- <el-table-column label="客户" align="center" prop="fCorpid" show-overflow-tooltip width="120"/>
|
|
|
|
- <el-table-column label="入库日期" align="center" prop="fReviewDate" width="120">
|
|
|
|
|
|
+ <el-table-column type="index" label="行号" align="center" width="120" fixed/>
|
|
|
|
+ <el-table-column label="客户" align="center" prop="fCorpid" fixed show-overflow-tooltip width="120"/>
|
|
|
|
+ <el-table-column label="入库日期" align="center" prop="fReviewDate" fixed width="120">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.fOriginalbilldate , "{y}-{m}-{d}") }}</span>
|
|
<span>{{ parseTime(scope.row.fOriginalbilldate , "{y}-{m}-{d}") }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="仓储费计算日期" align="center" prop="fChargedate" width="120">
|
|
|
|
|
|
+ <el-table-column label="仓储费计算日期" align="center" prop="fChargedate" fixed width="120">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.fChargedate , "{y}-{m}-{d}") }}</span>
|
|
<span>{{ parseTime(scope.row.fChargedate , "{y}-{m}-{d}") }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="提单号" align="center" prop="fMblno" show-overflow-tooltip width="120"/>
|
|
|
|
|
|
+ <el-table-column label="提单号" align="center" fixed prop="fMblno" show-overflow-tooltip width="120"/>
|
|
<el-table-column label="货物属性" align="center" prop="fBusinessTypes" width="120"/>
|
|
<el-table-column label="货物属性" align="center" prop="fBusinessTypes" width="120"/>
|
|
<el-table-column label="属性详情" align="center" prop="fMarks" width="120"/>
|
|
<el-table-column label="属性详情" align="center" prop="fMarks" width="120"/>
|
|
<el-table-column label="品名" align="center" prop="fGoodsids" width="120"/>
|
|
<el-table-column label="品名" align="center" prop="fGoodsids" width="120"/>
|
|
@@ -561,5 +561,12 @@ export default {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-};
|
|
|
|
|
|
+}
|
|
</script>
|
|
</script>
|
|
|
|
+<style lang="scss">
|
|
|
|
+.el-table {
|
|
|
|
+ .el-table__body-wrapper {
|
|
|
|
+ z-index: 2;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</style>
|