This commit is contained in:
caoxinyu
2019-09-24 21:05:59 +08:00
parent 90c9e4e743
commit 681d3f3168
32 changed files with 81 additions and 81 deletions

View File

@@ -408,7 +408,7 @@
size="small"
style="margin-left: 10px"
@click="createInquirySheet">创建询价单</el-button>
<el-tooltip effect="dark" content="为选择的询价单添加物料" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="为选择的询价单添加物料" placement="top">
<el-button
type="warning"
size="small"
@@ -488,7 +488,7 @@
@current-change="handleCurrentChange2"/>
<el-button :disabled="tableData3.length===0" type="warning" size="mini" style="margin-left:10px;float: right" @click="printInquirySheet()">打印</el-button>
<el-button :disabled="tableData3.length===0" type="warning" size="mini" style="margin-left:10px;float: right" @click="exportInquirySheet()">导出</el-button>
<el-tooltip effect="dark" content="保存该询价单" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="保存该询价单" placement="top">
<el-button :disabled="tableData3.length===0" type="success" size="mini" style="float: right" @click="saveOrder()">保存</el-button>
</el-tooltip>
</div><hr>
@@ -551,7 +551,7 @@
</el-table-column>
<el-table-column label="操作" align="center" width="100" fixed="right">
<template slot-scope="scope">
<el-tooltip effect="dark" content="将该物料从询价单中删除" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="将该物料从询价单中删除" placement="top">
<el-button type="danger" size="mini" plain icon="el-icon-delete" @click="outInquirySheet(scope.row)">移出</el-button>
</el-tooltip>
</template>

View File

@@ -162,7 +162,7 @@
</template>
</el-table-column>
</el-table>
<el-tooltip content="一键删除交货期" placement="right" open-delay="1000">
<el-tooltip :open-delay="1000" content="一键删除交货期" placement="right">
<el-button type="danger" icon="el-icon-date" size="small" @click="deleteAllDate()"/>
</el-tooltip>
<span>①选择合同模板</span>
@@ -176,7 +176,7 @@
<!--<el-input v-model="actualTotal" size="small" style="width: 100px"/>-->
<!--<el-button type="primary" size="small" @click="submitTotal()">确认</el-button>-->
<span>②递交审批</span>
<el-tooltip effect="dark" content="核对信息后生成合同" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="核对信息后生成合同" placement="top">
<el-button type="success" size="small" @click="generateContract()">递交</el-button>
</el-tooltip>
<hr>

View File

@@ -19,7 +19,7 @@
icon="el-icon-search"
style="margin-left: 10px"
@click="pageCurrent00=1;pageSize00=10;total00=0;searchTable00()">查询</el-button>
<el-tooltip effect="dark" content="更改选中的零件的询价状态" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="更改选中的零件的询价状态" placement="top">
<el-button
type="primary"
size="small"
@@ -27,7 +27,7 @@
style="margin-left: 10px"
@click="changeInquiryStatus">变更询价状态</el-button>
</el-tooltip>
<el-tooltip effect="dark" content="把选中的零件绑定到离线合同,将相同零件合并到一条记录采购" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="把选中的零件绑定到离线合同,将相同零件合并到一条记录采购" placement="top">
<el-button
type="warning"
size="small"
@@ -232,7 +232,7 @@
</el-table-column>
<el-table-column label="设置" min-width="70" align="center">
<template slot-scope="scope">
<el-tooltip effect="dark" content="设置安全库存量" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="设置安全库存量" placement="top">
<el-button v-if="scope.row.changeSafeValue" type="mini" size="mini" icon="el-icon-circle-check-outline" @click="confirmEdit(scope.row)">确定</el-button>
<el-button
v-else
@@ -333,7 +333,7 @@
<template slot-scope="scope">
<el-button :disabled="arrival(scope.row)" type="warning" plain size="mini" @click="editOfflineContract(scope.row)">编辑</el-button>
<el-button :disabled="arrival(scope.row)" type="danger" plain size="mini" @click="deleteOfflineContract(scope.row)">删除</el-button>
<el-tooltip effect="dark" content="导出合同" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="导出合同" placement="top">
<el-button type="warning" size="mini" plain @click="exportExcel(scope.row)">导出</el-button>
</el-tooltip>
@@ -350,7 +350,7 @@
layout="total, sizes, prev, pager, next, jumper"
@size-change="handleSizeChange2"
@current-change="handleCurrentChange2"/>
<el-tooltip effect="dark" content="生成合同" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="生成合同" placement="top">
<el-button :disabled="disable" type="success" size="mini" style="float:right;margin-left:10px" @click="doneOfflineContact">生成</el-button>
</el-tooltip>
<el-button :disabled="disable" type="info" size="mini" style="float:right" @click="saveContract">保存</el-button>

View File

@@ -60,7 +60,7 @@
icon="el-icon-search"
style="margin-left:10px"
@click="total1=0;pageCurrent1=1;pageSize1=10;searchTable1()">查询</el-button>
<el-tooltip effect="dark" content="打印采购合同" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="打印采购合同" placement="top">
<el-button
type="warning"
size="small"

View File

@@ -30,7 +30,7 @@
<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:</span>
<el-input v-model="model" placeholder="型号" size="small" clearable style="width:200px"/>
<el-button type="success" size="small" icon="el-icon-search" style="margin-left: 15px" @click="searchTable()">查询</el-button>
<el-tooltip effect="dark" content="将全部采购件导出到表格" placement="top" open-delay="1000">
<el-tooltip :open-delay="1000" effect="dark" content="将全部采购件导出到表格" placement="top">
<el-button type="warning" size="small" icon="el-icon-download" style="margin-left: 15px" @click="exportDetail()">导出</el-button>
</el-tooltip>
</el-row>

View File

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