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.
|
|
|
<template>
|
|
|
|
<view class="">
|
|
|
|
<uni-collapse ref="collapse">
|
|
|
|
<uni-collapse-item :open="true">
|
|
|
|
<template v-slot:title>
|
|
|
|
<view class="page-header" style="font-size: 32rpx;">
|
|
|
|
<view class="page-item">
|
|
|
|
{{dataContent.customerCode }} ({{dataContent.customerName}})
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<uni-swipe-action ref="swipeAction">
|
|
|
|
<view v-for="(item, index) in dataContent.subList" :key="index">
|
|
|
|
<uni-swipe-action-item>
|
|
|
|
<item-qty :dataContent="item"></item-qty>
|
|
|
|
</uni-swipe-action-item>
|
|
|
|
</view>
|
|
|
|
</uni-swipe-action>
|
|
|
|
</uni-collapse-item>
|
|
|
|
</uni-collapse>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import uom from '@/mycomponents/qty/uom.vue'
|
|
|
|
import itemQty from '@/mycomponents/item/itemQty.vue'
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
uom,
|
|
|
|
itemQty
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
dataContent: {
|
|
|
|
type: Object,
|
|
|
|
default: {}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
update() {
|
|
|
|
this.$nextTick(r => {
|
|
|
|
this.$refs.collapse.resize()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|