105 lines
3.8 KiB
Vue
105 lines
3.8 KiB
Vue
<template>
|
|
<div>
|
|
<!-- 搜索 -->
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="90px">
|
|
<el-form-item label="作废时间" prop="searchTimeArray">
|
|
<el-date-picker
|
|
v-model="queryParams.searchTimeArray"
|
|
type="daterange"
|
|
range-separator="至"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item v-if="soByType && !goodsYes" label="供应商" prop="supplierId">
|
|
<SupplierChoose />
|
|
</el-form-item>
|
|
<el-form-item label="单据号" prop="soNo">
|
|
<el-input v-model="queryParams.soNo" style="width: 18rem" placeholder="请输入单号、备注"/>
|
|
</el-form-item>
|
|
<el-form-item v-if="!soByType" label="领料人" prop="userId">
|
|
<StaffChoose @selected="getStaff"/>
|
|
</el-form-item>
|
|
<el-form-item :label="soByType ? '采购门店' : '领料门店'" prop="corpId">
|
|
<CorpChoose />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<!-- 操作 -->
|
|
<el-row :gutter="10" class="mb8">
|
|
<right-toolbar :showSearch.sync="showSearch"></right-toolbar>
|
|
</el-row>
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
|
<el-table-column label="序号" align="center">
|
|
<template scope="scope">
|
|
<span>{{ scope.$index + 1 }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="单号" align="center" prop="soNo" width="180" />
|
|
<el-table-column label="数量" align="center" width="150" prop="name" />
|
|
<el-table-column label="金额" align="center" prop="totalPrice" width="150" />
|
|
<el-table-column :label="soByType ? '采购员' : '领料人'" align="center" prop="userName" width="150" />
|
|
<el-table-column v-if="soByType" label="供应商" align="center" prop="supplierName" width="150" />
|
|
<el-table-column :label="soByType ? '入库时间' : '领料时间'" align="center" prop="soTime" width="150" />
|
|
<el-table-column label="登记时间" align="center" prop="createTime" width="150" />
|
|
<el-table-column label="作废时间" align="center" prop="createTime" width="150" />
|
|
<el-table-column label="作废人" align="center" prop="createTime" width="150" />
|
|
<el-table-column label="门店" align="center" prop="corpName" width="180" />
|
|
<el-table-column label="作废备注" align="center" prop="remark" width="180" />
|
|
</el-table>
|
|
<!-- 分页 -->
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import CorpChoose from "@/views/repair/Components/CorpChoose.vue";
|
|
import SupplierChoose from "@/views/repair/stockOperate/Components/SupplierChoose.vue";
|
|
import StaffChoose from "@/views/repair/Components/StaffChoose.vue";
|
|
|
|
export default {
|
|
name: "SoVoid",
|
|
components: {StaffChoose, SupplierChoose, CorpChoose},
|
|
props: {
|
|
soByType: {
|
|
type: Boolean,
|
|
defaultValue: true,
|
|
required: true
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
queryParams:{
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
searchTimeArray:[],
|
|
soNo: null,
|
|
supplierId: null,
|
|
supplierName: null,
|
|
corpId: null,
|
|
userId: null,
|
|
userName: null
|
|
},
|
|
showSearch: true,
|
|
loading: false,
|
|
list: [],
|
|
}
|
|
},
|
|
methods: {
|
|
// 子组件回调
|
|
getStaff(data){
|
|
this.queryParams.userId = data.id
|
|
this.queryParams.userName = data.name
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|