30 lines
552 B
Vue
30 lines
552 B
Vue
<template>
|
||
<div class="app-container">
|
||
<el-card shadow="never">
|
||
<div class="placeholder-title">拆包预测</div>
|
||
<div class="placeholder-desc">
|
||
页面入口已创建,可在此按业务需求补充拆包预测相关功能。
|
||
</div>
|
||
</el-card>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'LbPackagePredict'
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.placeholder-title {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.placeholder-desc {
|
||
color: #606266;
|
||
line-height: 22px;
|
||
}
|
||
</style>
|