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.
44 lines
556 B
44 lines
556 B
3 months ago
|
<template>
|
||
|
<view class="card_view">
|
||
|
<text class="card_location ">{{title}}</text>
|
||
|
<text class="card_content ">{{shift}}</text>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import {
|
||
|
getSwitchInfoByCode
|
||
|
} from '@/common/basic.js';
|
||
|
export default {
|
||
|
components: {
|
||
|
},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
},
|
||
|
props: {
|
||
|
shift: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
title:{
|
||
|
type:String,
|
||
|
default: '班次'
|
||
|
},
|
||
|
isShowShift:{
|
||
|
type:Boolean,
|
||
|
default:false
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|