loulijun2021
2023-10-16 c5a9671fa6c5a55d4c66a239e4fbd26363e682b5
1.点检标准、保养项、保养标准
已修改6个文件
1489 ■■■■■ 文件已修改
src/api/GeneralBasicData.js 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/MouldManager.js 82 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mouldManager/mouldCheckStand.vue 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mouldManager/mouldMaintain.vue 452 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mouldManager/mouldMaintainStand.vue 712 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/systemSetting/dataImport.vue 222 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/GeneralBasicData.js
@@ -102,6 +102,7 @@
    params: data
  })
}
// 设备基础资料
export function EqpPermissions(data) {
  return request({
@@ -110,6 +111,7 @@
    params: data
  })
}
// 往来单位基础资料
export function CustomerPermissions(data) {
  return request({
@@ -118,6 +120,7 @@
    params: data
  })
}
// 存货树型基础资料
export function InventoryTreePermissions(data) {
  return request({
@@ -126,6 +129,7 @@
    params: data
  })
}
// 模具检验项目下拉列表
export function MouldCheckItemSelect(data) {
  return request({
@@ -134,6 +138,7 @@
    params: data
  })
}
// 模具保养项目下拉列表
export function MouldRepairItemSelect(data) {
  return request({
src/api/MouldManager.js
@@ -80,6 +80,7 @@
    data
  })
}
// 模具点检标准删除
export function DeleteMouldCheckStaned(data) {
  return request({
@@ -88,6 +89,7 @@
    params: data
  })
}
// 模具点检标准关联模具查询
export function CheckStanedAssociationMould(data) {
  return request({
@@ -96,6 +98,7 @@
    params: data
  })
}
// 模具点检标准关联模具提交
export function SaveCheckStanedAssociationMould(data, checkstand_code) {
  return request({
@@ -104,3 +107,82 @@
    data
  })
}
// 模具保养项列表查询
export function MouldMaiItemSearch(data) {
  return request({
    url: 'MouldManager/MouldMaiItemSearch',
    method: 'get',
    params: data
  })
}
// 模具保养项新增编辑
export function AddUpdateMouldMaiItem(data) {
  return request({
    url: 'MouldManager/AddUpdateMouldMaiItem',
    method: 'post',
    data
  })
}
// 模具保养项删除
export function DeleteMouldMaiItem(data) {
  return request({
    url: 'MouldManager/DeleteMouldMaiItem',
    method: 'post',
    params: data
  })
}
// 模具保养标准列表查询
export function MouldRepairStandArdSearch(data) {
  return request({
    url: 'MouldManager/MouldRepairStandArdSearch',
    method: 'get',
    params: data
  })
}
// 模具保养标准编辑/查看获取数据
export function ViewMouldRepairStanedSearch(data) {
  return request({
    url: 'MouldManager/ViewMouldRepairStanedSearch',
    method: 'post',
    params: data
  })
}
// 模具保养标准新增编辑
export function AddUpdateMouldRepairStandArd(data, opertype) {
  return request({
    url: 'MouldManager/AddUpdateMouldRepairStandArd?opertype=' + opertype,
    method: 'post',
    data
  })
}
// 模具保养标准删除
export function DeleteMouldRepairStaned(data) {
  return request({
    url: 'MouldManager/DeleteMouldRepairStaned',
    method: 'post',
    params: data
  })
}
// 模具保养标准关联模具查询
export function RepairStanedAssociationMould(data) {
  return request({
    url: 'MouldManager/RepairStanedAssociationMould',
    method: 'get',
    params: data
  })
}
// 模具保养标准关联模具提交
export function SaveRepairStanedAssociationMould(data, repairstand_code) {
  return request({
    url: 'MouldManager/SaveRepairStanedAssociationMould?repairstand_code=' + repairstand_code,
    method: 'post',
    data
  })
}
src/views/mouldManager/mouldCheckStand.vue
@@ -3,7 +3,7 @@
    <div class="body" :style="{height:mainHeight+'px'}">
      <div class="bodyTopButtonGroup" style="justify-content: space-between">
        <el-button v-waves type="primary" icon="el-icon-circle-plus-outline" @click="add('add')">新增</el-button>
        <!--        <el-button v-waves icon="el-icon-download" @click="upload">导入</el-button>-->
        <el-button v-waves type="success" icon="el-icon-download" @click="$router.push('./../systemSetting/dataImport?fileCode=13_1')">导入</el-button>
      </div>
      <div class="bodyTopFormGroup">
@@ -664,15 +664,19 @@
    },
    mouldDialogVisibleConfirm() {
      const treeKey = this.$refs.tree.getCheckedKeys()
      const arr = []
      this.tree[0].children.forEach(i => {
        i.flag = treeKey.includes(i.code) ? 'Y' : 'N'
        // i.flag = treeKey.includes(i.code) ? 'Y' : 'N'
        if (treeKey.includes(i.code)) {
          arr.push({
            code: i.code,
            name: i.name
      })
      if (treeKey.length === 0) {
        return this.$message.info('不能为空!')
      }
      })
      this.$store.state.app.buttonIsDisabled = true
      SaveCheckStanedAssociationMould(this.tree[0].children, this.checkstand_code).then(res => {
      SaveCheckStanedAssociationMould(arr, this.checkstand_code).then(res => {
        if (res.code === '200') {
          this.$notify.success('绑定成功!')
          this.mouldDialogVisible = false
src/views/mouldManager/mouldMaintain.vue
@@ -1,11 +1,453 @@
<template />
<template>
  <div>
    <div class="body" :style="{height:mainHeight+'px'}">
      <div class="bodyTopButtonGroup" style="justify-content: space-between">
        <el-button v-waves type="primary" icon="el-icon-circle-plus-outline" @click="add('add')">新增</el-button>
        <el-button v-waves type="success" icon="el-icon-download" @click="$router.push('./../systemSetting/dataImport?fileCode=14')">导入</el-button>
      </div>
      <div class="bodyTopFormGroup">
        <el-form
          ref="form"
          :model="form"
          label-width="100px"
          inline
          style="display: flex;"
        >
          <div class="elForm">
            <el-form-item label="部位编码" style=" display: flex;">
              <el-input v-model="form.maiitemcode" placeholder="请输入" style="width: 200px" />
            </el-form-item>
            <el-form-item label="部位名称" style=" display: flex;">
              <el-input v-model="form.maiitemname" placeholder="请输入" style="width: 200px" />
            </el-form-item>
            <el-form-item label="保养描述" style=" display: flex;">
              <el-input v-model="form.checkdescr" placeholder="请输入" style="width: 200px" />
            </el-form-item>
          </div>
          <div
            class="bodySearchReset"
            :style="{marginLeft:$store.state.app.sidebar.opened? $store.state.settings.menuIsHorizontal?'15%':'3%':'10%'}"
          >
            <el-button v-waves type="primary" icon="el-icon-search" @click="search">查询</el-button>
            <el-button v-waves type="info" icon="el-icon-refresh" @click="reset">重置</el-button>
          </div>
        </el-form>
        <div
          class="bodyTopFormExpand"
          style="height:5px"
        >
          <!--          <svg-icon-->
          <!--            v-show="mouseHoverType==='mouseout'"-->
          <!--            style="cursor: pointer"-->
          <!--            :icon-class="!isExpandForm?'doubleDown3':'doubleUp3'"-->
          <!--            @mouseenter="mouseHoverType=$event.type"-->
          <!--          />-->
          <!--          <svg-icon-->
          <!--            v-show="mouseHoverType==='mouseenter'"-->
          <!--            style="cursor: pointer"-->
          <!--            :icon-class="!isExpandForm?'doubleDown':'doubleUp'"-->
          <!--            @click="isExpandForm=!isExpandForm"-->
          <!--            @mouseout="mouseHoverType=$event.type"-->
          <!--          />-->
        </div>
      </div>
      <div class="elTableDiv">
        <!--        <TableColumnSettings-->
        <!--          :list1="tableColumnSettingsArray"-->
        <!--          @tableColumnUpdate="tableColumnUpdate"-->
        <!--        />-->
        <el-table
          ref="tableDataRef"
          :key="tableTimeStampKey"
          :data="tableData"
          :height="isExpandForm?tableHeight:(tableHeight+40)+'px'"
          border
          class="tableFixed"
          :row-class-name="tableRowClassName"
          :style="{width: 100+'%',height:isExpandForm?tableHeight:(tableHeight+40)+'px',}"
          highlight-current-row
          :header-cell-style="this.$headerCellStyle"
          :cell-style="this.$cellStyle"
          @sort-change="sortChange"
        >
          <el-table-column
            v-for="item in tableColumnSettingsArray"
            v-if="item.show"
            :key="item.id"
            :sortable="item.sortable"
            :prop="item.prop"
            :min-width="item.minWidth"
            :label="item.label"
            :width="item.width"
            show-tooltip-when-overflow
            :fixed="item.fixed?(item.fixed==='left'?'left':'right'):false"
          >
            <template slot-scope="{row}">
              <div v-if="!row[item.prop]">/</div>
              <div v-else>{{ row[item.prop] }}</div>
            </template>
          </el-table-column>
          <el-table-column
            label="操作"
            fixed="right"
            width="120"
          >
            <template slot-scope="{row}">
              <div class="operationClass">
                <el-tooltip class="item" effect="dark" content="编辑" placement="top">
                  <i :style="{color:$store.state.settings.theme}" class="el-icon-edit-outline" @click="edit('edit',row)" />
                </el-tooltip>
                <el-tooltip v-del-tab-index class="item" effect="dark" content="删除" placement="top">
                  <i :style="{color:$store.state.settings.theme}" class="el-icon-delete" @click="del(row)" />
                </el-tooltip>
              </div>
            </template>
          </el-table-column>
        </el-table>
      </div>
      <!--分页-->
      <pagination
        :total="total"
        :page.sync="form.page"
        :limit.sync="form.rows"
        align="right"
        layout="total,prev, pager, next,sizes"
        popper-class="select_bottom"
        @pagination="getMouldMaiItemSearch"
      />
    </div>
    <el-dialog
      v-el-drag-dialog
      :title="operation==='add'?'新增':'编辑'"
      :visible.sync="dialogVisible"
      width="800px"
      :close-on-click-modal="false"
      top="15vh"
      @closed="handleClose"
      @close="handleClose"
    >
      <el-form ref="dialogForm" inline :rules="dialogFormRules" :model="dialogForm" label-width="80px">
        <el-form-item label="部位编码" prop="maiitemcode">
          <el-input v-model="dialogForm.maiitemcode" :disabled="operation!=='add'" style="width: 200px" />
        </el-form-item>
        <el-form-item label="部位名称" prop="maiitemname">
          <el-input v-model="dialogForm.maiitemname" style="width: 200px" />
        </el-form-item>
        <el-form-item label="保养描述" prop="maidescr">
          <el-input v-model="dialogForm.maidescr" type="textarea" style="width: 200px" />
        </el-form-item>
      </el-form>
      <span slot="footer" class="dialog-footer">
        <div class="footerButton">
          <el-button v-waves @click="dialogVisibleCancel">取 消</el-button>
          <el-button
            v-waves
            type="primary"
            :loading="$store.state.app.buttonIsDisabled"
            :disabled="$store.state.app.buttonIsDisabled"
            @click="dialogVisibleConfirm"
          >确 定</el-button>
        </div>
      </span>
    </el-dialog>
    <!--导入组件-->
    <import-picker
      ref="importPickerFunc"
      class="importPickerClass"
      :shows.sync="shows"
      :title="title_value"
      :colos="colos"
      :code="code"
    />
  </div>
</template>
<script>
import Pagination from '@/components/Pagination'
import ImportPicker from '@/components/ImportPicker'
import { validateCode } from '@/utils/global'
import elDragDialog from '@/directive/el-drag-dialog'
import waves from '@/directive/waves'
import TableColumnSettings from '@/components/TableColumnSettings'
import {
  AddUpdateMouldMaiItem,
  DeleteMouldMaiItem,
  MouldMaiItemSearch
} from '@/api/MouldManager'
export default {
  name: 'MouldMaintain'
  name: 'Zzjg',
  components: {
    Pagination, ImportPicker, TableColumnSettings
  },
  directives: { elDragDialog, waves },
  data() {
    return {
      mouseHoverType: 'mouseout',
      isExpandForm: false,
      mainHeight: 0,
      tableHeight: 0,
      form: {
        maiitemcode: '', // 部位编码
        maiitemname: '', // 部位名称
        checkdescr: '', // 保养描述
        prop: 'lm_date', // 排序字段
        order: 'desc', // 排序字段
        page: 1, // 第几页
        rows: 20 // 每页多少条
      },
      total: 10,
      tableData: [],
      tableColumnSettingsArray: [
        { minWidth: false, width: 55, prop: 'id', label: 'id', id: 1, show: false, fixed: false, sortable: false }, // 隐藏列  show: false隐藏,true显示
        { minWidth: false, width: 55, prop: 'rowNum', label: '序号', id: 2, show: true, fixed: 'left', sortable: false }, // custom
        {
          minWidth: 110,
          width: false,
          prop: 'code',
          label: '部位编码',
          id: 3,
          show: true,
          fixed: false,
          sortable: true
        },
        {
          minWidth: 110,
          width: false,
          prop: 'name',
          label: '部位名称',
          id: 4,
          show: true,
          fixed: false,
          sortable: true
        },
        {
          minWidth: 330,
          width: false,
          prop: 'description',
          label: '保养描述',
          id: 5,
          show: true,
          fixed: false,
          sortable: true
        },
        // {
        //   minWidth: false,
        //   width: 110,
        //   prop: 'isscan',
        //   label: '选择扫码',
        //   id: 6,
        //   show: true,
        //   fixed: false,
        //   sortable: true
        // },
        // {
        //   minWidth: false,
        //   width: 110,
        //   prop: 'cycle',
        //   label: '点检周期',
        //   id: 7,
        //   show: true,
        //   fixed: false,
        //   sortable: true
        // },
        {
          minWidth: false,
          width: 110,
          prop: 'lm_user',
          label: '创建人员',
          id: 8,
          show: true,
          fixed: false,
          sortable: true
        },
        {
          minWidth: false,
          width: 160,
          prop: 'lm_date',
          label: '创建时间',
          id: 9,
          show: true,
          fixed: false,
          sortable: true
        }
      ],
      tableTimeStampKey: new Date().getTime(), // 表格key
      dialogVisible: false,
      dialogForm: {
        id: '',
        maiitemcode: '', // 设备点检部位编码
        maiitemname: '', // 设备点检部位名称
        maidescr: '', // 设备点检部位要求
        operType: '' // 操作类型
      },
      operation: '',
      dialogFormRules: {
        maiitemcode: [
          { required: true, validator: validateCode, trigger: ['blur', 'change'] }
        ],
        maiitemname: [
          { required: true, message: '请输入部位名称', trigger: ['blur', 'change'] }
        ]
      },
      title_value: '数据导入 / 点检部位',
      code: '10',
      shows: false
    }
  },
  created() {
    this.getMouldMaiItemSearch()
  },
  mounted() {
    window.addEventListener('resize', this.getHeight)
    this.getHeight()
  },
  methods: {
    tableColumnUpdate(val, isCopyTrue) {
      if (isCopyTrue) {
        this.tableColumnSettingsArray = val
      }
      this.tableTimeStampKey = new Date().getTime()
      this.$refs.tableDataRef.doLayout()
    },
    async getMouldMaiItemSearch() {
      const res = await MouldMaiItemSearch(this.form)
      this.tableData = res.data
      this.total = res.count
    },
    // 排序改变时
    sortChange({ column, prop, order }) {
      if (order === 'descending') {
        order = 'desc'
      } else if (order === 'ascending') {
        order = 'asc'
      } else {
        order = 'desc'
      }
      this.form.order = order
      this.form.prop = prop
      this.getMouldMaiItemSearch()
    },
    // 查询
    search() {
      this.getMouldMaiItemSearch()
    },
    // 重置
    reset() {
      this.form.maiitemcode = ''
      this.form.maiitemname = ''
      this.form.checkdescr = ''
      this.getMouldMaiItemSearch()
    },
    // 新增按钮
    add(operation) {
      this.operation = operation
      this.dialogVisible = true
    },
    // 修改按钮
    edit(operation, row) {
      this.operation = operation
      this.dialogVisible = true
      this.$nextTick(() => {
        this.dialogForm.id = row.id
        this.dialogForm.maiitemcode = row.code
        this.dialogForm.maiitemname = row.name
        this.dialogForm.maidescr = row.description
      })
    },
    // 删除按钮
    async del(row) {
      this.$confirm('是否确认删除?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        DeleteMouldMaiItem({ maiitemcode: row.code }).then(res => {
          if (res.code === '200') {
            this.$message.success('删除成功!')
            if (this.form.page > 1 && this.tableData.length === 1) {
              this.form.page--
            }
            this.getMouldMaiItemSearch()
          }
        })
      }).catch(() => {
        this.$message.info('已取消删除')
      })
    },
    // 对话框关闭事件
    handleClose() {
      this.dialogForm.id = ''
      this.dialogForm.maiitemcode = ''
      this.dialogForm.maiitemname = ''
      this.dialogForm.maidescr = ''
      this.$refs.dialogForm.clearValidate()
    },
    // 对话框取消
    dialogVisibleCancel() {
      this.dialogVisible = false
    },
    // 对话框确认
    dialogVisibleConfirm() {
      this.$refs.dialogForm.validate(valid => {
        if (valid) {
          this.$store.state.app.buttonIsDisabled = true
          const data = {
            id: this.dialogForm.id,
            maiitemcode: this.dialogForm.maiitemcode,
            maiitemname: this.dialogForm.maiitemname,
            maiitemdescr: this.dialogForm.maidescr,
            opertype: this.operation === 'add' ? 'Add' : 'Update'
          }
          // console.log(JSON.stringify(data), 1)
          AddUpdateMouldMaiItem(data).then(res => {
            if (res.code === '200') {
              this.dialogVisible = false
              this.$notify.success(this.operation === 'add' ? '添加成功!' : '修改成功!')
              this.getMouldMaiItemSearch()
              this.$store.state.app.buttonIsDisabled = false
            } else {
              this.$notify.error(this.operation === 'add' ? '添加失败!' : '修改失败!')
            }
          })
        }
      })
    },
    // 获取页面高度
    getHeight() {
      this.$nextTick(() => {
        this.mainHeight = window.innerHeight - 85
        this.tableHeight = this.mainHeight - 240
        this.$refs.tableDataRef.doLayout()
      })
    },
    tableRowClassName({ row, rowIndex }) {
      return 'custom-row'
    },
    // 导入按钮
    upload() {
      this.shows = true
      this.$refs.importPickerFunc.newDataFunc()
    },
    colos() {
      this.shows = false
    }
  }
}
</script>
<style scoped>
</style>
src/views/mouldManager/mouldMaintainStand.vue
@@ -1,11 +1,713 @@
<template />
<template>
  <div>
    <div class="body" :style="{height:mainHeight+'px'}">
      <div class="bodyTopButtonGroup" style="justify-content: space-between">
        <el-button v-waves type="primary" icon="el-icon-circle-plus-outline" @click="add('add')">新增</el-button>
        <el-button
          v-waves
          type="success"
          icon="el-icon-download"
          @click="$router.push('./../systemSetting/dataImport?fileCode=14_1')"
        >导入
        </el-button>
      </div>
      <div class="bodyTopFormGroup">
        <el-form
          ref="form"
          :model="form"
          label-width="100px"
          inline
          style="display: flex;"
        >
          <div class="elForm">
            <el-form-item label="标准编码" style=" display: flex;">
              <el-input v-model="form.repairstandcode" placeholder="请输入" style="width: 200px" />
            </el-form-item>
            <el-form-item label="标准名称" style=" display: flex;">
              <el-input v-model="form.repairstandname" placeholder="请输入" style="width: 200px" />
            </el-form-item>
            <el-form-item label="标准描述" style=" display: flex;">
              <el-input v-model="form.repairstandescr" placeholder="请输入" style="width: 200px" />
            </el-form-item>
          </div>
          <div
            class="bodySearchReset"
            :style="{marginLeft:$store.state.app.sidebar.opened? $store.state.settings.menuIsHorizontal?'15%':'3%':'10%'}"
          >
            <el-button v-waves type="primary" icon="el-icon-search" @click="search">查询</el-button>
            <el-button v-waves type="info" icon="el-icon-refresh" @click="reset">重置</el-button>
          </div>
        </el-form>
        <div
          class="bodyTopFormExpand"
          style="height:5px"
        />
      </div>
      <div class="elTableDiv">
        <!--        <TableColumnSettings-->
        <!--          :list1="tableColumnSettingsArray"-->
        <!--          @tableColumnUpdate="tableColumnUpdate"-->
        <!--        />-->
        <el-table
          ref="tableDataRef"
          :key="tableTimeStampKey"
          :data="tableData"
          :height="tableHeight+'px'"
          border
          class="tableFixed"
          :row-class-name="tableRowClassName"
          :style="{width: 100+'%',height:tableHeight+'px',}"
          highlight-current-row
          :header-cell-style="this.$headerCellStyle"
          :cell-style="this.$cellStyle"
          @sort-change="sortChange"
        >
          <el-table-column
            v-for="item in tableColumnSettingsArray"
            v-if="item.show"
            :key="item.id"
            :sortable="item.sortable"
            :prop="item.prop"
            :min-width="item.minWidth"
            :label="item.label"
            :width="item.width"
            show-tooltip-when-overflow
            :fixed="item.fixed?(item.fixed==='left'?'left':'right'):false"
          >
            <template slot-scope="{row}">
              <div v-if="!row[item.prop]">/</div>
              <div v-else-if="item.prop==='is_repairmould'">
                <i
                  v-if="row[item.prop]==='Y'"
                  :style="{color:$store.state.settings.theme}"
                  class="el-icon-share"
                  style="cursor: pointer"
                  @click="connectClick(row)"
                />
                <i
                  v-if="row[item.prop]==='N'"
                  class="el-icon-share"
                  style="color: rgb(180 ,181, 185);cursor:pointer;"
                  @click="connectClick(row)"
                />
              </div>
              <div v-else>{{ row[item.prop] }}</div>
            </template>
          </el-table-column>
          <el-table-column
            label="操作"
            fixed="right"
            width="120"
          >
            <template slot-scope="{row}">
              <div class="operationClass">
                <el-tooltip class="item" effect="dark" content="编辑" placement="top">
                  <i
                    :style="{color:$store.state.settings.theme}"
                    class="el-icon-edit-outline"
                    @click="edit('edit',row)"
                  />
                </el-tooltip>
                <el-tooltip v-del-tab-index class="item" effect="dark" content="删除" placement="top">
                  <i :style="{color:$store.state.settings.theme}" class="el-icon-delete" @click="del(row)" />
                </el-tooltip>
              </div>
            </template>
          </el-table-column>
        </el-table>
      </div>
      <!--分页-->
      <pagination
        :total="total"
        :page.sync="form.page"
        :limit.sync="form.rows"
        align="right"
        layout="total,prev, pager, next,sizes"
        popper-class="select_bottom"
        @pagination="getMouldRepairStandArdSearch"
      />
    </div>
    <el-dialog
      v-el-drag-dialog
      :title="operation==='add'?'新增':'编辑'"
      :visible.sync="dialogVisible"
      width="1100px"
      :close-on-click-modal="false"
      top="8vh"
      @closed="handleClose"
      @close="handleClose"
    >
      <div style="margin: 0 30px;">
        <el-form ref="dialogForm" inline :rules="dialogFormRules" :model="dialogForm" label-width="80px">
          <el-divider content-position="left">模具保养标准信息</el-divider>
          <el-form-item label="标准编码" prop="code">
            <el-input v-model="dialogForm.code" :disabled="operation!=='add'" style="width: 200px" />
          </el-form-item>
          <el-form-item label="标准名称" prop="name">
            <el-input v-model="dialogForm.name" style="width: 200px" />
          </el-form-item>
          <el-form-item label="标准描述" prop="description">
            <el-input v-model="dialogForm.description" type="textarea" style="width: 200px" />
          </el-form-item>
        </el-form>
      </div>
      <el-divider content-position="left">指定保养项信息</el-divider>
      <div style="display: flex;align-items: center">
        <!--        <div style="font-weight: bolder">点检项选择:</div>-->
        <el-drag-select
          v-model="checkSelectedValue"
          style="width:940px;"
          multiple
          placeholder="请选择相对应指定项"
        >
          <el-option
            v-for="item in checkSelectArr"
            :key="item.code"
            :label="item.name"
            :value="item.code"
          />
        </el-drag-select>
      </div>
      <div class="elTableDiv">
        <el-table
          ref="tableDataDialogRef"
          :data="tableDataDialog"
          :height="(tableHeight-300)+'px'"
          border
          :row-class-name="tableRowClassName"
          :style="{width: 100+'%',height:(tableHeight-300)+'px',}"
          highlight-current-row
          :header-cell-style="this.$headerCellStyle"
          :cell-style="this.$cellStyle"
        >
          <el-table-column
            type="index"
            width="50"
            label="序号"
          />
          <el-table-column
            prop="code"
            width="150"
            label="点检部位编码"
            show-tooltip-when-overflow
          />
          <el-table-column
            prop="name"
            label="点检部位名称"
            width="150"
            show-tooltip-when-overflow
          />
          <el-table-column
            prop="description"
            label="点检要求"
            show-tooltip-when-overflow
          >
            <template slot-scope="{row}">
              <el-input v-model="row.description" />
            </template>
          </el-table-column>
        </el-table>
      </div>
      <span slot="footer" class="dialog-footer">
        <div class="footerButton">
          <el-button v-waves @click="dialogVisibleCancel">取 消</el-button>
          <el-button
            v-waves
            type="primary"
            :loading="$store.state.app.buttonIsDisabled"
            :disabled="$store.state.app.buttonIsDisabled"
            @click="dialogVisibleConfirm"
          >确 定</el-button>
        </div>
      </span>
    </el-dialog>
    <el-dialog
      v-el-drag-dialog
      title="关联模具"
      :visible.sync="mouldDialogVisible"
      width="800px"
      :close-on-click-modal="false"
      top="15vh"
      @closed="handleMouldClose"
      @close="handleMouldClose"
    >
      <div>
        <el-input
          v-model="filterText"
          placeholder="输入关键字进行过滤"
        />
        <el-tree
          ref="tree"
          class="filter-tree"
          :data="tree"
          :props="defaultProps"
          show-checkbox
          node-key="code"
          style="margin-top:15px"
          default-expand-all
          :filter-node-method="filterNode"
        />
      </div>
      <span slot="footer" class="dialog-footer">
        <div class="footerButton">
          <el-button v-waves @click="mouldDialogVisibleCancel">取 消</el-button>
          <el-button
            v-waves
            type="primary"
            :loading="$store.state.app.buttonIsDisabled"
            :disabled="$store.state.app.buttonIsDisabled"
            @click="mouldDialogVisibleConfirm"
          >确 定</el-button>
        </div>
      </span>
    </el-dialog>
  </div>
</template>
<script>
import Pagination from '@/components/Pagination'
import { validateCode } from '@/utils/global'
import elDragDialog from '@/directive/el-drag-dialog'
import waves from '@/directive/waves'
import TableColumnSettings from '@/components/TableColumnSettings'
import {
  AddUpdateMouldRepairStandArd,
  DeleteMouldRepairStaned,
  MouldRepairStandArdSearch,
  RepairStanedAssociationMould,
  SaveRepairStanedAssociationMould,
  ViewMouldRepairStanedSearch
} from '@/api/MouldManager'
import ElDragSelect from '@/components/DragSelect'
import { MouldRepairItemSelect } from '@/api/GeneralBasicData'
import arrayToTree from 'array-to-tree'
export default {
  name: 'MouldMaintainStand'
  name: 'Zzjg',
  components: {
    Pagination, TableColumnSettings, ElDragSelect
  },
  directives: { elDragDialog, waves },
  data() {
    return {
      mainHeight: 0,
      tableHeight: 0,
      form: {
        repairstandcode: '', // 标准编码
        repairstandname: '', // 标准名称
        repairstandescr: '', // 点检管控
        prop: 'lm_date', // 排序字段
        order: 'desc', // 排序字段
        page: 1, // 第几页
        rows: 20 // 每页多少条
      },
      checkcontrArr: [
        { code: 'Y', name: '是' },
        { code: 'N', name: '否' }
      ],
      cycleArr: [
        { code: 'D', name: '日' }
      ],
      total: 10,
      tableData: [],
      tableColumnSettingsArray: [
        { minWidth: false, width: 55, prop: 'id', label: 'id', id: 1, show: false, fixed: false, sortable: false }, // 隐藏列  show: false隐藏,true显示
        { minWidth: false, width: 55, prop: 'rowNum', label: '序号', id: 2, show: true, fixed: 'left', sortable: false }, // custom
        {
          minWidth: 110,
          width: false,
          prop: 'code',
          label: '标准编码',
          id: 3,
          show: true,
          fixed: false,
          sortable: true
        },
        {
          minWidth: 110,
          width: false,
          prop: 'name',
          label: '标准名称',
          id: 4,
          show: true,
          fixed: false,
          sortable: true
        },
        {
          minWidth: 330,
          width: false,
          prop: 'description',
          label: '标准描述',
          id: 5,
          show: true,
          fixed: false,
          sortable: true
        },
        {
          minWidth: false,
          width: 110,
          prop: 'is_repairmould',
          label: '关联模具',
          id: 6,
          show: true,
          fixed: false,
          sortable: true
        },
        // {
        //   minWidth: false,
        //   width: 110,
        //   prop: 'is_checkeqp',
        //   label: '关联设备',
        //   id: 7,
        //   show: true,
        //   fixed: false,
        //   sortable: true
        // },
        {
          minWidth: false,
          width: 110,
          prop: 'lm_user',
          label: '创建人员',
          id: 8,
          show: true,
          fixed: false,
          sortable: true
        },
        {
          minWidth: false,
          width: 160,
          prop: 'lm_date',
          label: '创建时间',
          id: 9,
          show: true,
          fixed: false,
          sortable: true
        }
      ],
      tableTimeStampKey: new Date().getTime(), // 表格key
      dialogVisible: false,
      dialogForm: {
        code: '',
        name: '',
        description: ''
      },
      operation: '',
      dialogFormRules: {
        code: [
          { required: true, validator: validateCode, trigger: ['blur', 'change'] }
        ],
        name: [
          { required: true, message: '请输入标准名称', trigger: ['blur', 'change'] }
        ]
      },
      tableDataDialog: [], // 表格数据
      checkSelectedValue: [],
      checkSelectArr: [],
      mouldDialogVisible: false,
      tree: [
        {
          code: '-1',
          name: '全部'
        }
      ],
      filterText: '',
      defaultProps: {
        children: 'children',
        label: 'name'
      },
      repairstand_code: ''
    }
  },
  watch: {
    filterText(val) {
      this.$refs.tree.filter(val)
    },
    'checkSelectedValue': {
      handler: function(val) {
        const arr = JSON.parse(JSON.stringify(this.tableDataDialog))
        const arrCheckcode = arr.map(i => i.code)
        this.tableDataDialog = []
        val.forEach(i => {
          this.tableDataDialog.push(
            {
              code: i,
              name: this.checkSelectArr.find(j => j.code === i).name,
              description: arrCheckcode.includes(i) ? arr.find(j => j.code === i).description : this.checkSelectArr.find(j => j.code === i).description
            }
          )
        })
      }
    }
  },
  created() {
    this.handleRequest()
  },
  mounted() {
    window.addEventListener('resize', this.getHeight)
    this.getHeight()
  },
  methods: {
    tableColumnUpdate(val, isCopyTrue) {
      if (isCopyTrue) {
        this.tableColumnSettingsArray = val
      }
      this.tableTimeStampKey = new Date().getTime()
      this.$refs.tableDataRef.doLayout()
    },
    handleRequest() {
      this.getMouldRepairStandArdSearch().then(res => {
        if (res.code === '200') {
          this.getMouldRepairItemSelect()
        }
      })
    },
    async getMouldRepairStandArdSearch() {
      const res = await MouldRepairStandArdSearch(this.form)
      this.tableData = res.data
      this.total = res.count
      return { code: res.code }
    },
    // 排序改变时
    sortChange({ column, prop, order }) {
      if (order === 'descending') {
        order = 'desc'
      } else if (order === 'ascending') {
        order = 'asc'
      } else {
        order = 'desc'
      }
      this.form.order = order
      this.form.prop = prop
      this.getMouldRepairStandArdSearch()
    },
    // 查询
    search() {
      this.getMouldRepairStandArdSearch()
    },
    // 重置
    reset() {
      this.form.repairstandcode = ''
      this.form.repairstandname = ''
      this.form.repairstandescr = ''
      this.getMouldRepairStandArdSearch()
    },
    async getMouldRepairItemSelect() {
      const { data: res } = await MouldRepairItemSelect()
      this.checkSelectArr = res
    },
    // 新增按钮
    add(operation) {
      this.operation = operation
      this.dialogVisible = true
      this.$nextTick(() => {
        this.$refs.tableDataDialogRef.doLayout()
      })
    },
    // 修改按钮
    edit(operation, row) {
      this.operation = operation
      this.getViewMouldRepairStanedSearch(row.code)
      this.dialogVisible = true
      this.$nextTick(() => {
        this.$refs.tableDataDialogRef.doLayout()
      })
    },
    // 修改前请求接口
    async getViewMouldRepairStanedSearch(repairstand_code) {
      const { data: res } = await ViewMouldRepairStanedSearch({ repairstand_code })
      this.tableDataDialog = res.data
      this.checkSelectedValue = res.data.map(i => i.code)
      this.dialogForm.code = res.code
      this.dialogForm.name = res.name
      this.dialogForm.description = res.description
      this.tableDataDialog.forEach(item => {
        item.description = item.chkdesc
      })
    },
    // 删除按钮
    async del(row) {
      this.$confirm('是否确认删除?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        DeleteMouldRepairStaned({ repairstand_code: row.code }).then(res => {
          if (res.code === '200') {
            this.$notify.success('删除成功!')
            if (this.form.page > 1 && this.tableData.length === 1) {
              this.form.page--
            }
            this.getMouldRepairStandArdSearch()
          }
        })
      }).catch(() => {
        this.$notify.info('已取消删除')
      })
    },
    // 对话框关闭事件
    handleClose() {
      this.dialogForm.code = ''
      this.dialogForm.name = ''
      this.dialogForm.description = ''
      this.tableDataDialog = []
      this.checkSelectedValue = []
      this.$refs.dialogForm.clearValidate()
    },
    // 对话框取消
    dialogVisibleCancel() {
      this.dialogVisible = false
    },
    // 对话框确认
    dialogVisibleConfirm() {
      this.$refs.dialogForm.validate(valid => {
        if (valid) {
          if (this.tableDataDialog.length === 0) {
            return this.$message.info('保养项信息不能为空!')
          }
          const Data = []
          this.tableDataDialog.forEach((i, index) => {
            Data.push({
              repairitem_seq: index + 1,
              repairitem_code: i.code,
              repairitem_name: i.name,
              repairitem_descr: i.description
              // cycle: '',
              // isscan: ''
            })
          })
          const data = {
            'code': this.dialogForm.code,
            'name': this.dialogForm.name,
            'description': this.dialogForm.description,
            'Data': Data
          }
          this.$store.state.app.buttonIsDisabled = true
          AddUpdateMouldRepairStandArd(data, this.operation === 'add' ? 'Add' : 'Update').then(res => {
            if (res.code === '200') {
              this.dialogVisible = false
              this.$notify.success(this.operation === 'add' ? '添加成功!' : '修改成功!')
              this.getMouldRepairStandArdSearch()
              this.$store.state.app.buttonIsDisabled = false
            } else {
              this.$notify.error(this.operation === 'add' ? '添加失败!' : '修改失败!')
            }
          })
        }
      })
    },
    // 关联模具点击
    async connectClick(row) {
      const { data: res } = await RepairStanedAssociationMould({ repairstand_code: row.code })
      this.repairstand_code = row.code
      const keySelected = []
      res.forEach(i => {
        i.parentid = '-1'
        i.name = i.code + ' / ' + i.name
        if (i.flag === 'Y') {
          keySelected.push(i.code)
        }
      })
      this.tree = arrayToTree(this.tree.concat(res), {
        parentProperty: 'parentid',
        customID: 'code',
        childrenProperty: 'children'
      })
      this.mouldDialogVisible = true
      this.$nextTick(() => {
        this.$refs.tree.setCheckedKeys(keySelected)
      })
    },
    filterNode(value, data) {
      if (!value) return true
      return data.name.indexOf(value) !== -1
    },
    handleMouldClose() {
      this.tree = [
        {
          code: '-1',
          name: '全部'
        }
      ]
    },
    mouldDialogVisibleCancel() {
      this.mouldDialogVisible = false
    },
    mouldDialogVisibleConfirm() {
      const treeKey = this.$refs.tree.getCheckedKeys()
      const arr = []
      this.tree[0].children.forEach(i => {
        // i.flag = treeKey.includes(i.code) ? 'Y' : 'N'
        if (treeKey.includes(i.code)) {
          arr.push({
            code: i.code,
            name: i.name
          })
        }
      })
      this.$store.state.app.buttonIsDisabled = true
      SaveRepairStanedAssociationMould(arr, this.repairstand_code).then(res => {
        if (res.code === '200') {
          this.$notify.success('绑定成功!')
          this.mouldDialogVisible = false
          this.getMouldRepairStandArdSearch()
          this.$store.state.app.buttonIsDisabled = false
        } else {
          this.$store.state.app.buttonIsDisabled = false
          this.$notify.error('绑定失败!')
        }
      })
    },
    // 获取页面高度
    getHeight() {
      this.$nextTick(() => {
        this.mainHeight = window.innerHeight - 85
        this.tableHeight = this.mainHeight - 205
        this.$refs.tableDataRef.doLayout()
      })
    },
    tableRowClassName({ row, rowIndex }) {
      return 'custom-row'
    }
  }
}
</script>
<style scoped>
<style scoped lang="scss">
::v-deep .el-select__caret {
  display: flex;
  align-items: center;
  justify-content: center;
}
</style>
src/views/systemSetting/dataImport.vue
@@ -135,6 +135,10 @@
                    item.indexOf('模具编码')!==-1||
                    item.indexOf('产品编码')!==-1||
                    item.indexOf('标准编号')!==-1||
                    item.indexOf('项序号')!==-1||
                    item.indexOf('项要求')!==-1||
                    item.indexOf('计量单位/组名称')!==-1
                  "
                >
@@ -573,6 +577,21 @@
          j.uuid = nanoid()
        })
      }
      if (this.sheetName.indexOf('模具点检标准') !== -1) {
        // this.statusArr = [
        //   { code: 'Y', name: '正常' },
        //   { code: 'N', name: '故障' }
        // ]
        this.tableData[0].forEach(j => {
          j.uuid = nanoid()
          // j['*状态'] = j['*状态'] ? this.statusArr.find(e => e.name === j['*状态']).code : ''
        })
        this.tableData[1].forEach(j => {
          j.uuid = nanoid()
        })
      }
    },
    // 提交
    submit() {
@@ -661,6 +680,27 @@
          if (this.sheetName.indexOf('模具点检项目') !== -1) {
            const res = this.handleMouldCheckPosSubmitData()
            if (res.code !== '200') {
              return this.$message.info(res.message)
            }
          }
          if (this.sheetName.indexOf('模具点检标准') !== -1) {
            const res = this.handleMouldCheckStandSubmitData()
            if (res.code !== '200') {
              return this.$message.info(res.message)
            }
          }
          if (this.sheetName.indexOf('模具保养项目') !== -1) {
            const res = this.handleMouldMaintainSubmitData()
            if (res.code !== '200') {
              return this.$message.info(res.message)
            }
          }
          if (this.sheetName.indexOf('模具保养标准') !== -1) {
            const res = this.handleMouldMaintainStandSubmitData()
            if (res.code !== '200') {
              return this.$message.info(res.message)
            }
@@ -1296,6 +1336,138 @@
      return { code: '200', message: '成功!' }
    },
    // 处理模具点检标准提交数据
    handleMouldCheckStandSubmitData() {
      let flag = true
      let msg = ''
      if ([...new Set(this.tableData[0].map(i => i['*模具点检标准编号(唯一)']))].length !== this.tableData[0].length) {
        return this.$message.info('点检标准编号不能重复!')
      }
      if ([...new Set(this.tableData[1].map(i => i['*模具点检标准编号']))].length !== this.tableData[1].length) {
        return this.$message.info('模具点检标准编号不能重复!')
      }
      this.tableData[0].forEach(j => {
        if (!j['*模具点检标准编号(唯一)']) {
          flag = false
          msg = '*模具点检标准编号(唯一)不能为空!'
        }
        if (!j['*模具点检标准名称']) {
          flag = false
          msg = '*模具点检标准不能为空!'
        }
      })
      this.tableData[1].forEach(j => {
        if (!j['*模具点检标准编号']) {
          flag = false
          msg = '*模具点检标准编号不能为空!'
        }
        if (!j['*点检项序号']) {
          flag = false
          msg = '*点检项序号不能为空!'
        }
        if (!j['*模具点检项编号(唯一)']) {
          flag = false
          msg = '*模具点检项编号(唯一)不能为空!'
        }
        if (!j['*模具点检项名称']) {
          flag = false
          msg = '*模具点检项名称不能为空!'
        }
      })
      if (!flag) {
        return { code: '301', message: msg }
      }
      this.tableData[0].map(item => {
        delete (item.uuid)
      })
      this.tableData[1].map(item => {
        delete (item.uuid)
      })
      return { code: '200', message: '成功!' }
    },
    // 处理模具保养项目提交数据
    handleMouldMaintainSubmitData() {
      let flag = true
      let msg = ''
      if ([...new Set(this.tableData[0].map(i => i['*保养项目编号(唯一)']))].length !== this.tableData[0].length) {
        return this.$message.info('编码不能重复!')
      }
      this.tableData[0].forEach(j => {
        if (!j['*保养项目编号(唯一)']) {
          flag = false
          msg = '*保养项目编号(唯一)'
        }
        if (!j['*保养项目名称']) {
          flag = false
          msg = '*保养项目名称'
        }
      })
      if (!flag) {
        return { code: '301', message: msg + '不能为空!' }
      }
      this.tableData[0].map(item => {
        delete (item.uuid)
      })
      return { code: '200', message: '成功!' }
    },
    // 处理模具保养标准提交数据
    handleMouldMaintainStandSubmitData() {
      let flag = true
      let msg = ''
      if ([...new Set(this.tableData[0].map(i => i['*模具保养标准编号(唯一)']))].length !== this.tableData[0].length) {
        return this.$message.info('保养标准编号不能重复!')
      }
      if ([...new Set(this.tableData[1].map(i => i['*模具保养标准编号']))].length !== this.tableData[1].length) {
        return this.$message.info('模具保养标准编号不能重复!')
      }
      this.tableData[0].forEach(j => {
        if (!j['*模具保养标准编号(唯一)']) {
          flag = false
          msg = '*模具保养标准编号(唯一)不能为空!'
        }
        if (!j['*模具保养标准名称']) {
          flag = false
          msg = '*模具保养标准不能为空!'
        }
      })
      this.tableData[1].forEach(j => {
        if (!j['*模具保养标准编号']) {
          flag = false
          msg = '*模具保养标准编号不能为空!'
        }
        if (!j['*保养项序号']) {
          flag = false
          msg = '*保养项序号不能为空!'
        }
        if (!j['*模具保养项编号(唯一)']) {
          flag = false
          msg = '*模具保养项编号(唯一)不能为空!'
        }
        if (!j['*模具保养项名称']) {
          flag = false
          msg = '*模具保养项名称不能为空!'
        }
      })
      if (!flag) {
        return { code: '301', message: msg }
      }
      this.tableData[0].map(item => {
        delete (item.uuid)
      })
      this.tableData[1].map(item => {
        delete (item.uuid)
      })
      return { code: '200', message: '成功!' }
    },
    // parents:用于返回的数组,childNode:要查询的节点,treeData:json树形数据
    findParent(parents, childNode, treeData) {
@@ -1505,6 +1677,56 @@
          '要求描述': ''
        })
      }
      //  模具点检标准
      if (this.sheetName.indexOf('模具点检标准') !== -1 && this.activeName === '0') {
        this.tableData[0].unshift({
          uuid: nanoid(),
          '*模具点检标准编号(唯一)': '',
          '*模具点检标准名称': '',
          '标准描述': ''
        })
      }
      if (this.sheetName.indexOf('关联模具点检部位') !== -1 && this.activeName === '1') {
        this.tableData[1].unshift({
          uuid: nanoid(),
          '*模具点检标准编号': '',
          '*点检项序号': '',
          '*模具点检项编号(唯一)': '',
          '*模具点检项名称': '',
          '点检项要求': ''
        })
      }
      //  模具保养项
      if (this.sheetName.indexOf('模具保养项目') !== -1) {
        this.tableData[0].unshift({
          uuid: nanoid(),
          '*保养项目编号(唯一)': '',
          '*保养项目名称': '',
          '要求描述': ''
        })
      }
      //  模具保养标准
      if (this.sheetName.indexOf('模具保养标准') !== -1 && this.activeName === '0') {
        this.tableData[0].unshift({
          uuid: nanoid(),
          '*模具保养标准编号(唯一)': '',
          '*模具保养标准名称': '',
          '标准描述': ''
        })
      }
      if (this.sheetName.indexOf('关联模具保养部位') !== -1 && this.activeName === '1') {
        this.tableData[1].unshift({
          uuid: nanoid(),
          '*模具保养标准编号': '',
          '*保养项序号': '',
          '*模具保养项编号(唯一)': '',
          '*模具保养项名称': '',
          '保养项要求': ''
        })
      }
    },
    delRow(row) {
      // 针对单sheet