@@ -69,9 +68,6 @@ const ruleForm = reactive
({
})
const uploadRef = ref()
onMounted(async () => {
- loadConfig().then((res: any) => {
- uploadURL.value = res.base_url + "file/upload";
- })
post("common/config/list", null).then((list: any) => {
for (let i = 0; i < list.length; i++) {
ruleForm[list[i].k] = list[i].val
@@ -148,4 +144,8 @@ const uploadSuccess = (url: any) => {
:deep(.el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label) {
padding-left: 24px;
}
+
+:deep(.el-input__wrapper) {
+ height: 42px;
+}