<template>
|
<div class="main" style="height:200px;width:100%;display: flex;flex-direction: column;justify-content: space-around;background-color: white;padding-left: 10px">
|
|
<div class="top" style="height:110px;width:80%;display: flex;flex-direction: column;justify-content: space-around;background-color: #d7d7d7;padding-left:10px;border-radius: 10px">
|
<div class="title" style="font-size: 13px;font-weight:bold;padding-top: 10px">选择文件:</div>
|
<div class="detail" style="font-size: 10px;padding-left: 15px;padding-top: 10px;">点击按钮从本地文件中查询文件</div>
|
<div class="upload" style="padding-bottom: 10px">
|
<lightning-file-upload
|
record-id={myRecordId}
|
onuploadfinished={handleUploadFinished}
|
multiple=true
|
disabled-delete-button-text
|
>
|
</lightning-file-upload>
|
</div>
|
|
</div>
|
|
<div class="bottom" style="height:50px;width:80%;display: flex;flex-direction: column;justify-content: space-around;">
|
<lightning-button variant="brand" label="返回原页面" title="Primary action" onclick={doIt} class="slds-m-left_x-small"></lightning-button>
|
</div>
|
|
</div>
|
|
</template>
|