12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <u-popup v-model="view" mode="center" border-radius="16" height="50%">
- <view class="content">
- <image :src="liucheng"></image>
- </view>
- </u-popup>
- </template>
- <script>
- export default {
- name: 'liucheng',
- props: {
- liucheng: {
- type: String,
- }
- },
- data() {
- return {
- view: false,
- // liucheng: require('@/static/images/form/liucheng.jpg')
- }
- },
- methods: {
- show() {
- this.view = true
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|