From ff2f7d7bad0132c130c305364a863ff446e926b2 Mon Sep 17 00:00:00 2001
From: 小小儁爺 <1694218219@qq.com>
Date: 星期一, 30 十二月 2024 13:47:24 +0800
Subject: [PATCH] 1.在缓存模式下   页面切换会请求接口

---
 src/views/mouldManager/mouldCheckStand.vue | 1431 +++++++++++++++++++++++++++++-----------------------------
 1 files changed, 718 insertions(+), 713 deletions(-)

diff --git a/src/views/mouldManager/mouldCheckStand.vue b/src/views/mouldManager/mouldCheckStand.vue
index cfabe9d..9dd6c62 100644
--- a/src/views/mouldManager/mouldCheckStand.vue
+++ b/src/views/mouldManager/mouldCheckStand.vue
@@ -1,713 +1,718 @@
-<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=13_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.checkstandcode" placeholder="璇疯緭鍏�" style="width: 200px" />
-            </el-form-item>
-            <el-form-item label="鏍囧噯鍚嶇О" style=" display: flex;">
-              <el-input v-model="form.checkstandname" placeholder="璇疯緭鍏�" style="width: 200px" />
-            </el-form-item>
-            <el-form-item label="鏍囧噯鎻忚堪" style=" display: flex;">
-              <el-input v-model="form.checkstandescr" 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_checkmould'">
-                <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="getDeviceCheckStandArdSearch"
-      />
-    </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="8vh"
-      @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;height: 550px;overflow: auto"
-          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 {
-  AddUpdateMouldCheckStandArd, CheckStanedAssociationMould,
-  DeleteMouldCheckStaned,
-  DeviceCheckStandArdSearch, SaveCheckStanedAssociationMould,
-  ViewMouldCheckStanedSearch
-} from '@/api/MouldManager'
-import ElDragSelect from '@/components/DragSelect'
-import { MouldCheckItemSelect } from '@/api/GeneralBasicData'
-import arrayToTree from 'array-to-tree'
-
-export default {
-  name: 'MouldCheckStand',
-  components: {
-    Pagination, TableColumnSettings, ElDragSelect
-  },
-  directives: { elDragDialog, waves },
-  data() {
-    return {
-      mainHeight: 0,
-      tableHeight: 0,
-      form: {
-        checkstandcode: '', // 鏍囧噯缂栫爜
-        checkstandname: '', // 鏍囧噯鍚嶇О
-        checkstandescr: '', // 鐐规绠℃帶
-        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闅愯棌锛宼rue鏄剧ず
-        { 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_checkmould',
-          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'
-      },
-      checkstand_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
-            }
-          )
-        })
-      }
-    }
-  },
-  activated() {
  window.addEventListener('resize', this.getHeight)
  this.getHeight()
},
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.getDeviceCheckStandArdSearch().then(res => {
-        if (res.code === '200') {
-          this.getMouldCheckItemSelect()
-        }
-      })
-    },
-    async getDeviceCheckStandArdSearch() {
-      const res = await DeviceCheckStandArdSearch(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.getDeviceCheckStandArdSearch()
-    },
-    // 鏌ヨ
-    search() {
-      this.getDeviceCheckStandArdSearch()
-    },
-    // 瀵煎叆鎸夐挳
-    upload() {
-      this.shows = true
-      this.$refs.importPickerFunc.newDataFunc()
-    },
-    colos() {
-      this.shows = false
-    },
-    // 閲嶇疆
-    reset() {
-      this.form.checkstandcode = ''
-      this.form.checkstandname = ''
-      this.form.checkstandescr = ''
-      this.getDeviceCheckStandArdSearch()
-    },
-
-    async getMouldCheckItemSelect() {
-      const { data: res } = await MouldCheckItemSelect()
-      this.checkSelectArr = res
-    },
-
-    // 鏂板鎸夐挳
-    add(operation) {
-      this.operation = operation
-      this.dialogVisible = true
-      this.$nextTick(() => {
-        this.$refs.tableDataDialogRef.doLayout()
-      })
-    },
-    // 淇敼鎸夐挳
-    edit(operation, row) {
-      this.operation = operation
-      this.getViewDeviceCheckStanedSearch(row.code)
-      this.dialogVisible = true
-      this.$nextTick(() => {
-        this.$refs.tableDataDialogRef.doLayout()
-      })
-    },
-    // 淇敼鍓嶈姹傛帴鍙�
-    async getViewDeviceCheckStanedSearch(checkstand_code) {
-      const { data: res } = await ViewMouldCheckStanedSearch({ checkstand_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(() => {
-        DeleteMouldCheckStaned({ checkstand_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.getDeviceCheckStandArdSearch()
-          }
-        })
-      }).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({
-              checkitem_seq: index + 1,
-              checkitem_code: i.code,
-              checkitem_name: i.name,
-              checkitem_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
-          AddUpdateMouldCheckStandArd(data, this.operation === 'add' ? 'Add' : 'Update').then(res => {
-            if (res.code === '200') {
-              this.dialogVisible = false
-              this.$notify.success(this.operation === 'add' ? '娣诲姞鎴愬姛锛�' : '淇敼鎴愬姛锛�')
-              this.getDeviceCheckStandArdSearch()
-              // this.getMouldCheckItemSelect()
-              this.$store.state.app.buttonIsDisabled = false
-            } else {
-              this.$notify.error(this.operation === 'add' ? '娣诲姞澶辫触锛�' : '淇敼澶辫触锛�')
-            }
-          })
-        }
-      })
-    },
-
-    // 鍏宠仈妯″叿鐐瑰嚮
-    async connectClick(row) {
-      const { data: res } = await CheckStanedAssociationMould({ checkstand_code: row.code })
-      this.checkstand_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.split('/')[1].trim()
-          })
-        }
-      })
-
-      this.$store.state.app.buttonIsDisabled = true
-      SaveCheckStanedAssociationMould(arr, this.checkstand_code).then(res => {
-        if (res.code === '200') {
-          this.$notify.success('缁戝畾鎴愬姛锛�')
-          this.mouldDialogVisible = false
-          this.getDeviceCheckStandArdSearch()
-          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 lang="scss">
-::v-deep .el-select__caret {
-  display: flex;
-  align-items: center;
-  justify-content: center;
-}
-</style>
+<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=13_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.checkstandcode" placeholder="璇疯緭鍏�" style="width: 200px" />
+            </el-form-item>
+            <el-form-item label="鏍囧噯鍚嶇О" style=" display: flex;">
+              <el-input v-model="form.checkstandname" placeholder="璇疯緭鍏�" style="width: 200px" />
+            </el-form-item>
+            <el-form-item label="鏍囧噯鎻忚堪" style=" display: flex;">
+              <el-input v-model="form.checkstandescr" 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_checkmould'">
+                <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="getDeviceCheckStandArdSearch"
+      />
+    </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="8vh"
+      @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;height: 550px;overflow: auto"
+          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 {
+  AddUpdateMouldCheckStandArd, CheckStanedAssociationMould,
+  DeleteMouldCheckStaned,
+  DeviceCheckStandArdSearch, SaveCheckStanedAssociationMould,
+  ViewMouldCheckStanedSearch
+} from '@/api/MouldManager'
+import ElDragSelect from '@/components/DragSelect'
+import { MouldCheckItemSelect } from '@/api/GeneralBasicData'
+import arrayToTree from 'array-to-tree'
+
+export default {
+  name: 'MouldCheckStand',
+  components: {
+    Pagination, TableColumnSettings, ElDragSelect
+  },
+  directives: { elDragDialog, waves },
+  data() {
+    return {
+      mainHeight: 0,
+      tableHeight: 0,
+      form: {
+        checkstandcode: '', // 鏍囧噯缂栫爜
+        checkstandname: '', // 鏍囧噯鍚嶇О
+        checkstandescr: '', // 鐐规绠℃帶
+        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闅愯棌锛宼rue鏄剧ず
+        { 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_checkmould',
+          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'
+      },
+      checkstand_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
+            }
+          )
+        })
+      }
+    }
+  },
+  activated() {
+    window.addEventListener('resize', this.getHeight)
+    this.getHeight()
+    this.handleRequest()
+  },
+  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.getDeviceCheckStandArdSearch().then(res => {
+        if (res.code === '200') {
+          this.getMouldCheckItemSelect()
+        }
+      })
+    },
+    async getDeviceCheckStandArdSearch() {
+      const res = await DeviceCheckStandArdSearch(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.getDeviceCheckStandArdSearch()
+    },
+    // 鏌ヨ
+    search() {
+      this.getDeviceCheckStandArdSearch()
+    },
+    // 瀵煎叆鎸夐挳
+    upload() {
+      this.shows = true
+      this.$refs.importPickerFunc.newDataFunc()
+    },
+    colos() {
+      this.shows = false
+    },
+    // 閲嶇疆
+    reset() {
+      this.form.checkstandcode = ''
+      this.form.checkstandname = ''
+      this.form.checkstandescr = ''
+      this.getDeviceCheckStandArdSearch()
+    },
+
+    async getMouldCheckItemSelect() {
+      const { data: res } = await MouldCheckItemSelect()
+      this.checkSelectArr = res
+    },
+
+    // 鏂板鎸夐挳
+    add(operation) {
+      this.operation = operation
+      this.dialogVisible = true
+      this.$nextTick(() => {
+        this.$refs.tableDataDialogRef.doLayout()
+      })
+    },
+    // 淇敼鎸夐挳
+    edit(operation, row) {
+      this.operation = operation
+      this.getViewDeviceCheckStanedSearch(row.code)
+      this.dialogVisible = true
+      this.$nextTick(() => {
+        this.$refs.tableDataDialogRef.doLayout()
+      })
+    },
+    // 淇敼鍓嶈姹傛帴鍙�
+    async getViewDeviceCheckStanedSearch(checkstand_code) {
+      const { data: res } = await ViewMouldCheckStanedSearch({ checkstand_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(() => {
+        DeleteMouldCheckStaned({ checkstand_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.getDeviceCheckStandArdSearch()
+          }
+        })
+      }).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({
+              checkitem_seq: index + 1,
+              checkitem_code: i.code,
+              checkitem_name: i.name,
+              checkitem_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
+          AddUpdateMouldCheckStandArd(data, this.operation === 'add' ? 'Add' : 'Update').then(res => {
+            if (res.code === '200') {
+              this.dialogVisible = false
+              this.$notify.success(this.operation === 'add' ? '娣诲姞鎴愬姛锛�' : '淇敼鎴愬姛锛�')
+              this.getDeviceCheckStandArdSearch()
+              // this.getMouldCheckItemSelect()
+              this.$store.state.app.buttonIsDisabled = false
+            } else {
+              this.$notify.error(this.operation === 'add' ? '娣诲姞澶辫触锛�' : '淇敼澶辫触锛�')
+            }
+          })
+        }
+      })
+    },
+
+    // 鍏宠仈妯″叿鐐瑰嚮
+    async connectClick(row) {
+      const { data: res } = await CheckStanedAssociationMould({ checkstand_code: row.code })
+      this.checkstand_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.split('/')[1].trim()
+          })
+        }
+      })
+
+      this.$store.state.app.buttonIsDisabled = true
+      SaveCheckStanedAssociationMould(arr, this.checkstand_code).then(res => {
+        if (res.code === '200') {
+          this.$notify.success('缁戝畾鎴愬姛锛�')
+          this.mouldDialogVisible = false
+          this.getDeviceCheckStandArdSearch()
+          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 lang="scss">
+::v-deep .el-select__caret {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+}
+</style>

--
Gitblit v1.9.3