liding
昨天 298a75f485465ad049c1d5922a94026f81ca40d1
src/views/standard/standardLibrary/index.vue
@@ -56,6 +56,17 @@
        </pane>
        <!--用户数据-->
        <pane size="88">
          <el-card v-if="selected.isLeaf" shadow="never" class="template-binding-card">
            <div slot="header"><span>原始记录模板</span><el-button v-if="checkPermi(['standard:standardLibrary:upStandardProduct'])" type="primary" size="mini" style="float:right" @click="saveBindings">保存绑定</el-button></div>
            <p v-if="!templateBindings.length" class="binding-tip">请为当前标准绑定原始记录模板;模板中须使用“检验项”标记。</p>
            <el-table :data="templateBindings" border size="small">
              <el-table-column type="index" label="顺序" width="70" /><el-table-column label="模板编号" prop="number" width="180" /><el-table-column label="模板名称" prop="name" /><el-table-column label="检测依据(模板备注)" prop="remark" />
              <el-table-column v-if="checkPermi(['standard:standardLibrary:upStandardProduct'])" label="操作" width="150"><template slot-scope="scope"><el-button type="text" :disabled="scope.$index === 0" @click="moveBinding(scope.$index, -1)">上移</el-button><el-button type="text" :disabled="scope.$index === templateBindings.length - 1" @click="moveBinding(scope.$index, 1)">下移</el-button><el-button type="text" @click="removeBinding(scope.$index)">移除</el-button></template></el-table-column>
            </el-table>
            <el-select v-if="checkPermi(['standard:standardLibrary:upStandardProduct'])" v-model="templateToBind" filterable placeholder="选择原始记录模板" size="small" style="width:320px;margin-top:16px" @change="addBinding"><el-option v-for="template in templateList.filter(item => !templateBindings.some(binding => binding.templateId === item.id))" :key="template.id" :label="template.number ? template.number + ' - ' + template.name : template.name" :value="template.id" /></el-select>
          </el-card>
          <el-empty v-else description="请选择二级标准,维护其原始记录模板" />
          <div v-if="false">
          <div class="search_form">
            <div style="height:37px">
              <p style="font-size: 14px; color: #999;margin-left: 10px">{{ selectTree }}</p>
@@ -192,6 +203,7 @@
              <p style="text-align: right;margin-right: 20px;color: #333;">共{{ total }}条</p>
            </el-row>
          </el-col>
          </div>
        </pane>
      </splitpanes>
    </el-row>
@@ -321,6 +333,8 @@
  selectStandardProductListByMethodId,
  updateSection,
  getStandardTemplate,
  selectTemplateBindings,
  saveTemplateBindings,
} from "@/api/standard/standardLibrary";
import bindSupplierDensityDialogAsk from "./components/bindSupplierDensityDialogAsk.vue";
import BatchCopy from "./components/BatchCopy.vue";
@@ -391,6 +405,8 @@
      sectionRow: null,
      sectionList: [],
      templateList: [],
      templateBindings: [],
      templateToBind: null,
      total: 0,
      currentPage: 1,
      standardId: 0,
@@ -495,6 +511,7 @@
      this.currentPage = 1;
      this.selectTree = buildSelectTree(node, "null");
      this.selected = {
        id: val.id,
        label: val.label,
        tree: this.selectTree,
        isLeaf: leaf,
@@ -504,10 +521,11 @@
      this.standardList = [];
      this.productList = [];
      if (leaf) {
        this.selectsStandardMethodByFLSSM();
        this.loadTemplateBindings(val.id);
      } else {
        this.standardId = 0;
        this.syncSortable();
        this.templateBindings = [];
      }
    },
    remove(node, data) {
@@ -965,6 +983,35 @@
        this.templateList = res.data;
      });
    },
    loadTemplateBindings(standardTreeId) {
      selectTemplateBindings({ standardTreeId }).then((res) => {
        this.templateBindings = res.data || [];
        this.templateToBind = null;
      });
    },
    addBinding(templateId) {
      const template = this.templateList.find((item) => item.id === templateId);
      if (template && !this.templateBindings.some((item) => item.templateId === templateId)) {
        this.templateBindings.push({ ...template, templateId, sort: this.templateBindings.length });
      }
      this.templateToBind = null;
    },
    removeBinding(index) {
      this.templateBindings.splice(index, 1);
    },
    moveBinding(index, offset) {
      const target = index + offset;
      const item = this.templateBindings.splice(index, 1)[0];
      this.templateBindings.splice(target, 0, item);
    },
    saveBindings() {
      saveTemplateBindings({ standardTreeId: this.selected.id,
        templates: this.templateBindings.map((item, index) => ({ templateId: item.templateId, sort: index }))
      }).then(() => {
        this.$message.success("模板绑定已保存");
        this.loadTemplateBindings(this.selected.id);
      });
    },
    handleCurrentChange(val) {
      this.currentPage = val;
      this.tableLoad2 = true;