123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 |
- <template>
- <div class="app-container">
- <!-- 筛选条件 -->
- <div>
- <el-form
- ref="screenForm"
- :model="screenForm"
- label-width="70px"
- size="small"
- label-position="left"
- >
- <el-row :gutter="20">
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="名称" prop="name">
- <el-input
- placeholder="请输入名称"
- v-model="screenForm.name"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="型号" prop="model">
- <el-input
- type="number"
- placeholder="请输入型号"
- v-model.number="screenForm.model"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="编码" prop="number">
- <el-input
- type="number"
- placeholder="请输入编码"
- v-model.number="screenForm.number"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="体积" prop="volume">
- <el-input
- type="number"
- placeholder="请输入体积"
- v-model.number="screenForm.volume"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :lg="24" 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="btn-group clearfix">
- <div class="fl">
- <el-button
- type="primary"
- size="small"
- @click="(showDialogForm = true), (type = 1)"
- >新增</el-button
- >
- <el-popconfirm
- confirm-button-text="好的"
- cancel-button-text="不用了"
- icon="el-icon-info"
- icon-color="red"
- :show-file-list="false"
- title="内容确定删除吗?"
- @onConfirm="hanleDeleteAll"
- >
- <el-button
- slot="reference"
- type="primary"
- size="small"
- class="textColor el-popover-left"
- >删除</el-button
- >
- </el-popconfirm>
- </div>
- <div class="fr">
- <!-- <el-upload
- class="import-btn upload-demo"
- :action="baseURL + 'student/import'"
- :http-request="handleImport"
- :file-list="importFileList"
- :show-file-list="false"
- >
- <el-button type="primary" size="small">导入</el-button>
- </el-upload> -->
- <el-button type="primary" size="small" @click="handleExport"
- >导出</el-button
- >
- <el-button type="primary" size="small" icon="el-icon-printer" v-print="printObj">打 印</el-button>
- </div>
- </div>
- <div class="mymain-container" id="printMe">
- <!-- 列表 -->
- <div class="table">
- <el-table
- v-loading="listLoading"
- :data="dataList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- @select-all="hanleSelectAll"
- @select="hanleSelectAll"
- stripe
- >
- <el-table-column type="selection" align="center"></el-table-column>
- <el-table-column
- align="center"
- label="类型"
- prop="type"
- min-width="160"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{scope.row.type=='INNER'?'内机':scope.row.type=='OUTSIDE'?'外机':'配件'}}
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="名称"
- prop="name"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="型号"
- prop="model"
- 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="volume"
- 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="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="更新人"
- prop="updateBy"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="更新时间"
- prop="updateTime"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="操作"
- min-width="160"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <el-button
- type="text"
- class="textColor"
- @click="editFn(scope.row.id, scope.row)"
- >编辑</el-button
- >
- <el-popconfirm
- confirm-button-text="好的"
- cancel-button-text="不用了"
- icon="el-icon-info"
- icon-color="red"
- title="内容确定删除吗?"
- @onConfirm="hanleDeleteAll(scope.row.id)"
- >
- <el-button
- slot="reference"
- type="text"
- class="textColor el-popover-left"
- >删除</el-button
- >
- </el-popconfirm>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 分页 -->
- <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>
- <!-- 弹窗 -->
- <el-dialog
- title="产品信息"
- :visible.sync="showDialogForm"
- width="30%"
- :show-close="false"
- :close-on-click-modal="false"
- >
- <el-form
- ref="diaLogForm"
- :model="diaLogForm"
- label-width="70px"
- size="small"
- label-position="left"
- >
- <el-form-item label="类型">
- <el-select v-model="diaLogForm.type" filterable placeholder="请选择">
- <el-option
- v-for="item in distList"
- :key="item.dictCode"
- :label="item.dictValue"
- :value="item.dictCode"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="名称">
- <el-input v-model="diaLogForm.name" size="normal"></el-input>
- </el-form-item>
- <el-form-item label="型号">
- <el-input v-model="diaLogForm.model" size="normal"></el-input>
- </el-form-item>
- <el-form-item label="编码">
- <el-input v-model="diaLogForm.number" size="normal"></el-input>
- </el-form-item>
- <el-form-item label="体积">
- <el-input v-model="diaLogForm.volume" size="normal"></el-input>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="(showDialogForm = false), resetInfo()"
- >取 消</el-button
- >
- <el-button type="primary" @click="hanleInfo">确 定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import Mixin from "@/mixin/index";
- import { downloadFiles, handleImport } from "@/utils/util";
- import {
- getMachineLlist,
- getMachineAdd,
- getMachineDel,
- getMachineEdit,
- getDistList,
- } from "@/api/basic_data/material";
- import print from 'vue-print-nb'
- export default {
- mixins: [Mixin],
- directives: {
- print
- },
- data() {
- return {
- printObj: {
- id: 'printMe'
- },
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- options: [
- {
- value: "选项1",
- label: "1",
- },
- {
- value: "选项2",
- label: "2",
- },
- {
- value: "选项3",
- label: "3",
- },
- {
- value: "选项4",
- label: "4",
- },
- {
- value: "选项5",
- label: "5",
- },
- ],
- diaLogForm: {
- id: null,
- name: "",
- number: "",
- model: "",
- volume: "",
- type: "",
- },
- showDialogForm: false,
- dataList: [
- ],
- screenForm: {
- model:'',
- name: "",
- number: "",
- type: "",
- volume: "",
- },
- type: null,
- distList:[]
- };
- },
- created() {
- getDistList({ sysDictEnum: "MACHINE_CONFIGURE" }).then((res) => {
- this.distList = res.data;
- console.log(res, 123);
- });
- },
- methods: {
- editFn(id, row) {
- this.type = 2;
- this.diaLogForm = {
- id,
- name: row.name,
- number: row.number,
- model: row.model,
- volume: row.volume,
- type: row.type,
- };
- this.showDialogForm = true;
- },
- hanleInfo() {
- if (this.type === 1) {
- getMachineAdd(this.diaLogForm).then((res) => {
- this.$successMsg("保存成功");
- this.getList();
- });
- } else if (this.type === 2) {
- const params = {
- ...this.diaLogForm,
- };
- getMachineEdit(params).then((res) => {
- this.$successMsg("编辑成功");
- this.getList();
- });
- this.diaLogForm.id = null;
- }
- this.resetInfo();
- this.showDialogForm = false;
- },
- // 初始化数据
- getList() {
- this.listLoading = true;
- let params = {
- pageNum: this.currentPage,
- pageSize: this.pageSize,
- name: this.screenForm.name ,
- number: this.screenForm.number,
- model: this.screenForm.model,
- volume: this.screenForm.volume,
- };
- getMachineLlist(params).then((res) => {
- this.dataList = res.data.records;
- this.listTotal = res.data.total;
- this.listLoading = false;
- console.log(this.dataList, 1233);
- });
- },
- // 导入
- async handleImport(param) {
- this.importLoading = true;
- const file = param.file;
- console.log(file, 123);
- const formData = new FormData();
- formData.append("file", file);
- let result = await handleImport("/stock/importToll", formData);
- this.importLoading = false;
- this.importFileList = [];
- if (result.code == 200) {
- this.$alert(result.message, "导入成功", {
- confirmButtonText: "确定",
- });
- this.getList();
- } else {
- this.$alert(result.message, "导入失败", {
- confirmButtonText: "确定",
- });
- }
- },
- handleExport() {
- let screenData = {
- customerName: this.screenForm.customerName,
- freeDay: this.screenForm.freeDay,
- toll: this.screenForm.toll,
- };
- downloadFiles("/machine-record/export", screenData);
- },
- hanleDeleteAll(id) {
- console.log(id);
- this.hanleDeleteAllPromise(id).then((ids) => {
- getMachineDel(ids).then((res) => {
- this.getList();
- });
- });
- },
- resetInfo() {
- this.diaLogForm = {
- id: null,
- innerMachineName: "",
- innerMachineNumber: "",
- innerMachineType: "",
- innerMachineVolume: 2,
- orgNumber: "4564",
- outsideMachineName: "",
- outsideMachineNumber: "",
- outsideMachineType: "",
- outsideMachineVolume: 2,
- };
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep .el-select {
- width: 100%;
- }
- .import-btn {
- display: inline-block;
- margin-right: 10px;
- }
- </style>
|