qingyiay
2023-09-12 393cdcbef072e52f3a046e884c8349c903c4081f
修改空数据提示
10个文件已修改
86 ■■■■ 已修改文件
pages/customer-page/customer-index/customer-index.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/customer-page/customer-my/faYunstatistics/faYunstatistics.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/customer-page/customer-my/userMange/userMange.vue 68 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/customer-page/fleet-management/fleet-management.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/driver-page/driver-index/bill-of-lading-details/completeOutSale/completeOutSale.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/driver-page/driver-index/bill-of-lading-details/weighingDevice/weighingDevice.vue 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/driver-page/driver-index/driver-index.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/freight-forwarder-page/freightForwarder-index/freightForwarder-index.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/loadUnload-page/loadUnload-detail/loadUnload-detail.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/public-page/message/message.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/customer-page/customer-index/customer-index.vue
@@ -11,6 +11,7 @@
                        icon="http://cdn.uviewui.com/uview/empty/data.png"
                        textSize="30"
                        iconSize="1000"
                        text="暂无数据"
                        v-if="orderPlanData.length == 0"></u-empty>
                </view>
                <view class="collection-form">
@@ -67,6 +68,7 @@
                            icon="http://cdn.uviewui.com/uview/empty/data.png"
                            textSize="30"
                            iconSize="1000"
                            text="暂无数据"
                            v-if="historyCoalData.length == 0"></u-empty>
                        <view class="history-information"
                            v-for="(item, index) in historyCoalData"
pages/customer-page/customer-my/faYunstatistics/faYunstatistics.vue
@@ -35,6 +35,7 @@
                        icon="http://cdn.uviewui.com/uview/empty/data.png"
                        textSize="30"
                        iconSize="1000"
                        text="暂无数据"
                        v-if="filterList.length == 0"></u-empty>
                    <view class="statistics-card"
                        v-for="(item, index) in filterList"
pages/customer-page/customer-my/userMange/userMange.vue
@@ -1,21 +1,50 @@
<template>
    <view>
        <u-empty mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png" textSize="30" iconSize="1000" v-if="userList.length == 0"></u-empty>
        <u-empty mode="data"
            icon="http://cdn.uviewui.com/uview/empty/data.png"
            textSize="30"
            iconSize="1000"
            v-if="userList.length == 0"
            text="暂无数据"></u-empty>
        <u-list @scrolltolower="scrolltolower">
            <u-list-item v-for="(item, index) in userList" :key="index">
                <u-cell size="large" center :label="item.deptNames">
                    <view slot="title" class="u-slot-title">
            <u-list-item v-for="(item, index) in userList"
                :key="index">
                <u-cell size="large"
                    center
                    :label="item.deptNames">
                    <view slot="title"
                        class="u-slot-title">
                        <text class="u-cell-text">{{ item.name }}</text>
                    </view>
                    <view slot="value" class="u-slot-value">
                        <u-tag text="查看" type="primary" plain size="mini" icon="eye" @click="viewInfo(item)"></u-tag>
                        <u-tag text="编辑" type="primary" plain size="mini" icon="edit-pen" @click="editInfo(item)"></u-tag>
                        <u-tag text="删除" type="warning" plain size="mini" icon="trash" @click="deleteInfo(item)"></u-tag>
                    <view slot="value"
                        class="u-slot-value">
                        <u-tag text="查看"
                            type="primary"
                            plain
                            size="mini"
                            icon="eye"
                            @click="viewInfo(item)"></u-tag>
                        <u-tag text="编辑"
                            type="primary"
                            plain
                            size="mini"
                            icon="edit-pen"
                            @click="editInfo(item)"></u-tag>
                        <u-tag text="删除"
                            type="warning"
                            plain
                            size="mini"
                            icon="trash"
                            @click="deleteInfo(item)"></u-tag>
                    </view>
                </u-cell>
            </u-list-item>
        </u-list>
        <u-popup :show="infoShow" mode="center" :round="10" :closeable="true" @close="close">
        <u-popup :show="infoShow"
            mode="center"
            :round="10"
            :closeable="true"
            @close="close">
            <view class="info-main">
                <view class="info-block">
                    <view class="info-block_label">服务矿场</view>
@@ -35,8 +64,16 @@
                </view>
            </view>
        </u-popup>
        <view class="add-icon" @click.stop="addUser"><u-icon name="plus" color="#fff" size="40"></u-icon></view>
        <u-modal :show="deleteShow" title="删除" content="确认删除?" @confirm="deleteConfirm" @cancel="deleteCancel" :showCancelButton="true"></u-modal>
        <view class="add-icon"
            @click.stop="addUser"><u-icon name="plus"
                color="#fff"
                size="40"></u-icon></view>
        <u-modal :show="deleteShow"
            title="删除"
            content="确认删除?"
            @confirm="deleteConfirm"
            @cancel="deleteCancel"
            :showCancelButton="true"></u-modal>
    </view>
</template>
@@ -127,17 +164,20 @@
};
</script>
<style lang="scss" scoped>
<style lang="scss"
    scoped>
@mixin flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/deep/ .u-slot-value {
    width: 150px;
    height: 60px;
    @include flex;
}
.info-main {
    width: 690rpx;
    height: 600rpx;
@@ -145,17 +185,20 @@
    flex-direction: column;
    padding: vww(10);
    box-shadow: 0rpx 0rpx 14rpx 0rpx rgba(73, 120, 240, 0.14), 0rpx 7rpx 45rpx 0rpx rgba(73, 120, 240, 0.12);
    .info-block {
        width: 94%;
        height: 120rpx;
        @include flex;
        border-bottom: 1px solid #d6d6d6;
        &_label {
            line-height: 28rpx;
            font-size: 28rpx;
            font-weight: 300;
            color: #303030;
        }
        &_value {
            line-height: 28rpx;
            font-size: 28rpx;
@@ -164,6 +207,7 @@
        }
    }
}
.add-icon {
    position: fixed;
    bottom: vww(60);
pages/customer-page/fleet-management/fleet-management.vue
@@ -15,6 +15,7 @@
                    v-if="fleetDriverData.length == 0"
                    width="400"
                    height="400"
                    text="暂无数据"
                    textSize="18"></u-empty>
                <u-collapse-item :title="fleetDriverData[0].fleetName"
                    v-if="fleetDriverData.length != 0"
pages/driver-page/driver-index/bill-of-lading-details/completeOutSale/completeOutSale.vue
@@ -5,6 +5,7 @@
                icon="http://cdn.uviewui.com/uview/empty/data.png"
                textSize="30"
                iconSize="1000"
                text="暂无数据"
                v-if="recordList.length == 0"></u-empty>
            <view class="main-block"
                v-for="item in recordList"
pages/driver-page/driver-index/bill-of-lading-details/weighingDevice/weighingDevice.vue
@@ -622,6 +622,7 @@
            abnormalCancel() {
                this.abnormalModalShow = false
                this.isConfirmWeighLoading = false;
                this.$u.toast('司机取消提交')
            },
            // 提交异常原因
            abnormalConfirm() {
@@ -630,7 +631,9 @@
                this.saveWeigh()
            },
            skinAbnormal() {
                this.$reqPost('skinAbnormal', { sceneId: this.weighData.sceneId }, 'params')
                this.$reqPost('skinAbnormal', { sceneId: this.weighData.sceneId }, 'params').then(() => {
                    this.abnormalModalShow = false
                })
            }
        }
    };
pages/driver-page/driver-index/driver-index.vue
@@ -79,6 +79,7 @@
                    <combined-title title="待预约提煤单"></combined-title>
                    <u-empty mode="data"
                        icon="http://cdn.uviewui.com/uview/empty/data.png"
                        text="暂无数据"
                        textSize="30"
                        iconSize="1000"
                        v-if="driverBillOfLoadingData.list3 ? (driverBillOfLoadingData.list3.length == 0 ? true : false) : true"></u-empty>
@@ -154,6 +155,7 @@
                        icon="http://cdn.uviewui.com/uview/empty/data.png"
                        textSize="30"
                        iconSize="1000"
                        text="暂无数据"
                        v-if="driverBillOfLoadingData.list2 ? (driverBillOfLoadingData.list2.length == 0 ? true : false) : true"></u-empty>
                    <view class="appointment-form">
                        <view class="appointment-form-item"
pages/freight-forwarder-page/freightForwarder-index/freightForwarder-index.vue
@@ -9,6 +9,7 @@
                    icon="http://cdn.uviewui.com/uview/empty/data.png"
                    textSize="30"
                    iconSize="1000"
                    text="暂无数据"
                    v-if="orderPlanData.length == 0"></u-empty>
            </view>
            <view class="collection-form">
@@ -80,6 +81,7 @@
                        icon="http://cdn.uviewui.com/uview/empty/data.png"
                        textSize="30"
                        iconSize="1000"
                        text="暂无数据"
                        v-if="historyCoalData.length === 0"></u-empty>
                    <view class="history-information"
                        v-for="(item, index) in historyCoalData"
pages/loadUnload-page/loadUnload-detail/loadUnload-detail.vue
@@ -5,6 +5,7 @@
                icon="http://cdn.uviewui.com/uview/empty/data.png"
                textSize="30"
                iconSize="1000"
                text="暂无数据"
                v-if="detailData.length == 0"></u-empty>
        </view>
        <view class="collection-form">
pages/public-page/message/message.vue
@@ -5,7 +5,8 @@
            v-if="messageList.length == 0"
            width="400"
            height="400"
            textSize="18"></u-empty>
            textSize="18"
            text="暂无数据"></u-empty>
        <view class="message-list">
            <u-list @scrolltolower="scrolltolower"
                :height="1400">