wangting
2023-08-01 a58b3e645e0f2f8cebff610c292107c566716702
修改bug
已修改6个文件
20 ■■■■ 文件已修改
Source/UBCS-WEB/src/components/template/FlowPath.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/option/system/dict.js 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/modeling/Business.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/modeling/LinkTypeAdd.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/system/dict.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/components/template/FlowPath.vue
@@ -42,6 +42,7 @@
              height: "auto",
              border: true,
              align: 'center',
              menu:!this.checkStatus || this.crudLCStatus == 'Editing',
              menuAlign: 'center',
              index: true,
              searchMenuSpan: 8,
Source/UBCS-WEB/src/option/system/dict.js
@@ -1,6 +1,6 @@
export const optionParent = {
  height: 'auto',
  calcHeight: 30,
  calcHeight: 20,
  tip: false,
  searchShow: true,
  searchMenuSpan: 10,
@@ -98,7 +98,7 @@
  index: true,
  selection: true,
  viewBtn: true,
  menuWidth: 300,
  menuWidth: 240,
  dialogWidth: 880,
  dialogClickModal: false,
  column: [
@@ -152,7 +152,7 @@
    {
      label: "字典键值",
      prop: "dictKey",
      width: 80,
      width: 200,
      rules: [
        {
          required: true,
Source/UBCS-WEB/src/views/modeling/Business.vue
@@ -140,7 +140,7 @@
          <div class="sep" style="height:7px">
          </div>
          <avue-crud class="businessCrud" v-model="ref.form" :option="ref.option" :data="ref.data"
          <avue-crud class="businessCrud" ref="businessCrud" v-model="ref.form" :option="ref.option" :data="ref.data"
            @selection-change="selectionChange">
          </avue-crud>
          <span slot="footer" class="dialog-footer">
@@ -316,7 +316,6 @@
      })
    },
    selectFromTable() {
      console.log('获取');
      this.ref.visible = true;
    },
    refOnLoad(domain) {
@@ -339,10 +338,15 @@
    },
    dialoghandelfalse() {
      this.ref.visible = false;
      this.$refs.businessCrud.toggleSelection()
      this.selectionList = [];
      this.domain = null;
    },
    dialoghandeltrue() {
      if(this.selectionList.length<1){
        this.$message.warning('请选择数据');
        return false;
      }
      saveFromTable(this.selectionList, this.domain).then(res => {
        this.$message.success('保存成功');
        this.dialoghandelfalse();
Source/UBCS-WEB/src/views/modeling/BusinessAdd.vue
@@ -5,6 +5,7 @@
    append-to-body
    @close="closeSubmitDialog"
    width="70%"
    top="6vh"
    style="height: 115vh;"
  >
    <el-form ref="form" :model="btmType" show-message="true" inline size="medium" label-suffix=":" class="btmTypeForm"
Source/UBCS-WEB/src/views/modeling/LinkTypeAdd.vue
@@ -1,5 +1,5 @@
<template>
    <el-dialog title="链接类型" :visible.sync="showSubmitDialog" append-to-body @close="closeSubmitDialog" width="70%"
    <el-dialog title="链接类型" :visible.sync="showSubmitDialog" append-to-body @close="closeSubmitDialog" width="70%"  top="6vh"
        style="height: 115vh;">
        <el-form ref="form" :model="linkType" show-message="true" inline size="medium" label-suffix=":"
            class="linkTypeForm" :rules="rules" @resetFields="resetForm" status-icon="true">
@@ -97,6 +97,7 @@
            showSubmitDialog: false,
            option: {
                height: "330px",
                tip:false,
                selection: true,
                headerAlign: 'center',
                border: true,
Source/UBCS-WEB/src/views/system/dict.vue
@@ -52,6 +52,7 @@
    <el-dialog :title="`[${dictValue}]字典配置`"
               append-to-body
               :visible.sync="box"
               top="6vh"
               width="1000px">
      <avue-crud
        :option="optionChild"