采购合同查询(车)

This commit is contained in:
zhangdingyu
2019-09-20 09:43:36 +08:00
parent 355481febe
commit 2557283319

View File

@@ -1,7 +1,7 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<el-card> <el-card>
<span>:</span> <span> &nbsp; &nbsp;:</span>
<el-select v-model="contractNumValue" placeholder="合同号" size="small" filterable clearable> <el-select v-model="contractNumValue" placeholder="合同号" size="small" filterable clearable>
<el-option <el-option
v-for="item in contractNum" v-for="item in contractNum"
@@ -15,9 +15,9 @@
<span>采购员:</span> <span>采购员:</span>
<el-input v-model="buyerName" placeholder="请双击选择" size="small" clearable style="width:120px" @dblclick.native="initBuyer();dialogVisible2=true;submitDisable=true"/> <el-input v-model="buyerName" placeholder="请双击选择" size="small" clearable style="width:120px" @dblclick.native="initBuyer();dialogVisible2=true;submitDisable=true"/>
<span>供应商:</span> <span>供应商:</span>
<el-input v-model="supplierName" placeholder="供应商" size="small" clearable/> <el-input v-model="supplierName" placeholder="供应商" size="small" clearable/><br>
<span>审批情况:</span> <span>审批情况:</span>
<el-select v-model="approvalValue" placeholder="审批情况" size="small" clearable> <el-select v-model="approvalValue" placeholder="审批情况" size="small" clearable style="margin-top: 5px">
<el-option <el-option
v-for="item in approval" v-for="item in approval"
:key="item.value" :key="item.value"
@@ -28,7 +28,7 @@
type="success" type="success"
size="small" size="small"
icon="el-icon-search" icon="el-icon-search"
style="margin-left:10px" style="margin-left:10px;margin-top: 5px"
@click="total1=0;pageCurrent1=1;pageSize1=10;searchTable1()">查询</el-button> @click="total1=0;pageCurrent1=1;pageSize1=10;searchTable1()">查询</el-button>
</el-card> </el-card>
@@ -88,10 +88,10 @@
{{ scope.row.未通过原因 }} {{ scope.row.未通过原因 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" align="center"> <el-table-column label="操作" align="center" min-width="100px">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="warning" size="mini" @click="exportTable()">打印</el-button> <el-button type="warning" plain size="mini" @click="exportTable()">打印</el-button>
<el-button type="danger" size="mini" @click="Disable(scope.row)">禁用</el-button> <el-button type="danger" plain size="mini" @click="Disable(scope.row)">禁用</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>