|
@@ -161,7 +161,11 @@
|
|
|
<div class="title">{{ $t('shang-pin-xin-xi') }}</div>
|
|
|
<div class="content">
|
|
|
<el-table ref="tables" v-loading="loading" :data="orderInfo.goods">
|
|
|
- <el-table-column :label="$t('shang-pin-ID')" prop="id" width="66" />
|
|
|
+ <el-table-column :label="$t('shang-pin-ID')" width="66">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.id.slice(-4) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column :label="$t('tu-pian')" align="center" prop="name">
|
|
|
<template slot-scope="scope">
|
|
|
<img class="goods-logo" style="margin: 0 auto" :src="scope.row.image" />
|