1
lzhe
2025-08-22 e0529600d302c3e3190d802390417bd1a8b72a05
src/views/wel/shemi.vue
@@ -32,7 +32,7 @@
          </el-col>
          <el-col :span="8" class="search-data-flex">
            <span class="search-data-title">时间范围:</span>
            <el-date-picker v-model="searchTreeData.createTime" type="daterange" range-separator="To" start-placeholder="开始时间" end-placeholder="结束时间" :size="size" format="YYYY-MM-DD" value-format="YYYY-MM-DD" @change="createTimeChange"/>
            <el-date-picker v-model="searchTreeData.createTime" type="daterange" range-separator="To" start-placeholder="开始时间" end-placeholder="结束时间" :size="size" format="YYYY-MM-DD" value-format="YYYY-MM-DD" :disabled-date="disabledDate" @change="createTimeChange"/>
          </el-col>
          <el-col :span="8">
            <el-button type="primary" @click="searchTree"><el-icon class="el-icon--right" style="margin-right: 6px;"><Search /></el-icon>搜索</el-button>
@@ -644,6 +644,19 @@
    
  },
  methods: {
    disabledDate(time) {
      // 获取当前日期
      const today = new Date();
      today.setHours(0, 0, 0, 0); // 设置为当天开始时间
      // 获取三个月前的日期
      const threeMonthsAgo = new Date();
      threeMonthsAgo.setMonth(threeMonthsAgo.getMonth() - 3);
      threeMonthsAgo.setHours(0, 0, 0, 0);
      // 禁用今天之后的日期和三个月前的日期之前的日期
      return time.getTime() > today.getTime() || time.getTime() < threeMonthsAgo.getTime();
    },
    createTimeChange(value) {
      this.searchTreeData.createTimeBegin = value[0];
      this.searchTreeData.createTimeEnd = value[1];
@@ -667,8 +680,10 @@
        this.drawingNoList = [];
      }
    },
    locked(row, isLock) {
      row.isLocked == isLock
    locked(row, isLockP) {
      //row.isLocked == isLock
      var isLock = row.isLocked == 1;
       console.log('isLock',isLock)
      this.$confirm(`是否${isLock ? '解锁' : '锁定'}`, {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
@@ -686,6 +701,8 @@
            this.$message({type: 'success',message: res.data.msg});
          }
        });
      }).catch(action=>{
        console.log('cancel')
      });
    },
    handleSubmit(form, done) {
@@ -817,8 +834,9 @@
    searchTree() {
      if(this.searchTreeData.programStatus.length == 0) return;
      if(this.searchTreeData.drawingNo == "") return;
      this.searchTreeData.status = this.searchTreeData.programStatus.join();
      axios({
        url: '/blade-mdm/program/node/search-list',
        url: '/blade-mdm/program/node/search-list2',
        method: 'get',
        params: this.searchTreeData,
      }).then(res => {
@@ -828,6 +846,7 @@
        this.$nextTick(() => {
          this.highlightTargetRow();  // 设置当前行高亮
          this.tabsForm = this.targetRow;  //tabs节点信息
          if(this.tabsForm == null) return;
          this.nodeTypeList.forEach(item=> {
            if(item.dictKey == this.tabsForm.nodeType) {
              this.tabsForm.nodeTypeName = item.dictValue;
@@ -843,6 +862,7 @@
      this.option.defaultExpandAll = false;
      this.searchTreeData = {
        programStatus: [],
        status:'',
        drawingNo: "",
        createTime: [],
        createTimeBegin: "",