平台前端采用了VUE+ElmentUI,过去的老系统界面风格明显不同。首先就是大量按钮风格不一致。可以修改CSS来统一模拟ElmentUI的按钮:

.button01, .button01:ACTIVE {display: inline-block;height: 36px;line-height: 36px;padding: 0 12px 0 12px;background-color: #09c;color: #fff;white-space: nowrap;text-align: center;font-size: var(--defaultTxtSize);border: none;border-radius: 20px;cursor: pointer;margin-top: 0px;margin-bottom: 0px;margin-left: 3px;margin-right: 3px;
}.button01:hover {opacity: .8;filter: alpha(opacity=80);color: #fff;background-color: #4091fd;
}

这个风格用来模拟

            <el-button    round     type="primary"   size="mini" ></el-button>