1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| <template>
| <u-popup :show="show" mode="bottom" :closeable="true" :round="10" @close="close">
| <view class="title">
| <text>选择仓库</text>
| </view>
| </u-popup>
| </template>
|
| <script>
| export default {
| name:"Warehouse",
| props: {
| show: Boolean
| },
| data() {
| return {
|
| };
| },
| methods: {
| close() {
| this.$emit('close')
| }
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .title {
| width: 100%;
| height: 85rpx;
| line-height: 85rpx;
| text-align: center;
| text {
| font-size: 30rpx;
| font-family: PingFangSC-Medium, PingFang SC;
| font-weight: 500;
| color: #222222;
| }
| }
| </style>
|
|