67 lines
1.5 KiB
Vue
67 lines
1.5 KiB
Vue
<template>
|
||
<view>
|
||
<navBar leftText="相关概念详情"></navBar>
|
||
<image class="topBg absolute" src="/static/image/mine/myTopBg.png" mode="widthFix"></image>
|
||
<view class="conceptDetailsC fixed" :style="'top:'+navH+'px;'">
|
||
<view class="title">外骨骼机器人(250501)</view>
|
||
<view class="time">2025-05-08 08:43</view>
|
||
<view class="content">四部门联合启动的人力资源服务业与制造业融合发展试点,主要目的是推动人力资源服务向高端制造渗透,促进产业升级。而外骨骼机器人属于高端制造领域的重要创新产品之一,其发展需要人力资源服务业的支持,例如技术人才的输送、产业工人培训等。同时,外骨骼机器人在消费级市场的推广和应用也符合制造业与服务业融合发展的方向。因此,该政策试点对外骨骼机器人行业具有潜在利好影响。</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import { inject } from 'vue';
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
navH:inject('navHeight')
|
||
}
|
||
},
|
||
methods: {
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="less">
|
||
.topBg
|
||
{
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: auto;
|
||
}
|
||
.conceptDetailsC
|
||
{
|
||
background-color: white;
|
||
margin-top: 10rpx;
|
||
padding: 20rpx 25rpx;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
border-radius: 20rpx 20rpx 0 0;
|
||
.title
|
||
{
|
||
font-size: 30rpx;
|
||
font-weight: bold;
|
||
color: #222;
|
||
}
|
||
.time
|
||
{
|
||
margin-top: 10rpx;
|
||
font-size: 22rpx;
|
||
font-weight: 500;
|
||
color: #AAA;
|
||
}
|
||
.content
|
||
{
|
||
margin-top: 30rpx;
|
||
font-size: 26rpx;
|
||
font-weight: 500;
|
||
color: #666;
|
||
}
|
||
}
|
||
</style>
|