You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
609 B
39 lines
609 B
<template>
|
|
<view class="cen_card">
|
|
<view class="label_box uni-flex uni-row">
|
|
<view class="label_info">
|
|
<label class="">
|
|
<image class="icon_normal" src="@/static/icons_ui/icon_erp.svg"></image>
|
|
</label>
|
|
<text >{{erpLocationCode }}</text>
|
|
<!-- style="margin-top:4rpx ;margin-bottom: 4px;" -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'comErpLocation',
|
|
components: {},
|
|
props: {
|
|
erpLocationCode: {
|
|
type: String,
|
|
default: ""
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
|
|
created() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|
|
|