1
lzhe
2025-07-08 561224d0c6ea8767766a8114ce15c98e31b6a0d9
src/views/flowmgr/backImport.vue
@@ -6,34 +6,37 @@
      :table-loading="loading"
      :data="data"
      ref="crud"
      v-model:search="search"
      v-model:page="mypage"
      @search-change="searchChange"
      @search-reset="searchReset"
      @current-change="currentChange"
      @size-change="sizeChange"
      @refresh-change="refreshChange"
      @on-load="onLoad"
      @selection-change="selectionChange"
    >
      <template #menu-left>
        <el-button type="primary" size="default" icon="el-icon-circle-plus" plain @click="handleEdit">导入</el-button>
        <el-button type="primary" size="default" icon="el-icon-circle-plus" plain @click="handleEdit">入库</el-button>
        <div style="display: flex;">
          <el-button type="primary" size="default" icon="el-icon-circle-plus" @click="importData">导入</el-button>
          <el-button type="primary" size="default" icon="el-icon-circle-plus" plain @click="handleWarehouse" style="margin-left: 12px;">入库</el-button>
        </div>
      </template>
    </avue-crud>
    <el-dialog title="DNC文件导入" append-to-body v-model="excelBox" width="555px">
      <avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter">
        <!-- <template #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,
} from '@/api/system/user';
export default {
  data() {
    return {
      search: {},
      loading: true,
      mypage: {
        size: 10,
        current: 1,
        total: 0,
      },
      selection: [],
      excelBox: false,
      loading: false,
      option: {
        addBtn: false,
        editBtn: false,
@@ -42,101 +45,120 @@
        emptyBtn: false,
        searchSpan: 8,
        menu: false,
        selection: true,
        column: [
          {
            label: '文件路径',
            type: 'input',
            prop: 'keyword',
            search: true,
            hide: true
          },
          // {
          //   label: '文件路径',
          //   type: 'input',
          //   prop: 'keyword',
          //   hide: true
          // },
          {
            label: '任务编号',
            prop: ''
            prop: 'programNo'
          },
          {
            label: '程序名称',
            prop: '',
            prop: 'programName',
          },
          {
            label: '文件到达时间',
            prop: '',
            prop: 'fileBackTime',
          },
          {
            label: '文件数据库编号',
            prop: '',
            prop: 'id',
          },
          {
            label: '处理状态',
            prop: '',
          },
          {
            label: '处理方式',
            prop: ''
          },
          {
            label: '处理时间',
            prop: ''
          },
          {
            label: '处理人',
            prop: ''
          },
          // {
          //   label: '处理状态',
          //   prop: '',
          // },
          // {
          //   label: '处理方式',
          //   prop: ''
          // },
          // {
          //   label: '处理时间',
          //   prop: ''
          // },
          // {
          //   label: '处理人',
          //   prop: ''
          // },
          {
            label: 'MD5值',
            prop: ''
            prop: 'md5',
          }
        ],
      },
      data: [],
      excelForm: {},
      excelOption: {
        submitBtn: false,
        emptyBtn: false,
        column: [
          {
            label: '文件导入',
            prop: 'excelFile',
            type: 'upload',
            drag: true,
            loadText: 'DNC文件导入,请稍等',
            span: 24,
            propsHttp: {
              res: 'data',
            },
            tip: '',
            action: '/blade-mdm/program/dncsendback/upload',
          },
        ],
      },
    };
  },
  methods: {
    handleEdit(row,index) {
    selectionChange(selection) {
      this.selection = selection;
    },
    searchReset() {
      //this.onLoad(this.mypage);
    importData () {
      this.excelBox = true;
    },
    searchChange(params, done) {
      this.mypage.current = 1;
      this.onLoad();
    uploadAfter(res, done, loading, column) {
      window.console.log(column);
      this.excelBox = false;
      console.log('data', res);
      this.data = res || []
      done();
    },
    currentChange(current) {
      this.mypage.current = current;
    },
    sizeChange(size) {
      this.mypage.size = size;
    },
    refreshChange() {
    },
    onLoad() {
      this.loading = true;
      var obj = {
        keyword: this.search.keyword,
        machineSpec: "",
        current: this.mypage.current,
        size: this.mypage.size,
      }
      axios({
        url: '/program/dncsendback/page',
        method: 'get',
        params: obj,
      }).then(
        res => {
          const data = res.data.data;
          this.mypage.total = data.total;
          this.data = data.records;
          this.loading = false;
        },
        error => {
    handleWarehouse(row,index) {
      if(this.selection.length == 0) {
        this.$message.error("请选择数据")
      }else {
        var selection = [];
        this.selection.forEach(item=> {
          selection.push(item.id);
        })
        this.loading = true;
        var obj = {
          ids: selection.join(","),
        }
      );
    }
        axios({
          url: '/blade-mdm/program/dncsendback/accept',
          method: 'post',
          params: obj,
        }).then(
          res => {
            console.log(res);
            if (res.data.code === 200) {
              this.$message.success("操作成功");
              this.loading = false;
              this.data = []
            } else {
              this.$message.success(res.data.msg || "操作失败");
            }
          }
        );
      }
    },
  },
};
</script>