ludc
2023-11-09 fc6ab71d6b6269ef31202662458a5287ef1f7ba9
最大流水号提交
已修改5个文件
306 ■■■■ 文件已修改
Source/UBCS-WEB/src/components/code-dialog-page/maxSerialnumDialog.vue 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/code/code.vue 257 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS/ubcs-ops-api/ubcs-log-api/src/main/java/com/vci/ubcs/log/entity/SystemLog.java 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS/ubcs-ops/ubcs-log/pom.xml 24 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS/ubcs-service-api/ubcs-omd-api/src/main/java/com/vci/ubcs/omd/enums/EnumEnum.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/components/code-dialog-page/maxSerialnumDialog.vue
@@ -54,7 +54,7 @@
      deep: true
    },
  },
   mounted() {
  mounted() {
  },
  data() {
    return {
@@ -172,12 +172,12 @@
        return acc;
      }, {});
      const arrCode = Object.entries(filteredObj).map(([key, value]) => {
      /*const arrCode = Object.entries(filteredObj).map(([key, value]) => {
        return {
          secOid: key,
          secValue: value
        }
      })
      })*/
      this.ruleFormFlag = Object.values(codeApplyForm).every(value => {
        return value !== null && value !== undefined && value !== '';
@@ -186,17 +186,14 @@
        this.loading=true;
        let params = {};
        params['codeRuleOid'] = this.ruleOid;
        Object.keys(arrCode).forEach((key) => {
          params[key] = arrCode[key];
        Object.keys(filteredObj).forEach((key) => {
          params[key] = filteredObj[key];
        });
        getMaxSerialNumber(params).then(res => {
          this.formModel.maxSecNum = res.data.data;
          this.loading=false;
          this.maxNum=res.data.data
        });
      }
    },
Source/UBCS-WEB/src/views/code/code.vue
@@ -3465,154 +3465,155 @@
</script>
<style>
[class^="icon-"] {
  font-size: 12px !important;
}
  [class^="icon-"] {
    font-size: 12px !important;
  }
.code-rule-crud > .avue-crud__search,
.code-basic-crud > .avue-crud__search {
  margin-bottom: -15px;
}
  .code-rule-crud > .avue-crud__search,
  .code-basic-crud > .avue-crud__search {
    margin-bottom: -15px;
  }
.clone-input-textarea > .el-form-item__content {
  width: 495px;
}
  .clone-input-textarea > .el-form-item__content {
    width: 495px;
  }
.clone-avue-crud > .el-card > .el-card__body > .avue-crud__menu {
  display: none !important;
}
  .clone-avue-crud > .el-card > .el-card__body > .avue-crud__menu {
    display: none !important;
  }
.fixed-avue-crud > .el-card > .el-card__body > .avue-crud__menu {
  display: none !important;
}
  .fixed-avue-crud > .el-card > .el-card__body > .avue-crud__menu {
    display: none !important;
  }
.other-clone-codebasic-crud > .el-card > .el-card__body > .avue-crud__menu {
  display: none !important;
}
  .other-clone-codebasic-crud > .el-card > .el-card__body > .avue-crud__menu {
    display: none !important;
  }
.other-clone-coderule-crud > .el-card > .el-card__body > .avue-crud__menu {
  display: none !important;
}
  .other-clone-coderule-crud > .el-card > .el-card__body > .avue-crud__menu {
    display: none !important;
  }
.el-table--small .el-table__cell {
  padding: 3px 0;
}
  .el-table--small .el-table__cell {
    padding: 3px 0;
  }
.classify_value_box > .el-scrollbar {
  height: 95%;
}
  .classify_value_box > .el-scrollbar {
    height: 95%;
  }
.basic-container > .el-card > .el-card__body {
  margin: -10px 0;
}
  .basic-container > .el-card > .el-card__body {
    margin: -10px 0;
  }
.code-basicsec-container {
  padding: 1px 6px;
}
  .code-basicsec-container {
    padding: 1px 6px;
  }
.horizontal-line {
  /* margin-top: 19px !important; */
  margin-bottom: -20px !important;
  width: 100%;
  height: 2px;
}
  .horizontal-line {
    /* margin-top: 19px !important; */
    margin-bottom: -20px !important;
    width: 100%;
    height: 2px;
  }
.el-card__body > .treeBox {
  height: 56vh;
}
  .el-card__body > .treeBox {
    height: 56vh;
  }
.el-col-5 > .box {
  height: 56vh;
}
  .el-col-5 > .box {
    height: 56vh;
  }
.operator_,
filter,
.layui-btn {
  width: 60px;
}
  .operator_,
  filter,
  .layui-btn {
    width: 60px;
  }
.left > .el-form-item > .el-form-item__content > .el-input-number {
  width: 120px;
}
  .left > .el-form-item > .el-form-item__content > .el-input-number {
    width: 120px;
  }
.left
  > .el-form-item
  > .el-form-item__content
  > .el-input-number
  > .el-input
  > .el-input__inner {
  width: 120px;
}
  .left
    > .el-form-item
    > .el-form-item__content
    > .el-input-number
    > .el-input
    > .el-input__inner {
    width: 120px;
  }
.el-col > .el-card > .el-card__header {
  background: rgb(213 231 239);
  border-radius: inherit;
}
  .el-col > .el-card > .el-card__header {
    background: rgb(213 231 239);
    border-radius: inherit;
  }
/** 新增码段 */
.add-basicsec-dialog > .el-dialog > .el-dialog__body {
  padding: 20px 20px 4px;
  margin-bottom: 30px;
}
  /** 新增码段 */
  .add-basicsec-dialog > .el-dialog > .el-dialog__body {
    padding: 20px 20px 4px;
    margin-bottom: 30px;
  }
.add-basicsec-total {
  width: 100%;
  height: 500px;
}
  .add-basicsec-total {
    width: 100%;
    height: 500px;
  }
.add-basicsec-total .el-input__inner,
.add-basicsec-total .el-textarea__inner {
  width: 220px;
}
  .add-basicsec-total .el-input__inner,
  .add-basicsec-total .el-textarea__inner {
    width: 220px;
  }
.add-basicsec-total > .add-basicsec-form {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-around;
}
.add-basicsec-form > .el-divider--vertical {
  width: 2px;
  height: 78%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.left {
  /* float: left; */
  width: 45%;
  height: 100%;
}
.right {
  /* float: right; */
  margin-right: 2vw;
  height: 100%;
  width: auto;
}
.add-basicsec-form > .left > .el-form-item,
.add-basicsec-form > .right > div > .el-form-item{
  margin-bottom: 12px;
}
/* 对话框底部按钮边框样式 */
.el-dialog__footer {
  /* width: 100%; */
  border-top: 1px solid #e9e7e7;
  padding: 5px 10px 10px;
}
.seloption {
  margin-left: 10px;
}
/* .code-total > .basic-container__card {
  .add-basicsec-total > .add-basicsec-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
  } */
    align-items: center;
    justify-content: space-around;
  }
  .add-basicsec-form > .el-divider--vertical {
    width: 2px;
    height: 78%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .left {
    /* float: left; */
    width: 45%;
    height: 100%;
  }
  .right {
    /* float: right; */
    margin-right: 2vw;
    height: 100%;
    width: auto;
  }
  .add-basicsec-form > .left > .el-form-item,
  .add-basicsec-form > .right > div > .el-form-item{
    margin-bottom: 12px;
  }
  /* 对话框底部按钮边框样式 */
  .el-dialog__footer {
    /* width: 100%; */
    border-top: 1px solid #e9e7e7;
    padding: 5px 10px 10px;
  }
  .seloption {
    margin-left: 10px;
  }
  /* .code-total > .basic-container__card {
      height: 100%;
    } */
</style>
Source/UBCS/ubcs-ops-api/ubcs-log-api/src/main/java/com/vci/ubcs/log/entity/SystemLog.java
@@ -16,7 +16,7 @@
public class SystemLog {
    /**
     * 服务名称
     * 日志所属服务名称
     */
    private String serviceName;
@@ -26,7 +26,7 @@
    private String serviceId;
    /**
     * 日志路径
     * 日志文件所在的路径
     */
    private String logPath;
@@ -43,11 +43,11 @@
    /**
     * 日志创建时间
     */
    private Date createTime;
    private String createTime;
    /**
     * 日志的最后修改时间
     */
    private Date lastmodifier;
    private String lastmodifier;
}
Source/UBCS/ubcs-ops/ubcs-log/pom.xml
@@ -29,15 +29,15 @@
            <groupId>org.springblade</groupId>
            <artifactId>blade-starter-tenant</artifactId>
        </dependency>
        <dependency>
            <groupId>com.oracle.database.jdbc</groupId>
            <artifactId>ojdbc8</artifactId>
        </dependency>
        <dependency>
            <groupId>cn.easyproject</groupId>
            <artifactId>orai18n</artifactId>
            <version>${orai18n.version}</version>
        </dependency>
<!--        <dependency>-->
<!--            <groupId>com.oracle.database.jdbc</groupId>-->
<!--            <artifactId>ojdbc8</artifactId>-->
<!--        </dependency>-->
<!--        <dependency>-->
<!--            <groupId>cn.easyproject</groupId>-->
<!--            <artifactId>orai18n</artifactId>-->
<!--            <version>${orai18n.version}</version>-->
<!--        </dependency>-->
        <dependency>
            <groupId>com.vci.ubcs</groupId>
            <artifactId>ubcs-log-api</artifactId>
@@ -50,6 +50,12 @@
            <version>3.0.1.RELEASE</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.vci.ubcs</groupId>
            <artifactId>ubcs-omd-api</artifactId>
            <version>3.0.1.RELEASE</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
    <build>
Source/UBCS/ubcs-service-api/ubcs-omd-api/src/main/java/com/vci/ubcs/omd/enums/EnumEnum.java
@@ -140,6 +140,10 @@
     * 模板的按钮用途
     */
    CODE_TEMPLATE_BUTTON_USE("codeTemplateButtonUse"),
    /**
     * 各个服务的功能领域中文简介
     */
    SERCIVE_NAME_ROLE("serviceNameRole"),
    ;