26 lines
552 B
Vue
26 lines
552 B
Vue
|
|
<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>
|
||
|
|
<el-button type="primary" @click="submitForm('form')">提交</el-button>
|
||
|
|
<el-button @click="cancel()">取消</el-button>
|
||
|
|
</el-footer>
|
||
|
|
</el-container>
|
||
|
|
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'rcMaterial'
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
</style>
|