zhang_li
1 month ago
6 changed files with 162 additions and 30 deletions
@ -0,0 +1,46 @@ |
|||||
|
<template> |
||||
|
<view class="card_view"> |
||||
|
<text class="card_packing_code">{{title}}</text> |
||||
|
<text class="card_content ">{{productionLineCode}}</text> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import { |
||||
|
getSwitchInfoByCode |
||||
|
} from '@/common/basic.js'; |
||||
|
export default { |
||||
|
components: { |
||||
|
}, |
||||
|
|
||||
|
data() { |
||||
|
return { |
||||
|
|
||||
|
}; |
||||
|
}, |
||||
|
props: { |
||||
|
productionLineCode: { |
||||
|
type: String, |
||||
|
default: '' |
||||
|
}, |
||||
|
title:{ |
||||
|
type:String, |
||||
|
default: '生产线' |
||||
|
}, |
||||
|
isShowProductionline:{ |
||||
|
type:Boolean, |
||||
|
default:false |
||||
|
} |
||||
|
}, |
||||
|
mounted() { |
||||
|
}, |
||||
|
methods: { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style> |
||||
|
</style> |
||||
|
|
||||
|
|
@ -0,0 +1,44 @@ |
|||||
|
<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> |
Loading…
Reference in new issue