|
|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<view>
|
|
|
- <view class="title_box rx-bc">
|
|
|
+ <view class="title_box rx-bc">
|
|
|
<view class="name">物料清单</view>
|
|
|
</view>
|
|
|
|
|
|
@@ -42,12 +42,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
- <view class="item">
|
|
|
- <view class="lable rx-cc">领料仓库</view>
|
|
|
- <view class="content ">
|
|
|
- {{ mate.pathName }}
|
|
|
- </view>
|
|
|
- </view>
|
|
|
+
|
|
|
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -58,9 +53,9 @@
|
|
|
<script>
|
|
|
import {
|
|
|
tableHeader
|
|
|
- } from '../../common.js'
|
|
|
+ } from './feedBom.js'
|
|
|
export default {
|
|
|
- props:{
|
|
|
+ props: {
|
|
|
workOrderId: {
|
|
|
type: String,
|
|
|
default: ''
|
|
|
@@ -68,7 +63,7 @@
|
|
|
list: {
|
|
|
type: Array,
|
|
|
default: () => []
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -88,19 +83,18 @@
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-
|
|
|
.title_box {
|
|
|
margin-top: 20rpx;
|
|
|
-
|
|
|
+
|
|
|
.name {
|
|
|
font-size: 28rpx;
|
|
|
font-style: normal;
|
|
|
font-weight: 400;
|
|
|
color: $theme-color;
|
|
|
padding-left: 20rpx;
|
|
|
-
|
|
|
+
|
|
|
position: relative;
|
|
|
-
|
|
|
+
|
|
|
&:before {
|
|
|
position: absolute;
|
|
|
content: '';
|
|
|
@@ -112,10 +106,10 @@
|
|
|
background: $theme-color;
|
|
|
margin: auto;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.btn_box {
|
|
|
padding: 0 18rpx;
|
|
|
height: 60rpx;
|
|
|
@@ -126,18 +120,18 @@
|
|
|
font-size: 24rpx;
|
|
|
color: #fff;
|
|
|
border-radius: 4rpx;
|
|
|
-
|
|
|
+
|
|
|
.scan {
|
|
|
width: 34rpx;
|
|
|
height: 34rpx;
|
|
|
margin-right: 12rpx;
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.material {
|
|
|
margin-top: 10rpx;
|
|
|
|