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.
36 lines
382 B
36 lines
382 B
<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>
|
|
|