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.
51 lines
812 B
51 lines
812 B
2 years ago
|
<template>
|
||
|
<view style="background-color: #fff;margin: 10px;">
|
||
|
<win-job-number :dataContent='dataContent' @openJobDetail='openJobDetail'></win-job-number>
|
||
|
<view class="uni-flex uni-row ">
|
||
|
<view>
|
||
|
<text>已扫描/</text>
|
||
|
<text>总数量</text>
|
||
|
</view>
|
||
|
<view>
|
||
|
<text>{{scanCount}}</text>
|
||
|
<text>/{{allCount}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import winJobNumber from '@/mycomponents/wincom/unitCom/winJobNumber.vue'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
winJobNumber
|
||
|
},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
},
|
||
|
allCount: {
|
||
|
type: Number,
|
||
|
default: 10
|
||
|
},
|
||
|
scanCount: {
|
||
|
type: Number,
|
||
|
default: 5
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
openJobDetail() {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|