|
@@ -85,7 +85,7 @@
|
|
|
<el-table-column align="center" label="单位" prop="unit" min-width="100" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column align="center" label="单价" prop="price" min-width="100" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input v-model="scope.row.price" size="small" type="number" v-if="listItem && !isDealer"></el-input>
|
|
|
+ <el-input v-model="scope.row.price" size="small" type="number" v-if="listItem"></el-input>
|
|
|
<div v-else>{{scope.row.price}}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -150,11 +150,11 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="税率" prop="tax" min-width="100" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column align="center" label="总仓库" prop="status1" min-width="100" show-overflow-tooltip v-if="!listItem">
|
|
|
+ <!-- <el-table-column align="center" label="总仓库" prop="status1" min-width="100" show-overflow-tooltip v-if="!listItem">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.status1 | status1Filter }}</div>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column align="center" label="仓库状态" prop="status2" min-width="100" show-overflow-tooltip v-if="!listItem">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ status2Filter(scope.row) }}</div>
|