|
|
@ -92,21 +92,22 @@
|
|
|
|
@current-change="handleDetail"
|
|
|
|
@current-change="handleDetail"
|
|
|
|
:default-sort="defaultSort" @sort-change="handleSortChange">
|
|
|
|
:default-sort="defaultSort" @sort-change="handleSortChange">
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
<el-table-column label="领用单号" prop="billNo"></el-table-column>
|
|
|
|
<el-table-column label="领用单号" prop="billNo" width="140"></el-table-column>
|
|
|
|
<el-table-column label="领用部门" prop="deptName"></el-table-column>
|
|
|
|
<el-table-column label="领用部门" prop="deptName" width="100"></el-table-column>
|
|
|
|
<el-table-column label="领用仓库" prop="invName"></el-table-column>
|
|
|
|
<el-table-column label="领用仓库" prop="invName" width="100"></el-table-column>
|
|
|
|
<el-table-column label="往来信息" prop="targetInvName" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
<el-table-column label="往来信息" prop="targetInvName" show-overflow-tooltip="true" width="180"></el-table-column>
|
|
|
|
<el-table-column label="单据状态" prop="status">
|
|
|
|
<el-table-column label="单据状态" prop="status" width="120">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag :type="(scope.row.status)">
|
|
|
|
<el-tag :type="(scope.row.status)">
|
|
|
|
{{ statusMap[scope.row.status] }}
|
|
|
|
{{ statusMap[scope.row.status] }}
|
|
|
|
</el-tag>
|
|
|
|
</el-tag>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column label="备注" prop="remark" show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
|
<el-table-column label="创建时间" prop="createTime"
|
|
|
|
<el-table-column label="创建时间" prop="createTime"
|
|
|
|
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
|
|
|
|
sortable="custom" :sort-orders="['ascending', 'descending']" width="160"></el-table-column>
|
|
|
|
<!-- <el-table-column label="领用类型" prop="billType"></el-table-column>-->
|
|
|
|
<!-- <el-table-column label="领用类型" prop="billType"></el-table-column>-->
|
|
|
|
<el-table-column label="操作">
|
|
|
|
<el-table-column label="操作" width="160" fixed="right">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.status==3 "
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.status==3 "
|
|
|
|
@click.native="newDistributionForm(scope.$index, scope.row)">编辑
|
|
|
|
@click.native="newDistributionForm(scope.$index, scope.row)">编辑
|
|
|
|