|
@@ -108,6 +108,17 @@
|
108
|
108
|
</template>
|
109
|
109
|
</el-table-column>
|
110
|
110
|
|
|
111
|
+ <el-table-column min-width="35" align="center">
|
|
112
|
+ <template slot="header" slot-scope="scope">
|
|
113
|
+ <span>出库方式</span>
|
|
114
|
+ </template>
|
|
115
|
+ <template slot-scope="scope">
|
|
116
|
+ <span v-if="scope.row.is_sys == 1">{{"自动出库"}}</span>
|
|
117
|
+ <span v-if="scope.row.is_sys != 1">{{"手动出库"}}</span>
|
|
118
|
+
|
|
119
|
+ </template>
|
|
120
|
+ </el-table-column>
|
|
121
|
+
|
111
|
122
|
<el-table-column label="厂家" align="center">
|
112
|
123
|
<template slot-scope="scope">
|
113
|
124
|
{{scope.row.manufacturers ? scope.row.manufacturers.manufacturer_name:''}}
|
|
@@ -119,14 +130,7 @@
|
119
|
130
|
{{scope.row.dealers ? scope.row.dealers.dealer_name:''}}
|
120
|
131
|
</template>
|
121
|
132
|
</el-table-column>
|
122
|
|
- <el-table-column min-width="35" align="center">
|
123
|
|
- <template slot="header" slot-scope="scope">
|
124
|
|
- <span>出库方式</span>
|
125
|
|
- </template>
|
126
|
|
- <template slot-scope="scope">
|
127
|
|
- <span v-if="scope.row.is_sys == 1">{{"自动出库"}}</span>
|
128
|
|
- </template>
|
129
|
|
- </el-table-column>
|
|
133
|
+
|
130
|
134
|
|
131
|
135
|
<el-table-column label="操作" align="center">
|
132
|
136
|
<template slot-scope="scope">
|