From 3ad5e6df619db267e10ec9435066f143cfd55ae0 Mon Sep 17 00:00:00 2001
From: heyujie <516346543@qq.com>
Date: 星期五, 22 四月 2022 16:30:06 +0800
Subject: [PATCH] login type code
---
src/views/productDetail/components/UploadBox.vue | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/views/productDetail/components/UploadBox.vue b/src/views/productDetail/components/UploadBox.vue
index ffa5aa2..3c29672 100644
--- a/src/views/productDetail/components/UploadBox.vue
+++ b/src/views/productDetail/components/UploadBox.vue
@@ -2,7 +2,7 @@
<div class="UploadBox">
<div class="title">绾夸笅姹囨璇存槑</div>
<div class="close iconfont" @click="close"></div>
- <div class="content">
+ <div class="content scroll">
<el-form
:model="certificateForm"
ref="certificateForm"
@@ -114,10 +114,10 @@
export default {
props: {
- offerId: {},
+ orderId: {},
},
mounted() {
- this.certificateForm.orderId = this.offerId;
+ this.certificateForm.orderId = this.orderId;
},
data() {
return {
@@ -163,7 +163,7 @@
fd.append("file", param.file);
request({
method: "post",
- url: `/data/api-s/file/upload`,
+ url: `/saas/api-s/saasFile/upload`,
data: fd,
})
.then((res) => {
@@ -255,6 +255,8 @@
}
.content {
+ height: 533px;
+ overflow-y: auto;
box-sizing: border-box;
padding: 30px 20px 20px 20px;
font-size: 14px;
--
Gitblit v1.8.0