|
@@ -0,0 +1,437 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
|
|
|
+ <el-form-item label="审批标题" prop="title">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.title"
|
|
|
+ placeholder="请输入审批标题"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用途" prop="whatUse">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.whatUse"
|
|
|
+ placeholder="请输入用途"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="物品类型" prop="goodsType">
|
|
|
+ <el-select v-model="queryParams.goodsType" placeholder="请选择物品类型" clearable size="small">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.reserve_type"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="物品名称" prop="goodsName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.goodsName"
|
|
|
+ placeholder="请输入物品名称"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="规格" prop="goodsGg">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.goodsGg"
|
|
|
+ placeholder="请输入规格"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="需求数量" prop="wantUseAmount">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.wantUseAmount"
|
|
|
+ placeholder="请输入需求数量"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="预估单价" prop="ygUnitPrice">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.ygUnitPrice"
|
|
|
+ placeholder="请输入预估单价"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="预估总价" prop="ygTotalPrices">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.ygTotalPrices"
|
|
|
+ placeholder="请输入预估总价"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="采购状态" prop="purchaseStatus">
|
|
|
+ <el-select v-model="queryParams.purchaseStatus" placeholder="请选择采购状态" clearable size="small">
|
|
|
+ <el-option label="请选择字典生成" value="" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="申请部门" prop="deptId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.deptId"
|
|
|
+ placeholder="请输入申请部门"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="申请人" prop="applyUserName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.applyUserName"
|
|
|
+ placeholder="请输入申请人"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ icon="el-icon-plus"
|
|
|
+ size="mini"
|
|
|
+ @click="handleAdd"
|
|
|
+ v-hasPermi="['flow:purchaseRecord:add']"
|
|
|
+ >新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ plain
|
|
|
+ icon="el-icon-edit"
|
|
|
+ size="mini"
|
|
|
+ :disabled="single"
|
|
|
+ @click="handleUpdate"
|
|
|
+ v-hasPermi="['flow:purchaseRecord:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ plain
|
|
|
+ icon="el-icon-delete"
|
|
|
+ size="mini"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleDelete"
|
|
|
+ v-hasPermi="['flow:purchaseRecord:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ :loading="exportLoading"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['flow:purchaseRecord:export']"
|
|
|
+ >导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-table v-loading="loading" :data="purchaseRecordList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="主键" align="center" prop="id" />
|
|
|
+ <el-table-column label="审批标题" align="center" prop="title" />
|
|
|
+ <el-table-column label="用途" align="center" prop="whatUse" />
|
|
|
+ <el-table-column label="物品类型" align="center" prop="goodsType">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag :options="dict.type.reserve_type" :value="scope.row.goodsType"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="物品名称" align="center" prop="goodsName" />
|
|
|
+ <el-table-column label="规格" align="center" prop="goodsGg" />
|
|
|
+ <el-table-column label="需求数量" align="center" prop="wantUseAmount" />
|
|
|
+ <el-table-column label="预估单价" align="center" prop="ygUnitPrice" />
|
|
|
+ <el-table-column label="预估总价" align="center" prop="ygTotalPrices" />
|
|
|
+ <el-table-column label="采购状态" align="center" prop="purchaseStatus" />
|
|
|
+ <el-table-column label="图片" align="center" prop="photos" />
|
|
|
+ <el-table-column label="附件" align="center" prop="involveFile" />
|
|
|
+ <el-table-column label="申请部门" align="center" prop="deptId" />
|
|
|
+ <el-table-column label="申请人" align="center" prop="applyUserName" />
|
|
|
+ <el-table-column label="申请原因" align="center" prop="remark" />
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
+ v-hasPermi="['flow:purchaseRecord:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['flow:purchaseRecord:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <pagination
|
|
|
+ v-show="total>0"
|
|
|
+ :total="total"
|
|
|
+ :page.sync="queryParams.pageNum"
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList"
|
|
|
+ />
|
|
|
+
|
|
|
+ <!-- 添加或修改采购流程记录对话框 -->
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" >
|
|
|
+ <el-form-item label="审批标题" prop="title">
|
|
|
+ <el-input v-model="form.title" placeholder="请输入审批标题" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用途" prop="whatUse">
|
|
|
+ <el-input v-model="form.whatUse" placeholder="请输入用途" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="物品类型" prop="goodsType">
|
|
|
+ <el-select v-model="form.goodsType" placeholder="请选择物品类型">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.reserve_type"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="物品名称" prop="goodsName">
|
|
|
+ <el-input v-model="form.goodsName" placeholder="请输入物品名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="规格" prop="goodsGg">
|
|
|
+ <el-input v-model="form.goodsGg" placeholder="请输入规格" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="需求数量" prop="wantUseAmount">
|
|
|
+ <el-input v-model="form.wantUseAmount" placeholder="请输入需求数量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="预估单价" prop="ygUnitPrice">
|
|
|
+ <el-input v-model="form.ygUnitPrice" placeholder="请输入预估单价" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="预估总价" prop="ygTotalPrices">
|
|
|
+ <el-input v-model="form.ygTotalPrices" placeholder="请输入预估总价" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="采购状态">
|
|
|
+ <el-radio-group v-model="form.purchaseStatus">
|
|
|
+ <el-radio label="1">请选择字典生成</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="图片" prop="photos">
|
|
|
+ <el-input v-model="form.photos" type="textarea" placeholder="请输入内容" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="附件">
|
|
|
+ <fileUpload v-model="form.involveFile"/>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="申请部门" prop="deptId">
|
|
|
+ <el-input v-model="form.deptId" placeholder="请输入申请部门" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="申请人" prop="applyUserName">
|
|
|
+ <el-input v-model="form.applyUserName" placeholder="请输入申请人" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="申请原因" prop="remark">
|
|
|
+ <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { listPurchaseRecord, getPurchaseRecord, delPurchaseRecord, addPurchaseRecord, updatePurchaseRecord, exportPurchaseRecord } from "@/api/flow/purchaseRecord";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "PurchaseRecord",
|
|
|
+ dicts: ['reserve_type'],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ // 导出遮罩层
|
|
|
+ exportLoading: false,
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // 采购流程记录表格数据
|
|
|
+ purchaseRecordList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ title: null,
|
|
|
+ whatUse: null,
|
|
|
+ goodsType: null,
|
|
|
+ goodsName: null,
|
|
|
+ goodsGg: null,
|
|
|
+ wantUseAmount: null,
|
|
|
+ ygUnitPrice: null,
|
|
|
+ ygTotalPrices: null,
|
|
|
+ purchaseStatus: null,
|
|
|
+ photos: null,
|
|
|
+ involveFile: null,
|
|
|
+ deptId: null,
|
|
|
+ applyUserName: null,
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 查询采购流程记录列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ listPurchaseRecord(this.queryParams).then(response => {
|
|
|
+ this.purchaseRecordList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 取消按钮
|
|
|
+ cancel() {
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
+ },
|
|
|
+ // 表单重置
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ id: null,
|
|
|
+ title: null,
|
|
|
+ whatUse: null,
|
|
|
+ goodsType: null,
|
|
|
+ goodsName: null,
|
|
|
+ goodsGg: null,
|
|
|
+ wantUseAmount: null,
|
|
|
+ ygUnitPrice: null,
|
|
|
+ ygTotalPrices: null,
|
|
|
+ purchaseStatus: "0",
|
|
|
+ photos: null,
|
|
|
+ involveFile: null,
|
|
|
+ deptId: null,
|
|
|
+ applyUserName: null,
|
|
|
+ isDelete: null,
|
|
|
+ createBy: null,
|
|
|
+ createTime: null,
|
|
|
+ updateBy: null,
|
|
|
+ updateTime: null,
|
|
|
+ remark: null
|
|
|
+ };
|
|
|
+ this.resetForm("form");
|
|
|
+ },
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ handleQuery() {
|
|
|
+ this.queryParams.pageNum = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ resetQuery() {
|
|
|
+ this.resetForm("queryForm");
|
|
|
+ this.handleQuery();
|
|
|
+ },
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange(selection) {
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
+ this.single = selection.length!==1
|
|
|
+ this.multiple = !selection.length
|
|
|
+ },
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd() {
|
|
|
+ this.reset();
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加采购流程记录";
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset();
|
|
|
+ const id = row.id || this.ids
|
|
|
+ getPurchaseRecord(id).then(response => {
|
|
|
+ this.form = response.data;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改采购流程记录";
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ if (this.form.id != null) {
|
|
|
+ updatePurchaseRecord(this.form).then(() => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ addPurchaseRecord(this.form).then(() => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const ids = row.id || this.ids;
|
|
|
+ this.$modal.confirm('是否确认删除采购流程记录编号为"' + ids + '"的数据项?').then(function() {
|
|
|
+ return delPurchaseRecord(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
+ }).catch(() => {});
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ const queryParams = this.queryParams;
|
|
|
+ this.$modal.confirm('是否确认导出所有采购流程记录数据项?').then(() => {
|
|
|
+ this.exportLoading = true;
|
|
|
+ return exportPurchaseRecord(queryParams);
|
|
|
+ }).then(response => {
|
|
|
+ this.$download.name(response.msg);
|
|
|
+ this.exportLoading = false;
|
|
|
+ }).catch(() => {});
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|