|
@@ -0,0 +1,257 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <div v-show="!isShowDetail">
|
|
|
|
+ <!-- 筛选条件 -->
|
|
|
|
+ <div class="screen-container">
|
|
|
|
+ <el-form ref="screenForm" :model="screenForm" label-width="90px" 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="4">审核驳回</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="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="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">
|
|
|
|
+ <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="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="status">
|
|
|
|
+ <el-select v-model="screenForm.status" placeholder="全部">
|
|
|
|
+ <el-option label="全部" value=""></el-option>
|
|
|
|
+ <el-option :label="item.label" :value="item.value" v-for="(item, index) in select_status" :key="index"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </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="warning" icon="el-icon-close">退单</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="fr">
|
|
|
|
+ <el-button size="small" type="primary" icon="el-icon-download" @click="handleExport">导出数据</el-button>
|
|
|
|
+ </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="aaa" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
+ <el-table-column align="center" label="发货单号" prop="aaa" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
+ <el-table-column align="center" label="仓库" prop="aaa" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
+ <el-table-column align="center" label="经销商" prop="aaa" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
+ <el-table-column align="center" label="产品名称" prop="aaa" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
+ <el-table-column align="center" label="规格型号" prop="aaa" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
+ <el-table-column align="center" label="内急条码" prop="aaa" min-width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
+ <el-table-column align="center" label="外机条码" prop="aaa" min-width="160" 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="备注" prop="aaa" min-width="200" show-overflow-tooltip></el-table-column>
|
|
|
|
+ <el-table-column align="center" label="操作" width="120" fixed="right">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button type="text" @click="toDetail('detail', scope.row)">详情</el-button>
|
|
|
|
+ <el-button type="text" @click="toDetail('examine', scope.row)">审批</el-button>
|
|
|
|
+ </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>
|
|
|
|
+
|
|
|
|
+ <SalesDetail :listItem="queryItem" v-if="isShowDetail" @backListFormDetail="backList" />
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { COMMON_SELECT } from '@/utils/select_data'
|
|
|
|
+import { getList } from "@/api/supply/sales";
|
|
|
|
+import { downloadFiles } from '@/utils/util'
|
|
|
|
+import SalesDetail from "@/views/supply/sales/components/sales_detail";
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ components: {
|
|
|
|
+ SalesDetail,
|
|
|
|
+ },
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ currentPage: 1, // 当前页码
|
|
|
|
+ pageSize: 10, // 每页数量
|
|
|
|
+ listTotal: 0, // 列表总数
|
|
|
|
+ dataList: null, // 列表数据
|
|
|
|
+ listLoading: false, // 列表加载loading
|
|
|
|
+ screenForm: { // 筛选表单数据
|
|
|
|
+ orderNum: '',
|
|
|
|
+ jxsName: '',
|
|
|
|
+ chName: '',
|
|
|
|
+ model: '',
|
|
|
|
+ date: '',
|
|
|
|
+ jxsNum: '',
|
|
|
|
+ status: '',
|
|
|
|
+ },
|
|
|
|
+ select_status: [ // 筛选字段 - 状态
|
|
|
|
+ { label: '正常', value: true },
|
|
|
|
+ { label: '冻结', value: false }
|
|
|
|
+ ],
|
|
|
|
+
|
|
|
|
+ jumpType: '',
|
|
|
|
+ queryItem: {},
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ computed: {
|
|
|
|
+ isShowDetail() {
|
|
|
|
+ return this.queryItem.hasOwnProperty('adminUserId') && this.jumpType == 'detail';
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ 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,
|
|
|
|
+ userName: this.screenForm.account,
|
|
|
|
+ nickName: this.screenForm.nickName,
|
|
|
|
+ linkPhone: this.screenForm.phone,
|
|
|
|
+ email: this.screenForm.email,
|
|
|
|
+ status: this.screenForm.status,
|
|
|
|
+ };
|
|
|
|
+ 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();
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 进入详情
|
|
|
|
+ toDetail(type, item) {
|
|
|
|
+ this.jumpType = type;
|
|
|
|
+ this.queryItem = item;
|
|
|
|
+ console.log(this.queryItem);
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ backList() {
|
|
|
|
+ this.jumpType = '';
|
|
|
|
+ this.queryItem = {};
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 导出
|
|
|
|
+ handleExport() {
|
|
|
|
+ let screenData = {
|
|
|
|
+ userName: this.screenForm.account,
|
|
|
|
+ nickName: this.screenForm.nickName,
|
|
|
|
+ linkPhone: this.screenForm.phone,
|
|
|
|
+ email: this.screenForm.email,
|
|
|
|
+ status: this.screenForm.status,
|
|
|
|
+ };
|
|
|
|
+ downloadFiles('admin/user/mch/export', screenData);
|
|
|
|
+ },
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+
|
|
|
|
+</style>
|