分切上料样式优化,返回顶部
This commit is contained in:
@@ -36,7 +36,7 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>序号</th>
|
<th>序号</th>
|
||||||
<th>母卷号</th>
|
<th class="th_2">母卷号</th>
|
||||||
<th>子卷号</th>
|
<th>子卷号</th>
|
||||||
<th>机台编号</th>
|
<th>机台编号</th>
|
||||||
<th>分切组</th>
|
<th>分切组</th>
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.container_name === pkId}">
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.container_name === pkId}">
|
||||||
<td>{{Number(i) + 1}}</td>
|
<td>{{Number(i) + 1}}</td>
|
||||||
<td>{{e.source_container_name}}</td>
|
<td class="td_2">{{e.source_container_name}}</td>
|
||||||
<td>{{e.container_name}}</td>
|
<td>{{e.container_name}}</td>
|
||||||
<td>{{e.point_code}}</td>
|
<td>{{e.point_code}}</td>
|
||||||
<td>{{e.split_group}}</td>
|
<td>{{e.split_group}}</td>
|
||||||
@@ -319,13 +319,3 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus">
|
|
||||||
.slide_new table td:first-child, .slide_new table th:first-child
|
|
||||||
width 92rpx
|
|
||||||
.slide_new table td:nth-child(2), .slide_new table th:nth-child(2)
|
|
||||||
position sticky
|
|
||||||
left 89rpx
|
|
||||||
z-index 102
|
|
||||||
box-shadow 1px 0 2px rgba(0,0,0,.12)
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>序号</th>
|
<th>序号</th>
|
||||||
<th>母卷号</th>
|
<th class="th_2">母卷号</th>
|
||||||
<th>子卷号</th>
|
<th>子卷号</th>
|
||||||
<th>机台编号</th>
|
<th>机台编号</th>
|
||||||
<th>分切组</th>
|
<th>分切组</th>
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.container_name === pkId}">
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.container_name === pkId}">
|
||||||
<td>{{Number(i) + 1}}</td>
|
<td>{{Number(i) + 1}}</td>
|
||||||
<td>{{e.source_container_name}}</td>
|
<td class="td_2">{{e.source_container_name}}</td>
|
||||||
<td>{{e.container_name}}</td>
|
<td>{{e.container_name}}</td>
|
||||||
<td>{{e.point_code}}</td>
|
<td>{{e.point_code}}</td>
|
||||||
<td>{{e.split_group}}</td>
|
<td>{{e.split_group}}</td>
|
||||||
@@ -120,20 +120,24 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="active" class="msg_mask"></view>
|
<view v-if="active" class="msg_mask"></view>
|
||||||
|
<up-top ref="UT" :scrollTop="top"></up-top>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import NavBar from '@/components/NavBar.vue'
|
import NavBar from '@/components/NavBar.vue'
|
||||||
import SearchBox from '@/components/SearchBox.vue'
|
import SearchBox from '@/components/SearchBox.vue'
|
||||||
|
import UpTop from '@/components/upTop.vue'
|
||||||
import {queryProductArea, feedingQueryMaterialInfo, feedingConfirm, feedingQueryPoint, feedingHandleConfirm, feedingVehicleReturn} from '@/utils/getData2.js'
|
import {queryProductArea, feedingQueryMaterialInfo, feedingConfirm, feedingQueryPoint, feedingHandleConfirm, feedingVehicleReturn} from '@/utils/getData2.js'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
NavBar,
|
NavBar,
|
||||||
SearchBox
|
SearchBox,
|
||||||
|
UpTop
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
top: 0,
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
options: [],
|
options: [],
|
||||||
@@ -160,6 +164,9 @@
|
|||||||
disabled2: false
|
disabled2: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
onPageScroll(e) {
|
||||||
|
this.$refs.UT.topData(e.scrollTop)
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._queryProductArea()
|
this._queryProductArea()
|
||||||
},
|
},
|
||||||
@@ -319,13 +326,3 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus">
|
|
||||||
.slide_new table td:first-child, .slide_new table th:first-child
|
|
||||||
width 92rpx
|
|
||||||
.slide_new table td:nth-child(2), .slide_new table th:nth-child(2)
|
|
||||||
position sticky
|
|
||||||
left 89rpx
|
|
||||||
z-index 102
|
|
||||||
box-shadow 1px 0 2px rgba(0,0,0,.12)
|
|
||||||
</style>
|
|
||||||
|
|||||||
Reference in New Issue
Block a user