| 123456789101112131415161718192021222324252627282930313233343536 |
- {extend name="public/base_el"/}
- {block name="css"}
- <style>
- .title {margin-top:100px;}
- .title p{margin:10px auto;padding:0 20px;text-align: center;font-size:24px;font-weight: 700;}
- </style>
- {/block}
- {block name="body"}
- <div style="margin:0 auto; width:1200px;">
- <div style="margin: 100px 20px;text-align: center;">
- <el-upload
- v-model:file-list="fileList"
- class="upload-demo"
- action="{:url('upload')}"
- multiple
- >
- <el-button type="primary">点击上传文件</el-button>
- </el-upload>
- </div>
- </div>
- {/block}
- {block name="script"}
- <script>
- function v_setup() {
- let base = {};
- base.toStart = () => {
- location.href = "{:url('officer/answer')}"
- }
- base.fileList = Vue.ref([]);
- return base;
- }
- </script>
- {/block}
|