123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <template>
- <view>
- <u-navbar back-text="文章详情" back-icon-size="28" back-icon-color="#ffffff"
- :background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
- <view class="main">
- <!-- 标题 -->
- <view class="title">
- 企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。
- </view>
- <!-- 其他信息 -->
- <view class="infos">
- <view class="photo">
- <img src="@/assets/img/headPortrait.png"></img>
- </view>
- <view class="name">
- 许愿
- </view>
- <view class="date">
- 2023-07-01
- </view>
- <view class="tag">
- 急需用工
- </view>
- </view>
- <u-line color="#CFD2D5" />
- <!-- 文章内容 -->
- <view class="content">
- 企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118
- 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118
- 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。
- </view>
- <!-- 图片 -->
- <view class="picture">
- <!-- <img src="@/assets/img/articlePicture.png" alt=""> -->
- </view>
- </view>
- </view>
- </template>
- <script>
- import * as API from '@/apis/pagejs/packages.js'
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
- .main {
- padding: 40rpx 32rpx;
- // 标题
- .title {
- color: rgba(16, 16, 16, 1);
- font-size: 36rpx;
- }
- // 其他信息
- .infos {
- display: flex;
- align-items: center;
- margin-top: 24rpx;
- margin-bottom: 36rpx;
- .photo {
- width: 48rpx;
- height: 48rpx;
- border-radius: 50px;
- img {
- width: 48rpx;
- height: 48rpx;
- }
- }
- .name {
- color: rgba(16, 16, 16, 1);
- margin-left: 8rpx;
- }
- .date {
- color: rgba(119, 119, 119, 1);
- margin-left: 32rpx;
- }
- .tag {
- flex: 1;
- color: rgba(39, 149, 253, 1);
- text-align: right;
- }
- }
- // 文章内容
- .content{
- color: rgba(16, 16, 16, 1);
- line-height: 56rpx;
- // text-align: j;
- }
- // 图片
- .picture{
- margin-top: 24rpx;
- border-radius: 4px;
- width: 100%;
- height: 400rpx;
- img{
- width: 100%;
- height: 100%;
- }
- }
- }
- </style>
- r
|