This commit is contained in:
bryan sun
2019-11-09 17:54:00 +08:00
parent 1f12f9532d
commit 105cce9a94
10 changed files with 377 additions and 306 deletions

View File

@@ -23,10 +23,10 @@
<!--<div style="float: right; color: #8492a6; font-size: 13px">{{ item.name }}</div>-->
<!--</el-option>-->
<!--</el-select>-->
<!--<span>合同编号:</span>-->
<el-input v-model="contractNumber" placeholder="合同编号" size="small" clearable style="width:200px"/>
<!--<span>供应商:</span>-->
<el-input v-model="supplierName" placeholder="供应商" size="small" clearable style="width:180px"/>
<!--<span>合同编号:</span>-->
<el-input v-model="contractNumber" placeholder="合同编号" size="small" clearable style="width:200px"/>
<!--<span>采购员:</span>-->
<el-select v-model="personValue" placeholder="采购员" size="small" clearable style="width: 100px">
<el-option
@@ -182,13 +182,13 @@
<!-- {{ scope.row.审批时间 ? scope.row.审核时间.substr(0,9) : '—' }}-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="处理" align="center" width="110">
<template slot-scope="scope">
<el-tag v-if="Number(scope.row.是否未通过)===1&&Number(scope.row.不通过处理)===1" type="success" size="small">处理完成</el-tag>
<el-button v-else-if="Number(scope.row.是否未通过)===1&&Number(scope.row.不通过处理)===0" plain type="primary" size="mini" @click="done(scope.row)">点击处理</el-button>
<span v-else></span>
</template>
</el-table-column>
<!-- <el-table-column label="处理" align="center" width="110">-->
<!-- <template slot-scope="scope">-->
<!-- <el-tag v-if="Number(scope.row.是否未通过)===1&&Number(scope.row.不通过处理)===1" type="success" size="small">处理完成</el-tag>-->
<!-- <el-button v-else-if="Number(scope.row.是否未通过)===1&&Number(scope.row.不通过处理)===0" plain type="primary" size="mini" @click="done(scope.row)">点击处理</el-button>-->
<!-- <span v-else></span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column label="到货进度" align="center" min-width="150">-->
<!-- <template slot-scope="scope">-->
<!-- <el-progress-->