|
@@ -0,0 +1,274 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <div v-show="!isShowDetail && !isShowForm">
|
|
|
+ <!-- 筛选条件 -->
|
|
|
+ <div class="screen-container">
|
|
|
+ <el-form ref="screenForm" :model="screenForm" label-width="100px" size="small" label-position="left">
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :xs="24" :sm="24" :lg="24">
|
|
|
+ <el-form-item prop="orderNum" label-width="0">
|
|
|
+ <el-radio-group v-model="screenForm.status" size="medium">
|
|
|
+ <el-radio-button label="1">全部</el-radio-button>
|
|
|
+ <el-radio-button label="2">已保存</el-radio-button>
|
|
|
+ <el-radio-button label="3">待审核</el-radio-button>
|
|
|
+ <el-radio-button label="3">审核通过</el-radio-button>
|
|
|
+ <el-radio-button label="3">审核驳回</el-radio-button>
|
|
|
+ <el-radio-button label="3">已发货</el-radio-button>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="发货申请单" prop="orderNum">
|
|
|
+ <el-input v-model="screenForm.orderNum" placeholder="请输入发货申请单"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="仓库" prop="orderNum">
|
|
|
+ <el-input v-model="screenForm.orderNum" placeholder="请输入仓库"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="经销商编码" prop="jxsName">
|
|
|
+ <el-input v-model="screenForm.jxsName" placeholder="请输入经销商编码"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="经销商名称" prop="jxsNum">
|
|
|
+ <el-input v-model="screenForm.jxsNum" placeholder="请输入经销商名称"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="发货申请日期" prop="date">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="screenForm.date"
|
|
|
+ type="datetimerange"
|
|
|
+ range-separator="至"
|
|
|
+ style="width: 100%;"
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="产品名称" prop="chName">
|
|
|
+ <el-input v-model="screenForm.chName" placeholder="请输入产品名称"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="规格型号" prop="model">
|
|
|
+ <el-input v-model="screenForm.model" placeholder="请输入规格型号"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6" class="tr">
|
|
|
+ <el-form-item label="">
|
|
|
+ <el-button size="small" @click="resetScreenForm">清空</el-button>
|
|
|
+ <el-button size="small" type="primary" @click="submitScreenForm">搜索</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="mymain-container">
|
|
|
+ <div class="btn-group clearfix">
|
|
|
+ <div class="fl">
|
|
|
+ <el-button size="small" type="primary" icon="el-icon-plus" @click="toForm()">新增</el-button>
|
|
|
+ </div>
|
|
|
+ <div class="fr">
|
|
|
+ <ExportButton :exUrl="'admin/user/mch/export'" :exParams="exParams" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="table">
|
|
|
+ <el-table v-loading="listLoading" :data="dataList" element-loading-text="Loading" border fit highlight-current-row stripe>
|
|
|
+ <el-table-column align="center" label="发货申请单" prop="shipOrderNo" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="发货申请日期" prop="shipTime" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="仓库" prop="stockName" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="工程登录单号" prop="projectNumber" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="工程名称" prop="projectName" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="使用单位" prop="unit" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="经销商编码" prop="specification" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="经销商名称" prop="unit" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="产品名称" prop="number" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="规格型号" prop="number" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="计量单位" prop="number" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="数量" prop="remark" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="备注信息" prop="createBy" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="制单人" prop="createTime" min-width="100" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="制单日期" prop="aaa" min-width="100" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="审核人" prop="aaa" min-width="200" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="审核日期" prop="aaa" min-width="100" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="审核状态" prop="aaa" min-width="100" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column align="center" label="操作" width="160" fixed="right">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" @click="toForm(scope.row)">编辑</el-button>
|
|
|
+ <el-button type="text" @click="toDetail(scope.row)">详情</el-button>
|
|
|
+ <el-popconfirm v-if="scope.row.status" style="margin-left: 10px;" title="确定删除吗?" @onConfirm="handleDelete(scope.row.id)" >
|
|
|
+ <el-button slot="reference" type="text">删除</el-button>
|
|
|
+ </el-popconfirm>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="pagination clearfix">
|
|
|
+ <div class="fr">
|
|
|
+ <el-pagination
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-sizes="[10, 20, 30, 50]"
|
|
|
+ :page-size="10"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="listTotal">
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <EnginDetail :listItem="queryItem" v-if="isShowDetail" @backListFormDetail="backList" />
|
|
|
+ <EnginForm :listItem="queryItem" v-if="isShowForm" @backListFormDetail="backList" />
|
|
|
+
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { getList } from "@/api/supply/engin";
|
|
|
+import EnginDetail from "@/views/supply/engin/components/engin_detail";
|
|
|
+import EnginForm from "@/views/supply/engin/components/engin_form";
|
|
|
+
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ EnginDetail,
|
|
|
+ EnginForm,
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ currentPage: 1, // 当前页码
|
|
|
+ pageSize: 10, // 每页数量
|
|
|
+ listTotal: 0, // 列表总数
|
|
|
+ dataList: null, // 列表数据
|
|
|
+ listLoading: false, // 列表加载loading
|
|
|
+ screenForm: { // 筛选表单数据
|
|
|
+ orderNum: '',
|
|
|
+ jxsName: '',
|
|
|
+ chName: '',
|
|
|
+ model: '',
|
|
|
+ date: '',
|
|
|
+ jxsNum: '',
|
|
|
+ status: '',
|
|
|
+ },
|
|
|
+
|
|
|
+ queryItem: {},
|
|
|
+ isShowDetail: false,
|
|
|
+ isShowForm: false,
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ computed: {
|
|
|
+ exParams() {
|
|
|
+ return {
|
|
|
+ retreatOrderNo: this.screenForm.orderNum,
|
|
|
+ customerNumber: this.screenForm.jxsNum,
|
|
|
+ customerName: this.screenForm.jxsName,
|
|
|
+ productName: this.screenForm.chName,
|
|
|
+ specification: this.screenForm.model,
|
|
|
+ startTime: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
|
+ endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
+ status: 2, // 1:发货单,2:工程发货单
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+
|
|
|
+ methods: {
|
|
|
+ // 查询按钮权限
|
|
|
+ checkBtnRole(value) {
|
|
|
+ // let btnRole = this.$route.meta.roles;
|
|
|
+ // if(!btnRole) {return true}
|
|
|
+ // let index = btnRole.indexOf(value);
|
|
|
+ // return index >= 0;
|
|
|
+ return true
|
|
|
+ },
|
|
|
+
|
|
|
+ // 查询列表
|
|
|
+ getList() {
|
|
|
+ this.listLoading = true;
|
|
|
+
|
|
|
+ let params = {
|
|
|
+ pageNum: this.currentPage,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ retreatOrderNo: this.screenForm.orderNum,
|
|
|
+ customerNumber: this.screenForm.jxsNum,
|
|
|
+ customerName: this.screenForm.jxsName,
|
|
|
+ productName: this.screenForm.chName,
|
|
|
+ specification: this.screenForm.model,
|
|
|
+ startTime: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
|
+ endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
+ status: 2, // 1:发货单,2:工程发货单
|
|
|
+ };
|
|
|
+ getList(params).then((res) => {
|
|
|
+ this.dataList = res.data.records;
|
|
|
+ this.listTotal = res.data.total;
|
|
|
+ this.listLoading = false;
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 提交筛选表单
|
|
|
+ submitScreenForm() {
|
|
|
+ this.currentPage = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+
|
|
|
+ // 重置筛选表单
|
|
|
+ resetScreenForm() {
|
|
|
+ this.$refs.screenForm.resetFields();
|
|
|
+ this.currentPage = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+
|
|
|
+ // 更改每页数量
|
|
|
+ handleSizeChange(val) {
|
|
|
+ this.pageSize = val;
|
|
|
+ this.currentPage = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+
|
|
|
+ // 更改当前页
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.currentPage = val;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+
|
|
|
+ // 进入表单
|
|
|
+ toForm(item) {
|
|
|
+ this.queryItem = item;
|
|
|
+ this.isShowForm = true;
|
|
|
+ },
|
|
|
+
|
|
|
+ // 进入详情
|
|
|
+ toDetail(item) {
|
|
|
+ this.queryItem = item;
|
|
|
+ this.isShowDetail = true;
|
|
|
+ },
|
|
|
+
|
|
|
+ backList() {
|
|
|
+ this.queryItem = {};
|
|
|
+ this.isShowDetail = false;
|
|
|
+ this.isShowForm = false;
|
|
|
+ },
|
|
|
+
|
|
|
+ handleDelete(id) {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+
|
|
|
+</style>
|