| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <template>
- <view class="marginTop">
- <view
- v-for="(item, index) in list"
- class="kd-row"
- :key="item.id"
- @click="goDetail(item)"
- v-show="list.length !== 0"
- >
- <view class="kd-col">
- <text class="title">{{ item.dialNumber }}</text>
- <text>{{ item.dialType == 1 ? '库内调拨' : '库外调拨' }}</text>
- </view>
- <view class="kd-col">
- <text class="warehouse"
- >{{ item.warehouseName }} <text class="arrow"></text>
- {{
- item.dialType == 1 ? item.warehouseName : item.inWarehouseName
- }}</text
- >
- <text>{{ item.createUserName }}</text>
- </view>
- <view class="kd-col">
- <text class="">{{ item.createTime }}</text>
- <text
- class="status"
- :class="
- statusList[item.auditStatus] && statusList[item.auditStatus].class
- "
- >{{
- statusList[item.auditStatus] && statusList[item.auditStatus].label
- }}</text
- >
- </view>
- </view>
- <view v-show="list.length === 0" class="no_data">
- <u-empty mode="data" textSize="22"></u-empty>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- list: {
- type: Array,
- default: () => []
- }
- },
- data () {
- return {
- statusList: {
- 4: { class: '', label: '草稿' },
- 1: { class: '', label: '待审核' },
- 0: { class: 'text-danger', label: '已驳回' },
- 2: { class: 'text-primary', label: '已完成' }
- }
- }
- },
- methods: {
- goDetail ({ id, auditStatus }) {
- uni.navigateTo({
- url:
- auditStatus === 4
- ? `/pages/warehouse/inventoryAllocation/edit?&id=${id}`
- : `/pages/warehouse/inventoryAllocation/detail?&id=${id}`
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .marginTop {
- border-top: 20rpx solid $page-bg;
- .kd-row {
- font-size: 28rpx;
- padding: 14rpx 12rpx 6rpx;
- border-bottom: 1rpx solid $page-bg;
- .kd-col {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 2rpx;
- color: #aaaaaa;
- .status {
- background-color: $page-bg;
- display: inline-block;
- padding: 4rpx 10rpx;
- border-radius: 18rpx;
- }
- }
- .title {
- font-weight: bold;
- color: #333333;
- }
- }
- .center {
- text-align: center;
- margin-bottom: 10rpx;
- color: #999;
- }
- .no_data {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: #999;
- font-size: 28rpx;
- }
- }
- .warehouse {
- display: flex;
- align-items: center;
- }
- .arrow {
- display: inline-block;
- position: relative;
- width: 50rpx;
- height: 10rpx;
- margin: 0 20rpx;
- &::after,
- &::before {
- content: '';
- position: absolute;
- }
- &::after {
- border-top: 4rpx solid #aaaaaa;
- border-right: 4rpx solid #aaaaaa;
- width: 12rpx;
- height: 12rpx;
- right: 0rpx;
- top: -6rpx;
- transform: rotate(45deg);
- }
- &::before {
- height: 4rpx;
- background-color: #aaaaaa;
- width: 50rpx;
- }
- }
- </style>
|