This commit is contained in:
zhangdingyu
2019-09-23 17:13:52 +08:00
parent b188e2a27d
commit f8c7e9afc3
8 changed files with 44 additions and 34 deletions

View File

@@ -59,7 +59,9 @@
</el-table-column>
<el-table-column label="操作" align="center" width="120" fixed="right">
<template slot-scope="scope">
<el-button :disabled="Number(scope.row.是否关联)===1" size="mini" type="warning" plain @click="connectBacklog(scope.row)">关联物料</el-button>
<el-tooltip effect="dark" content="将滞货与项目关联并使用" placement="top" open-delay="1200">
<el-button :disabled="Number(scope.row.是否关联)===1" size="mini" type="warning" plain @click="connectBacklog(scope.row)">关联物料</el-button>
</el-tooltip>
</template>
</el-table-column>
</el-table>

View File

@@ -46,7 +46,7 @@
height="300px"
highlight-current-row
@row-click="searchTable2">
<el-table-column type="expand">
<el-table-column type="expand" label="详情">
<template slot-scope="scope">
<el-form id="table" label-position="left" inline class="demo-table-expand">
<el-row>

View File

@@ -212,13 +212,15 @@
</el-table-column>
<el-table-column align="center" label="撤回分配" min-width="100px" fixed="right">
<template slot-scope="scope">
<el-button
:disabled="!(parseInt(scope.row.询价状态编号)===1&&scope.row.人员编号!=='')"
type="primary"
size="mini"
plain=""
icon="el-icon-back"
@click="retract(scope.row)">撤回</el-button>
<el-tooltip effect="dark" content="撤回已分配的采购任务" placement="top" open-delay="1200">
<el-button
:disabled="!(parseInt(scope.row.询价状态编号)===1&&scope.row.人员编号!=='')"
type="primary"
size="mini"
plain
icon="el-icon-back"
@click="retract(scope.row)">撤回</el-button>
</el-tooltip>
</template>
</el-table-column>
</el-table>