From d6a0abe9024f87fc517a2b71df0f17c5cadc41a0 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 29 Jul 2022 16:02:25 +0800
Subject: [PATCH] 合并冲突

---
 src/views/machining/machining.vue |  632 ++++++++++++++++++++++++++++----------------------------
 1 files changed, 317 insertions(+), 315 deletions(-)

diff --git a/src/views/machining/machining.vue b/src/views/machining/machining.vue
index 60646a5..059da60 100644
--- a/src/views/machining/machining.vue
+++ b/src/views/machining/machining.vue
@@ -1,329 +1,331 @@
 <template>
-  <basic-container>
-    <avue-crud :option="option"
-               :table-loading="loading"
-               :data="data"
-               :page.sync="page"
-               :permission="permissionList"
-               :before-open="beforeOpen"
-               v-model="form"
-               ref="crud"
-               @row-update="rowUpdate"
-               @row-save="rowSave"
-               @row-del="rowDel"
-               @search-change="searchChange"
-               @search-reset="searchReset"
-               @selection-change="selectionChange"
-               @current-change="currentChange"
-               @size-change="sizeChange"
-               @refresh-change="refreshChange"
-               @on-load="onLoad">
-      <template slot="menuLeft">
-        <el-button type="danger"
-                   size="small"
-                   icon="el-icon-delete"
-                   plain
-                   v-if="permission.machining_delete"
-                   @click="handleDelete">删 除
-        </el-button>
-        <el-button type="success"
-                   size="small"
-                   plain
-                   icon="el-icon-upload2"
-                   @click="handleImport">导入
-        </el-button>
-      </template>
-    </avue-crud>
-    <el-dialog title="用户数据导入"
-               append-to-body
-               :visible.sync="excelBox"
-               width="555px">
-      <avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter">
-        <template slot="excelTemplate">
-          <el-button type="primary" @click="handleTemplate">
-            点击下载<i class="el-icon-download el-icon--right"></i>
-          </el-button>
-        </template>
-      </avue-form>
-    </el-dialog>
-  </basic-container>
+    <basic-container>
+        <avue-crud
+            :option="option"
+            :table-loading="loading"
+            :data="data"
+            :page.sync="page"
+            :permission="permissionList"
+            :before-open="beforeOpen"
+            v-model="form"
+            ref="crud"
+            @row-update="rowUpdate"
+            @row-save="rowSave"
+            @row-del="rowDel"
+            @search-change="searchChange"
+            @search-reset="searchReset"
+            @selection-change="selectionChange"
+            @current-change="currentChange"
+            @size-change="sizeChange"
+            @refresh-change="refreshChange"
+            @on-load="onLoad"
+        >
+            <template slot="menuLeft">
+                <el-button
+                    type="danger"
+                    size="small"
+                    icon="el-icon-delete"
+                    plain
+                    v-if="permission.machining_delete"
+                    @click="handleDelete"
+                >删 除</el-button>
+                <el-button
+                    type="success"
+                    size="small"
+                    plain
+                    icon="el-icon-upload2"
+                    @click="handleImport"
+                >导入</el-button>
+            </template>
+        </avue-crud>
+        <el-dialog title="用户数据导入" append-to-body :visible.sync="excelBox" width="555px">
+            <avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter">
+                <template slot="excelTemplate">
+                    <el-button type="primary" @click="handleTemplate">
+                        点击下载
+                        <i class="el-icon-download el-icon--right"></i>
+                    </el-button>
+                </template>
+            </avue-form>
+        </el-dialog>
+    </basic-container>
 </template>
 
 <script>
-import {getList, getDetail, add, update, remove} from "@/api/machining/machining";
-import {mapGetters} from "vuex";
+import { getList, getDetail, add, update, remove } from "@/api/machining/machining"
+import { mapGetters } from "vuex"
 
 export default {
-  data() {
-    return {
-      form: {},
-      query: {},
-      excelBox: false,
-      loading: true,
-      page: {
-        pageSize: 10,
-        currentPage: 1,
-        total: 0
-      },
-      selectionList: [],
-      excelOption: {
-        submitBtn: false,
-        emptyBtn: false,
-        column: [
-          {
-            label: '模板上传',
-            prop: 'excelFile',
-            type: 'upload',
-            drag: true,
-            loadText: '模板上传中,请稍等',
-            span: 24,
-            propsHttp: {
-              res: 'data'
+    data () {
+        return {
+            form: {},
+            query: {},
+            excelBox: false,
+            loading: true,
+            page: {
+                pageSize: 10,
+                currentPage: 1,
+                total: 0
             },
-            tip: '请上传 .xls,.xlsx 标准格式文件',
-            action: "/api/blade-user/import-user"
-          },
-          {
-            label: "数据覆盖",
-            prop: "isCovered",
-            type: "switch",
-            align: "center",
-            width: 80,
-            dicData: [
-              {
-                label: "否",
-                value: 0
-              },
-              {
-                label: "是",
-                value: 1
-              }
-            ],
-            value: 0,
-            slot: true,
-            rules: [
-              {
-                required: true,
-                message: "请选择是否覆盖",
-                trigger: "blur"
-              }
-            ]
-          },
-          {
-            label: '模板下载',
-            prop: 'excelTemplate',
-            formslot: true,
-            span: 24,
-          }
-        ]
-      },
-      option: {
-        excelBtn: true,
-        height: 'auto',
-        calcHeight: 30,
-        tip: false,
-        searchShow: true,
-        searchMenuSpan: 6,
-        border: true,
-        index: true,
-        viewBtn: true,
-        menuAlign: "center",
-        align: "center",
-        selection: true,
-        dialogClickModal: false,
-        column: [
-          {
-            label: "加工类型",
-            prop: "machiningType",
-            rules: [{
-              required: true,
-              message: "请输入加工类型",
-              trigger: "blur"
-            }]
-          },
-          {
-            label: "加工原料",
-            prop: "machiningYl",
-            rules: [{
-              required: true,
-              message: "请输入加工原料",
-              trigger: "blur"
-            }]
-          },
-          {
-            label: "图片",
-            type: "upload",
-            prop: "machiningTp",
-            listType: "picture-img",
-            propsHttp: {
-              res: "data",
-              url: "url",
+            selectionList: [],
+            excelOption: {
+                submitBtn: false,
+                emptyBtn: false,
+                column: [
+                    {
+                        label: '模板上传',
+                        prop: 'excelFile',
+                        type: 'upload',
+                        drag: true,
+                        loadText: '模板上传中,请稍等',
+                        span: 24,
+                        propsHttp: {
+                            res: 'data'
+                        },
+                        tip: '请上传 .xls,.xlsx 标准格式文件',
+                        action: "/api/blade-user/import-user"
+                    },
+                    {
+                        label: "数据覆盖",
+                        prop: "isCovered",
+                        type: "switch",
+                        align: "center",
+                        width: 80,
+                        dicData: [
+                            {
+                                label: "否",
+                                value: 0
+                            },
+                            {
+                                label: "是",
+                                value: 1
+                            }
+                        ],
+                        value: 0,
+                        slot: true,
+                        rules: [
+                            {
+                                required: true,
+                                message: "请选择是否覆盖",
+                                trigger: "blur"
+                            }
+                        ]
+                    },
+                    {
+                        label: '模板下载',
+                        prop: 'excelTemplate',
+                        formslot: true,
+                        span: 24,
+                    }
+                ]
             },
-            canvasOption: {
-              text: " ",
-              ratio: 1.0,
+            option: {
+                excelBtn: true,
+                height: 'auto',
+                calcHeight: 30,
+                tip: false,
+                searchShow: true,
+                searchMenuSpan: 6,
+                border: true,
+                index: true,
+                viewBtn: true,
+                menuAlign: "center",
+                align: "center",
+                selection: true,
+                dialogClickModal: false,
+                column: [
+                    {
+                        label: "加工类型",
+                        prop: "machiningType",
+                        rules: [{
+                            required: true,
+                            message: "请输入加工类型",
+                            trigger: "blur"
+                        }]
+                    },
+                    {
+                        label: "加工原料",
+                        prop: "machiningYl",
+                        rules: [{
+                            required: true,
+                            message: "请输入加工原料",
+                            trigger: "blur"
+                        }]
+                    },
+                    {
+                        label: "图片",
+                        type: "upload",
+                        prop: "machiningTp",
+                        listType: "picture-img",
+                        propsHttp: {
+                            res: "data",
+                            url: "url",
+                        },
+                        canvasOption: {
+                            text: " ",
+                            ratio: 1.0,
+                        },
+                        action: "/api/blade-resource/oss/endpoint/put-files",
+                        tip: "",
+                        span: 24,
+                        labelWidth: 110,
+                    },
+                    {
+                        label: "更新时间",
+                        prop: "updateTime",
+                        addDisplay: false,
+                        viewDisplay: false,
+                        editDisplay: false,
+                    },
+                    {
+                        label: "备注",
+                        prop: "remarks",
+                        span: 24,
+                        type: "textarea",
+                    },
+                ]
             },
-            action: "/api/blade-resource/oss/endpoint/put-files",
-            tip: "",
-            span: 24,
-            labelWidth: 110,
-          },
-          {
-            label: "更新时间",
-            prop: "updateTime",
-            addDisplay: false,
-            viewDisplay: false,
-            editDisplay: false,
-          },
-          {
-            label: "备注",
-            prop: "remarks",
-            span: 24,
-            type: "textarea",
-          },
-        ]
-      },
-      data: []
-    };
-  },
-  computed: {
-    ...mapGetters(["permission"]),
-    permissionList() {
-      return {
-        addBtn: this.vaildData(this.permission.machining_add, false),
-        viewBtn: this.vaildData(this.permission.machining_view, false),
-        delBtn: this.vaildData(this.permission.machining_delete, false),
-        editBtn: this.vaildData(this.permission.machining_edit, false)
-      };
+            data: []
+        }
     },
-    ids() {
-      let ids = [];
-      this.selectionList.forEach(ele => {
-        ids.push(ele.id);
-      });
-      return ids.join(",");
+    computed: {
+        ...mapGetters(["permission"]),
+        permissionList () {
+            return {
+                addBtn: this.vaildData(this.permission.machining_add, false),
+                viewBtn: this.vaildData(this.permission.machining_view, false),
+                delBtn: this.vaildData(this.permission.machining_delete, false),
+                editBtn: this.vaildData(this.permission.machining_edit, false)
+            }
+        },
+        ids () {
+            let ids = []
+            this.selectionList.forEach(ele => {
+                ids.push(ele.id)
+            })
+            return ids.join(",")
+        }
+    },
+    methods: {
+        rowSave (row, done, loading) {
+            add(row).then(() => {
+                this.onLoad(this.page)
+                this.$message({
+                    type: "success",
+                    message: "操作成功!"
+                })
+                done()
+            }, error => {
+                loading()
+                window.console.log(error)
+            })
+        },
+        rowUpdate (row, index, done, loading) {
+            update(row).then(() => {
+                this.onLoad(this.page)
+                this.$message({
+                    type: "success",
+                    message: "操作成功!"
+                })
+                done()
+            }, error => {
+                loading()
+                console.log(error)
+            })
+        },
+        rowDel (row) {
+            this.$confirm("确定将选择数据删除?", {
+                confirmButtonText: "确定",
+                cancelButtonText: "取消",
+                type: "warning"
+            })
+                .then(() => {
+                    return remove(row.id)
+                })
+                .then(() => {
+                    this.onLoad(this.page)
+                    this.$message({
+                        type: "success",
+                        message: "操作成功!"
+                    })
+                })
+        },
+        handleDelete () {
+            if (this.selectionList.length === 0) {
+                this.$message.warning("请选择至少一条数据")
+                return
+            }
+            this.$confirm("确定将选择数据删除?", {
+                confirmButtonText: "确定",
+                cancelButtonText: "取消",
+                type: "warning"
+            })
+                .then(() => {
+                    return remove(this.ids)
+                })
+                .then(() => {
+                    this.onLoad(this.page)
+                    this.$message({
+                        type: "success",
+                        message: "操作成功!"
+                    })
+                    this.$refs.crud.toggleSelection()
+                })
+        },
+        beforeOpen (done, type) {
+            if (["edit", "view"].includes(type)) {
+                getDetail(this.form.id).then(res => {
+                    this.form = res.data.data
+                })
+            }
+            done()
+        },
+        searchReset () {
+            this.query = {}
+            this.onLoad(this.page)
+        },
+        searchChange (params, done) {
+            this.query = params
+            this.page.currentPage = 1
+            this.onLoad(this.page, params)
+            done()
+        },
+        selectionChange (list) {
+            this.selectionList = list
+        },
+        selectionClear () {
+            this.selectionList = []
+            this.$refs.crud.toggleSelection()
+        },
+        currentChange (currentPage) {
+            this.page.currentPage = currentPage
+        },
+        sizeChange (pageSize) {
+            this.page.pageSize = pageSize
+        },
+        refreshChange () {
+            this.onLoad(this.page, this.query)
+        },
+        onLoad (page, params = {}) {
+            this.loading = true
+            getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
+                const data = res.data.data
+                this.page.total = data.total
+                this.data = data.records
+                this.loading = false
+                this.selectionClear()
+            })
+        },
+        handleImport () {
+            this.excelBox = true
+        },
+        uploadAfter (res, done, loading, column) {
+            window.console.log(column)
+            this.excelBox = false
+            this.refreshChange()
+            done()
+        },
     }
-  },
-  methods: {
-    rowSave(row, done, loading) {
-      add(row).then(() => {
-        this.onLoad(this.page);
-        this.$message({
-          type: "success",
-          message: "操作成功!"
-        });
-        done();
-      }, error => {
-        loading();
-        window.console.log(error);
-      });
-    },
-    rowUpdate(row, index, done, loading) {
-      update(row).then(() => {
-        this.onLoad(this.page);
-        this.$message({
-          type: "success",
-          message: "操作成功!"
-        });
-        done();
-      }, error => {
-        loading();
-        console.log(error);
-      });
-    },
-    rowDel(row) {
-      this.$confirm("确定将选择数据删除?", {
-        confirmButtonText: "确定",
-        cancelButtonText: "取消",
-        type: "warning"
-      })
-        .then(() => {
-          return remove(row.id);
-        })
-        .then(() => {
-          this.onLoad(this.page);
-          this.$message({
-            type: "success",
-            message: "操作成功!"
-          });
-        });
-    },
-    handleDelete() {
-      if (this.selectionList.length === 0) {
-        this.$message.warning("请选择至少一条数据");
-        return;
-      }
-      this.$confirm("确定将选择数据删除?", {
-        confirmButtonText: "确定",
-        cancelButtonText: "取消",
-        type: "warning"
-      })
-        .then(() => {
-          return remove(this.ids);
-        })
-        .then(() => {
-          this.onLoad(this.page);
-          this.$message({
-            type: "success",
-            message: "操作成功!"
-          });
-          this.$refs.crud.toggleSelection();
-        });
-    },
-    beforeOpen(done, type) {
-      if (["edit", "view"].includes(type)) {
-        getDetail(this.form.id).then(res => {
-          this.form = res.data.data;
-        });
-      }
-      done();
-    },
-    searchReset() {
-      this.query = {};
-      this.onLoad(this.page);
-    },
-    searchChange(params, done) {
-      this.query = params;
-      this.page.currentPage = 1;
-      this.onLoad(this.page, params);
-      done();
-    },
-    selectionChange(list) {
-      this.selectionList = list;
-    },
-    selectionClear() {
-      this.selectionList = [];
-      this.$refs.crud.toggleSelection();
-    },
-    currentChange(currentPage) {
-      this.page.currentPage = currentPage;
-    },
-    sizeChange(pageSize) {
-      this.page.pageSize = pageSize;
-    },
-    refreshChange() {
-      this.onLoad(this.page, this.query);
-    },
-    onLoad(page, params = {}) {
-      this.loading = true;
-      getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
-        const data = res.data.data;
-        this.page.total = data.total;
-        this.data = data.records;
-        this.loading = false;
-        this.selectionClear();
-      });
-    },
-    handleImport() {
-      this.excelBox = true;
-    },
-    uploadAfter(res, done, loading, column) {
-      window.console.log(column);
-      this.excelBox = false;
-      this.refreshChange();
-      done();
-    },
-  }
 };
 </script>
 

--
Gitblit v1.9.3