123456789101112131415161718192021222324252627 |
- <template>
- <view>
- <xyz-choose-image :uploadFlag="false" :imgList="imgList"></xyz-choose-image>
- </view>
- </template>
- <script>
- import xyzChooseImage from "@/components/xyz-choose-image/xyz-choose-image.vue"
- export default {
- components: {xyzChooseImage},
- data() {
- return {
- title: 'Hello',
- imgList: ['https://files.91lz.com/uploads/files/publish/e5d637135c2642848d7b210e7fdc69c0/qrCode/2020/11/04/151021386.jpg']
- }
- },
- onLoad() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|