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.
37 lines
382 B
37 lines
382 B
12 months ago
|
<template>
|
||
|
<view class="task_number">
|
||
|
<!-- <text>任务编号 : {{number}}</text> -->
|
||
|
<text> {{number}}</text>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
components: {},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
},
|
||
|
watch: {
|
||
|
|
||
|
},
|
||
|
|
||
|
props: {
|
||
|
number: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
},
|
||
|
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
</style>
|
||
|
|
||
|
|
||
|
<style>
|
||
|
</style>
|