1234567891011121314151617 |
- <template>
- <div>
- <el-tag size='mini' :type="propValue.status===0?'info':'primary'"
- disable-transitions>{{propValue.status===0?'未接单':'已接单'}}</el-tag>
- </div>
- </template>
- <script lang="ts">
- import { Component, Prop, Vue, Watch, Mixins } from "vue-property-decorator";
- @Component
- export default class Order extends Vue {
- @Prop()
- propValue : any
- }
- </script>
- <style>
- </style>
|