| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <view>
- <view class="title_box rx-bc">
- <view class="name">工单信息</view>
- <view class="btn_box rx-bc">
- <image class="scan" src="@/static/pda/ScanIt.svg"></image>
- 更换工单
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- item: {
- type: Object,
- default: () => {}
- },
- },
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .title_box {
- .name {
- font-size: 28rpx;
- font-style: normal;
- font-weight: 400;
- color: $theme-color;
- padding-left: 20rpx;
- position: relative;
- &:before {
- position: absolute;
- content: '';
- left: 0rpx;
- top: 0rpx;
- bottom: 0rpx;
- width: 4rpx;
- height: 28rpx;
- background: $theme-color;
- margin: auto;
- }
- }
- .btn_box {
- padding: 0 18rpx;
- height: 40rpx;
- background: $theme-color;
- font-size: 24rpx;
- font-style: normal;
- font-weight: 400;
- font-size: 24rpx;
- color: #fff;
- border-radius: 4rpx;
- .scan{
- width: 28rpx;
- height: 28rpx;
- margin-right: 12rpx;
-
- }
- }
- }
- </style>
|