Commit 03ea8ddd authored by 332784038@qq.com's avatar 332784038@qq.com

fix: 理货新增品牌和特性

parent 4722185a
......@@ -74,6 +74,16 @@
</div>
</template>
</el-table-column>
<el-table-column :label="$t('品牌')" align="center">
<template v-if="scope.row.brand && scope.row.brandName!=='无' && scope.row.brandName!=='无牌'" slot-scope="scope">
<dict-tag :type="DICT_TYPE.ECW_IS_BRAND" :value="scope.row.brand"></dict-tag>
</template>
</el-table-column>
<el-table-column :label="$t('特性')" align="center" prop="warehouseInAttrNameList" width="120">
<template slot-scope="scope">
{{scope.row.warehouseInAttrNameList?scope.row.warehouseInAttrNameList.toString():""}}
</template>
</el-table-column>
<el-table-column :label="$t('计划/已理')" align="center" prop="warehouseInInfo.cartonsNum">
<template slot-scope="scope">
<el-link type="primary" @click.native="orderClick(scope.row)">
......
......@@ -62,6 +62,16 @@
</div>
</template>
</el-table-column>
<el-table-column :label="$t('品牌')" align="center">
<template v-if="scope.row.brand && scope.row.brandName!=='无' && scope.row.brandName!=='无牌'" slot-scope="scope">
<dict-tag :type="DICT_TYPE.ECW_IS_BRAND" :value="scope.row.brand"></dict-tag>
</template>
</el-table-column>
<el-table-column :label="$t('特性')" align="center" prop="warehouseInAttrNameList" width="120">
<template slot-scope="scope">
{{scope.row.warehouseInAttrNameList?scope.row.warehouseInAttrNameList.toString():""}}
</template>
</el-table-column>
<el-table-column :label="$t('箱数')" align="center" prop="warehouseInInfo.cartonsNum">
<template slot-scope="scope">
<el-link type="primary" @click.native="showWarehouseLogs(scope.row)">
......
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