|
|
|
|
@@ -1,11 +1,11 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-card style="">
|
|
|
|
|
<div v-if="Number(token)===2" style="width:100%">
|
|
|
|
|
<el-divider content-position="right">
|
|
|
|
|
<el-button type="text" @click="searchUnallocatePartNumber">刷新</el-button> | 待分配零件数
|
|
|
|
|
</el-divider>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-row >
|
|
|
|
|
<el-col v-for="(machine,index) in machines" :key="index" style="width: 200px">
|
|
|
|
|
<el-card shadow="hover" class="sudoku_item" style="height:80px;width: 90%" @click.native="clickCard(machine.项目流水号, machine.机床流水号)">
|
|
|
|
|
<el-badge :value="machine.未分配零件数">
|
|
|
|
|
@@ -66,6 +66,7 @@
|
|
|
|
|
placeholder="物料类别"
|
|
|
|
|
size="small"
|
|
|
|
|
clearable
|
|
|
|
|
style="width: 120px"
|
|
|
|
|
@change="searchMaterialVariety">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in MaterialCategory"
|
|
|
|
|
@@ -77,6 +78,7 @@
|
|
|
|
|
v-model="MaterialVarietyValue"
|
|
|
|
|
placeholder="物料品种"
|
|
|
|
|
size="small"
|
|
|
|
|
style="width: 120px"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in MaterialVariety"
|
|
|
|
|
@@ -87,9 +89,9 @@
|
|
|
|
|
<el-button type="primary" size="small" icon="el-icon-search" plain style="margin-left: 10px;" @click="pageCurrent0=1;pageSize0=50;total0=0;searchTable0()">查询</el-button>
|
|
|
|
|
<el-radio v-model="radio" label="1" style="margin-left: 10px" @change="pageCurrent0=1;pageSize0=50;total0=0;searchTable0()">未分配</el-radio>
|
|
|
|
|
<el-radio v-model="radio" label="2" style="margin-left: 10px" @change="pageCurrent0=1;pageSize0=50;total0=0;searchTable0()">已分配</el-radio>
|
|
|
|
|
<div style="float:right;">
|
|
|
|
|
<span style="margin-left: 0">采购员:</span>
|
|
|
|
|
<el-select v-model="personValue" placeholder="采购员" size="small" style="width: 100px">
|
|
|
|
|
<!--<div style="float:right;">-->
|
|
|
|
|
<!--<span style="margin-left: 0">采购员:</span>-->
|
|
|
|
|
<el-select v-model="personValue" placeholder="采购员" size="small" style="width: 100px;margin-left: 140px">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in person"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
@@ -98,10 +100,9 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-tooltip :open-delay="1000" effect="dark" content="选择采购员后,将物料分配给所选的采购员" placement="top">
|
|
|
|
|
<el-button
|
|
|
|
|
type="warning"
|
|
|
|
|
type="primary"
|
|
|
|
|
size="small"
|
|
|
|
|
icon="el-icon-menu"
|
|
|
|
|
plain
|
|
|
|
|
style="margin-left: 10px"
|
|
|
|
|
@click="allocateTask1">分配</el-button>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
@@ -110,16 +111,25 @@
|
|
|
|
|
type="danger"
|
|
|
|
|
size="small"
|
|
|
|
|
icon="el-icon-back"
|
|
|
|
|
plain
|
|
|
|
|
style="margin-left: 10px"
|
|
|
|
|
@click="executeReturn1">退回</el-button>
|
|
|
|
|
@click="executeReturn1">打回</el-button>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
</div>
|
|
|
|
|
<!--</div>-->
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row style="margin-bottom: 10px">
|
|
|
|
|
<el-table v-loading="loading" :data="tableData0" size="mini" height="800px" border stripe @selection-change="handleSelectionChange1">
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="tableData0"
|
|
|
|
|
:header-cell-style="{fontFamily:'MicrosoftYaHeiUI',fontSize:'14px',fontWeight:200}"
|
|
|
|
|
size="mini"
|
|
|
|
|
height="800px"
|
|
|
|
|
style="width: 1285px"
|
|
|
|
|
border
|
|
|
|
|
stripe
|
|
|
|
|
highlight-current-row
|
|
|
|
|
@selection-change="handleSelectionChange1">
|
|
|
|
|
<el-table-column :selectable="selectable" align="center" type="selection"/>
|
|
|
|
|
<el-table-column align="center" label="采购情况" prop="询价状态编号" min-width="100px">
|
|
|
|
|
<el-table-column align="center" label="采购状态" prop="询价状态编号" min-width="100px" width="80px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span v-if="scope.row.人员编号===''" type="primary" size="small">未分配</span>
|
|
|
|
|
<span v-if="parseInt(scope.row.询价状态编号)===1&&scope.row.人员编号!==''" type="warning" size="small">未询价</span>
|
|
|
|
|
@@ -127,57 +137,57 @@
|
|
|
|
|
<span v-if="parseInt(scope.row.采购状态编号)===3" type="info" size="small">已采购</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料名称" label="名称" min-width="180px">
|
|
|
|
|
<el-table-column align="center" prop="物料名称" label="名称" min-width="180px" width="160px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料名称 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料规格" label="规格" min-width="300">
|
|
|
|
|
<el-table-column align="center" prop="物料规格" label="规格" min-width="300" width="150px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料规格 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料型号" label="图号或型号" min-width="150px">
|
|
|
|
|
<el-table-column align="center" prop="物料型号" label="图号或型号" min-width="150px" width="150px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料型号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="数量" min-width="80px">
|
|
|
|
|
<el-table-column align="center" label="数量" min-width="80px" width="80px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.零件数量 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="项目名称" prop="项目名称" min-width="100px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.项目名称 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="机床图号" label="机床图号" min-width="100px">
|
|
|
|
|
<!--<el-table-column align="center" label="项目名称" prop="项目名称" min-width="100px" width="140px">-->
|
|
|
|
|
<!--<template slot-scope="scope">-->
|
|
|
|
|
<!--{{ scope.row.项目名称 }}-->
|
|
|
|
|
<!--</template>-->
|
|
|
|
|
<!--</el-table-column>-->
|
|
|
|
|
<el-table-column align="center" prop="机床图号" label="机床图号" min-width="100px" width="120px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.机床图号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="组号" min-width="80px">
|
|
|
|
|
<el-table-column align="center" label="组号" min-width="80px" width="70px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.组号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料类别" label="物料类别" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="物料类别" label="物料类别" min-width="100px" width="80px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料类别 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料品种" label="物料品种" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="物料品种" label="物料品种" min-width="100px" width="80px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料品种 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="备注" min-width="100px">
|
|
|
|
|
<el-table-column align="center" label="备注" min-width="100px" width="120px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.备注 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="供货商" label="供货商" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="供货商" label="供货商" min-width="100px" width="120px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.供货商 }}
|
|
|
|
|
</template>
|
|
|
|
|
@@ -267,6 +277,7 @@
|
|
|
|
|
placeholder="物料类别"
|
|
|
|
|
size="small"
|
|
|
|
|
clearable
|
|
|
|
|
style="width: 120px"
|
|
|
|
|
@change="searchMaterialVariety">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in MaterialCategory"
|
|
|
|
|
@@ -278,6 +289,7 @@
|
|
|
|
|
v-model="MaterialVarietyValue"
|
|
|
|
|
placeholder="物料品种"
|
|
|
|
|
size="small"
|
|
|
|
|
style="width: 120px"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in MaterialVariety"
|
|
|
|
|
@@ -288,9 +300,7 @@
|
|
|
|
|
<el-button type="success" size="small" icon="el-icon-search" style="margin-left: 10px;" @click="pageCurrent1=1;pageSize1=50;total1=0;searchTable1()">查询</el-button>
|
|
|
|
|
<el-radio v-model="radio" label="1" style="margin-left: 10px" @change="pageCurrent1=1;pageSize1=50;total1=0;searchTable1()">未分配</el-radio>
|
|
|
|
|
<el-radio v-model="radio" label="2" style="margin-left: 10px" @change="pageCurrent1=1;pageSize1=50;total1=0;searchTable1()">已分配</el-radio>
|
|
|
|
|
<div style="float:right;">
|
|
|
|
|
<span style="margin-left: 0">采购员:</span>
|
|
|
|
|
<el-select v-model="personValue" placeholder="采购员" size="small" style="width: 100px">
|
|
|
|
|
<el-select v-model="personValue" placeholder="采购员" size="small" style="width: 100px;margin-left: 120px">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in person"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
@@ -298,71 +308,65 @@
|
|
|
|
|
:value="item.value"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-button type="primary" size="small" icon="el-icon-menu" style="margin-left: 10px" @click="allocateTask1">分配</el-button>
|
|
|
|
|
<el-button type="danger" size="small" icon="el-icon-back" style="margin-left: 10px" @click="executeReturn1">退回</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<el-button type="danger" size="small" icon="el-icon-back" style="margin-left: 10px" @click="executeReturn1">打回</el-button>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row style="margin-bottom: 10px">
|
|
|
|
|
<el-table v-loading="loading" :data="tableData1" size="mini" height="800px" border stripe @selection-change="handleSelectionChange1">
|
|
|
|
|
<el-table v-loading="loading" :data="tableData1" size="mini" height="800px" style="width: 1255px" border stripe @selection-change="handleSelectionChange1">
|
|
|
|
|
<el-table-column :selectable="selectable" align="center" type="selection"/>
|
|
|
|
|
<el-table-column align="center" prop="询价状态编号" label="采购情况" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="询价状态编号" label="采购状态" min-width="100px" width="80px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag v-if="scope.row.人员编号===''" type="primary" size="small">未分配</el-tag>
|
|
|
|
|
<el-tag v-if="parseInt(scope.row.询价状态编号)===1&&scope.row.人员编号!==''" type="warning" size="small">未询价</el-tag>
|
|
|
|
|
<el-tag v-if="parseInt(scope.row.询价状态编号)===3&&parseInt(scope.row.采购状态编号)!==3" type="success" size="small">已询价</el-tag>
|
|
|
|
|
<el-tag v-if="parseInt(scope.row.采购状态编号)===3" type="info" size="small">已采购</el-tag>
|
|
|
|
|
<span v-if="scope.row.人员编号===''" type="primary" size="small">未分配</span>
|
|
|
|
|
<span v-if="parseInt(scope.row.询价状态编号)===1&&scope.row.人员编号!==''" type="warning" size="small">未询价</span>
|
|
|
|
|
<span v-if="parseInt(scope.row.询价状态编号)===3&&parseInt(scope.row.采购状态编号)!==3" type="success" size="small">已询价</span>
|
|
|
|
|
<span v-if="parseInt(scope.row.采购状态编号)===3" type="info" size="small">已采购</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料名称" label="名称" min-width="180px">
|
|
|
|
|
<el-table-column align="center" prop="物料名称" label="名称" min-width="180px" width="160" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料名称 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料规格" label="规格" min-width="300">
|
|
|
|
|
<el-table-column align="center" prop="物料规格" label="规格" min-width="300" width="150px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料规格 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料型号" label="图号或型号" min-width="150px">
|
|
|
|
|
<el-table-column align="center" prop="物料型号" label="图号或型号" min-width="150px" width="150px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料型号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="数量" min-width="80px">
|
|
|
|
|
<el-table-column align="center" label="数量" min-width="80px" width="80px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.零件数量 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="项目名称" label="项目名称" min-width="100px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.项目名称 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="机床图号" label="机床图号" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="机床图号" label="机床图号" min-width="100px" width="100px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.机床图号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="组号" min-width="80px">
|
|
|
|
|
<el-table-column align="center" label="组号" min-width="80px" width="70px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.组号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="物料类别" label="物料类别" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="物料类别" label="物料类别" min-width="100px" width="80px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料类别 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="物料品种" prop="物料品种" min-width="100px">
|
|
|
|
|
<el-table-column align="center" label="物料品种" prop="物料品种" min-width="100px" width="100px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.物料品种 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="备注" min-width="100px">
|
|
|
|
|
<el-table-column align="center" label="备注" min-width="100px" width="120px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.备注 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="供货商" label="供货商" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="供货商" label="供货商" min-width="100px" width="100px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.供货商 }}
|
|
|
|
|
</template>
|
|
|
|
|
@@ -447,8 +451,6 @@
|
|
|
|
|
<el-button type="success" size="small" icon="el-icon-search" style="margin-left: 10px;" @click="pageCurrent2=1;pageSize2=50;total2=0;searchTable2()">查询</el-button>
|
|
|
|
|
<el-radio v-model="radio" label="1" style="margin-left: 10px" @change="pageCurrent2=1;pageSize2=50;total2=0;searchTable2()">未分配</el-radio>
|
|
|
|
|
<el-radio v-model="radio" label="2" style="margin-left: 10px" @change="pageCurrent2=1;pageSize2=50;total2=0;searchTable2()">已分配</el-radio>
|
|
|
|
|
<div style="float:right">
|
|
|
|
|
<span style="margin-left: 0">采购员:</span>
|
|
|
|
|
<el-select v-model="personValue" placeholder="采购员" size="small" style="width: 100px">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in person"
|
|
|
|
|
@@ -457,13 +459,12 @@
|
|
|
|
|
:value="item.value"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-button type="primary" size="small" icon="el-icon-menu" style="margin-left: 10px" @click="allocateTask2">分配</el-button>
|
|
|
|
|
<el-button type="danger" size="small" icon="el-icon-back" style="margin-left: 10px" @click="executeReturn2">退回</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<el-button type="danger" size="small" icon="el-icon-back" style="margin-left: 10px" @click="executeReturn2">打回</el-button>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row style="margin-bottom: 10px">
|
|
|
|
|
<el-table v-loading="loading" :data="tableData2" size="mini" height="800px" border stripe @selection-change="handleSelectionChange2">
|
|
|
|
|
<el-table v-loading="loading" :data="tableData2" size="mini" height="800px" style="width: 1520px" border stripe @selection-change="handleSelectionChange2">
|
|
|
|
|
<el-table-column :selectable="selectable" align="center" type="selection"/>
|
|
|
|
|
<el-table-column align="center" prop="询价状态编号" label="采购情况" min-width="80px">
|
|
|
|
|
<el-table-column align="center" prop="询价状态编号" label="采购状态" min-width="80px" width="80px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag v-if="scope.row.人员编号===''" type="primary" size="small">未分配</el-tag>
|
|
|
|
|
<el-tag v-if="parseInt(scope.row.询价状态编号)===1&&scope.row.人员编号!==''" type="warning" size="small">未询价</el-tag>
|
|
|
|
|
@@ -471,17 +472,17 @@
|
|
|
|
|
<el-tag v-if="parseInt(scope.row.采购状态编号)===3" type="info" size="small">已采购</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="零件图号" label="图号" min-width="120px">
|
|
|
|
|
<el-table-column align="center" prop="零件图号" label="图号" min-width="120px" width="180px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.零件图号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="零件名称" label="名称" width="180px">
|
|
|
|
|
<el-table-column align="center" prop="零件名称" label="名称" width="140px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.零件名称 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="规格" label="规格" width="250px">
|
|
|
|
|
<el-table-column align="center" prop="规格" label="规格" width="150px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.规格 }}
|
|
|
|
|
</template>
|
|
|
|
|
@@ -496,27 +497,27 @@
|
|
|
|
|
{{ scope.row.零件数量 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="项目名称" label="项目名称" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="项目名称" label="项目名称" min-width="100px" width="140px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.项目名称 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="机床图号" label="机床图号" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="机床图号" label="机床图号" min-width="100px" width="120px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.机床图号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="组号" label="组号" min-width="80px">
|
|
|
|
|
<el-table-column align="center" prop="组号" label="组号" min-width="80px" width="70px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.组号 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" label="备注" min-width="100px">
|
|
|
|
|
<el-table-column align="center" label="备注" min-width="100px" width="120px" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.备注 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="供货商" label="供货商" min-width="100px">
|
|
|
|
|
<el-table-column align="center" prop="供货商" label="供货商" min-width="100px" width="190" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.供货商 }}
|
|
|
|
|
</template>
|
|
|
|
|
@@ -1147,4 +1148,20 @@ export default {
|
|
|
|
|
line-height: 46px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*.el-table td.gutter,.el-table th.gutter{*/
|
|
|
|
|
/*width: 15px;*/
|
|
|
|
|
/*border-right-width: 0;*/
|
|
|
|
|
/*border-bottom-width: 0;*/
|
|
|
|
|
/*padding: 0;*/
|
|
|
|
|
/*background: red;*/
|
|
|
|
|
/*}*/
|
|
|
|
|
</style>
|
|
|
|
|
<style>
|
|
|
|
|
/*.el-table td.gutter,.el-table th.gutter{*/
|
|
|
|
|
/*width: 15px;*/
|
|
|
|
|
/*border-right-width: 0;*/
|
|
|
|
|
/*border-bottom-width: 0;*/
|
|
|
|
|
/*padding: 0;*/
|
|
|
|
|
/*background: white;*/
|
|
|
|
|
/*}*/
|
|
|
|
|
</style>
|
|
|
|
|
|