qingyiay
2023-08-14 76c41f4669a36b0d4cb5b82906419408a6b7de96
称重页面修改称重历史默认隐藏,提煤单详情页面修改
2个文件已修改
29 ■■■■ 已修改文件
pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/driver-page/driver-index/bill-of-lading-details/weighingDevice/weighingDevice.vue 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue
@@ -39,19 +39,19 @@
                            <view class="concrete"
                                style="background: url('https://mx.jzeg.cn:9095/appimg/image/banner/skin.png') no-repeat;background-size: cover;">
                                皮</view>
                            <view class="num">{{ coalDetailsData.skin }}</view>
                            <view class="num">{{ coalDetailsData.skin||"" }}</view>
                        </view>
                        <view class="item">
                            <view class="concrete"
                                style="background: url('https://mx.jzeg.cn:9095/appimg/image/banner/hair.png') no-repeat;background-size: cover;">
                                毛</view>
                            <view class="num">{{ coalDetailsData.hair }}</view>
                            <view class="num">{{ coalDetailsData.hair||""  }}</view>
                        </view>
                        <view class="item">
                            <view class="concrete"
                                style="background: url('https://mx.jzeg.cn:9095/appimg/image/banner/clean.png') no-repeat;background-size: cover;">
                                净</view>
                            <view class="num">{{ coalDetailsData.clean }}</view>
                            <view class="num">{{ coalDetailsData.clean||""  }}</view>
                        </view>
                    </view>
                </view>
@@ -142,6 +142,7 @@
                this.overTmWaixiao = value.overTmWaixiao
                this.getWeightHouseObj.overTmWaixiao = value.overTmWaixiao
            }
            this.init();
        },
        data() {
            return {
@@ -209,9 +210,6 @@
                overTmWaixiao: null
            };
        },
        onShow() {
            this.init();
        },
        onHide() {
            clearInterval(this.interval);
pages/driver-page/driver-index/bill-of-lading-details/weighingDevice/weighingDevice.vue
@@ -129,14 +129,14 @@
                <view class="history-skin_item"
                    v-for="item in tmTaskCoalList">
                    <view class="item createTime">
                        {{item.createTime}}
                        {{item.createTime||"" }}
                    </view>
                    <view class="item">
                        {{item.coalName}}
                        {{item.coalName||"" }}
                    </view>
                    <view class="item skin">
                        <view class="">
                            {{item.skin}}
                            {{item.skin||"" }}
                        </view>
                    </view>
                </view>
@@ -183,22 +183,25 @@
                </view>
                <view class="main-information">
                    <view class="prefix">皮重:</view>
                    <view class="suffix">{{ temporaryWeighObj.skin == 0 ? weighList.skin : temporaryWeighObj.skin }}
                    <view class="suffix">
                        {{ temporaryWeighObj.skin == 0 ? weighList.skin : temporaryWeighObj.skin||""  }}
                    </view>
                </view>
                <view class="main-information">
                    <view class="prefix">毛重:</view>
                    <view class="suffix">{{ temporaryWeighObj.hair == 0 ? weighList.hair : temporaryWeighObj.hair }}
                    <view class="suffix">
                        {{ temporaryWeighObj.hair == 0 ? weighList.hair : temporaryWeighObj.hair||""  }}
                    </view>
                </view>
                <view class="main-information">
                    <view class="prefix">净重:</view>
                    <view class="suffix">{{ temporaryWeighObj.clean == 0 ? weighList.clean : temporaryWeighObj.clean }}
                    <view class="suffix">
                        {{ temporaryWeighObj.clean == 0 ? weighList.clean : temporaryWeighObj.clean ||"" }}
                    </view>
                </view>
                <view class="main-information">
                    <view class="prefix">订单余量:</view>
                    <view class="suffix">{{ weighList.orderSurplus || 0 }}</view>
                    <view class="suffix">{{ weighList.orderSurplus ||""  }}</view>
                </view>
            </view>
        </view>
@@ -345,7 +348,7 @@
                tmTaskCoalList: [],
                abnormalModalShow: false,
                historyBtn: false,
                historyShow: true,
                historyShow: false,
                // 是否在称皮重,点击确定称重判断是否异常
                isSkinWeigh: false
            };