| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <template>
- <view>
- <view class="material rx-ss" v-for="(mate, idx) in list">
- <view class="left rx-ss" @click="getDelete(idx)">
- <uni-icons custom-prefix="iconfont" type="icon-shanchu" size="20" color="#fa3534"></uni-icons>
- </view>
- <view class="content_table">
- <view class="item">
- <view class="lable rx-cc">编码</view>
- <view class="content">
- {{mate.code}}
- </view>
- </view>
- <view class="item">
- <view class="lable rx-cc">名称</view>
- <view class="content">{{mate.name}}</view>
- </view>
- <view class="item" v-for="(itm, index) in tableH(mate.rootCategoryLevelId)" v-if='itm.prop' :key="index">
- <view class="lable rx-cc">{{ itm.label }}</view>
- <view class="content">{{ mate[itm.prop] }}</view>
- </view>
-
- <view class="item">
- <view class="lable rx-cc">包装库存</view>
- <view class="content">{{mate.packingCountBase}}/ {{mate.minUnit}}</view>
- </view>
- <view class="item">
- <view class="lable rx-cc">领料数量</view>
- <view class="content content_num">
- <input class="uni-input" v-model="mate.demandQuantity"
- @blur='mate.demandQuantity > mate.availableCountBase ? mate.demandQuantity = mate.availableCountBase : mate.demandQuantity'
- type="number"></input>
- <view class="unit">/{{mate.measuringUnit}}</view>
- <view> (库存:{{ mate.availableCountBase }} {{mate.measuringUnit}})</view>
- </view>
- </view>
- <view class="item">
- <view class="lable rx-cc">领料仓库</view>
- <view class="content ">
- {{ mate.pathName }}
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- tableHeader
- } from '../../common.js'
- export default {
- props: ['list'],
- data() {
- return {
- }
- },
- methods: {
- tableH(type) {
- return tableHeader(type)
- },
- getDelete(idx) {
- this.list.splice(idx, 1)
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .material {
- margin-top: 10rpx;
- .left {
- width: 40rpx;
- }
- .zdy_check {
- width: 30rpx;
- height: 30rpx;
- border: 2rpx solid #c8c9cc;
- border-radius: 4rpx;
- }
- .check_active {
- background: $theme-color;
- border: 2rpx solid $theme-color;
- /deep/ .u-icon__icon {
- color: #fff !important;
- }
- }
- .content_table {
- width: 652rpx;
- border: 2rpx solid $border-color;
- .item {
- display: flex;
- border-bottom: 2rpx solid $border-color;
- .lable {
- width: 132rpx;
- text-align: center;
- background-color: #F7F9FA;
- font-size: 26rpx;
- border-right: 2rpx solid $border-color;
- flex-shrink: 0;
- }
- .ww80 {
- width: 80rpx;
- }
- .content {
- width: 518rpx;
- min-height: 64rpx;
- font-size: 28rpx;
- line-height: 28rpx;
- font-style: normal;
- font-weight: 400;
- padding: 18rpx 8rpx;
- box-sizing: border-box;
- word-wrap: break-word;
- flex-grow: 1 !important;
- }
- .content_num {
- display: flex;
- align-items: center;
- padding: 0 4rpx;
- /deep/ .uni-input-input {
- width: 200rpx;
- border: 2rpx solid #F0F8F2;
- background: #F0F8F2;
- color: $theme-color;
- }
- .unit {
- padding: 0 4rpx;
- font-size: 24rpx;
- color: #404446;
- }
- }
- .pd4 {
- padding: 4rpx 8rpx;
- }
- &:last-child {
- border-bottom: none;
- }
- }
- .ww55 {
- width: 55%;
- }
- .ww45 {
- width: 45%;
- }
- }
- }
- </style>
|