Commit 2f9c75a1 authored by 我在何方's avatar 我在何方

更新

parent 7b53d2ce
...@@ -659,10 +659,10 @@ export default { ...@@ -659,10 +659,10 @@ export default {
exportAbnormal(){ exportAbnormal(){
return this.exportExcel(exportAbnormal, this.combinedQueryParams, this.$t("异常单统计")) return this.exportExcel(exportAbnormal, this.combinedQueryParams, this.$t("异常单统计"))
}, },
// 重货单统计 // 重货单统计
exportHeavyOrder(){ exportHeavyOrder(){
return this.exportExcel(exportHeavyOrder, this.combinedQueryParams, this.$t("重货单统计")) return this.exportExcel(exportHeavyOrder, this.combinedQueryParams, this.$t("重货单统计"))
}, },
// 退仓单统计 // 退仓单统计
exportReturnOrder(){ exportReturnOrder(){
return this.exportExcel(exportReturnOrder, this.combinedQueryParams, this.$t("退仓单统计")) return this.exportExcel(exportReturnOrder, this.combinedQueryParams, this.$t("退仓单统计"))
......
...@@ -66,6 +66,16 @@ ...@@ -66,6 +66,16 @@
<span>{{ parseTime(scope.row.createTime) }}</span> <span>{{ parseTime(scope.row.createTime) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('修改人')" align="center" prop="updater" width="180">
<template v-slot="{row}">
{{ (row.updater && allSimplList.length) && allSimplList.find(i => i.id == row.updater).nickname}}
</template>
</el-table-column>
<el-table-column :label="$t('修改时间')" align="center" prop="createTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime) }}</span>
</template>
</el-table-column>
<el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width"> <el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleEmpower(scope.row)" v-show="scope.row.filing === '1'" <el-button size="mini" type="text" icon="el-icon-edit" @click="handleEmpower(scope.row)" v-show="scope.row.filing === '1'"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment