2025-01-16 16:35:46 +08:00
|
|
|
<template>
|
|
|
|
|
<el-container>
|
|
|
|
|
<el-main>
|
|
|
|
|
<uploadFile :limit="5" :accept="accept" :uploadList.sync="items.elseImgList"
|
|
|
|
|
@picturePreview="picturePreview"
|
|
|
|
|
:style="{width: '100%',height: '80%'}"
|
|
|
|
|
></uploadFile>
|
|
|
|
|
</el-main>
|
|
|
|
|
<el-footer>
|
2025-01-17 17:22:39 +08:00
|
|
|
<el-button type="primary" @click="submitForm('form')" v-preventReClick="5000">提交</el-button>
|
2025-01-16 16:35:46 +08:00
|
|
|
<el-button @click="cancel()">取消</el-button>
|
|
|
|
|
</el-footer>
|
|
|
|
|
</el-container>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
name: 'rcMaterial'
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|