|
@@ -134,8 +134,8 @@
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="所在仓库" prop="wsm_code" v-if="productinfo">
|
|
|
- <el-table row-key="id" ref="table" :data="productinfo.wsm_list" border size="mini" @select="handleSelection">
|
|
|
- <el-table-column type="selection">
|
|
|
+ <el-table class="stock_table" row-key="id" ref="table" :data="productinfo.wsm_list" border size="mini" @select="handleSelection">
|
|
|
+ <el-table-column type="selection" width="40px">
|
|
|
<template slot="header">
|
|
|
<span></span>
|
|
|
</template>
|
|
@@ -350,3 +350,16 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
|
+
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+.stock_table{
|
|
|
+ /deep/ thead {
|
|
|
+ .el-table-column--selection{
|
|
|
+ .cell{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|