333
schangxiang@126.com
2025-09-19 18966e02fb573c7e2bb0c6426ed792b38b910940
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<template>
  <el-row :gutter="10" class="panel-group">
    <el-col :xs="12" :sm="12" :lg="6" class="card-panel-col">
      <div class="card-panel" @click="handleSetLineChartData('WayBillNum')">
        <div class="card-panel-icon-wrapper icon-people">
          <svg-icon icon-class="documentation" class-name="card-panel-icon" />
        </div>
        <div class="card-panel-description">
          <div class="card-panel-text">总运单数</div>
          <count-to :start-val="0" :end-val="numStatistics.WayBillNum" :duration="2600" class="card-panel-num" />
        </div>
      </div>
    </el-col>
    <el-col :xs="12" :sm="12" :lg="6" class="card-panel-col">
      <div class="card-panel" @click="handleSetLineChartData('WaitWayBillNum')">
        <div class="card-panel-icon-wrapper icon-money">
          <svg-icon icon-class="edit" class-name="card-panel-icon" />
        </div>
        <div class="card-panel-description">
          <div class="card-panel-text">待审核运单</div>
          <count-to :start-val="0" :end-val="numStatistics.WaitWayBillNum" :duration="3200" class="card-panel-num" />
        </div>
      </div>
    </el-col>
    <el-col :xs="12" :sm="12" :lg="6" class="card-panel-col">
      <div class="card-panel" @click="handleSetLineChartData('WaitProductNum')">
        <div class="card-panel-icon-wrapper icon-message">
          <svg-icon icon-class="shopping" class-name="card-panel-icon" />
        </div>
        <div class="card-panel-description">
          <div class="card-panel-text">待审核物料</div>
          <count-to :start-val="0" :end-val="numStatistics.WaitProductNum" :duration="3000" class="card-panel-num" />
        </div>
      </div>
    </el-col>
    <el-col :xs="12" :sm="12" :lg="6" class="card-panel-col">
      <div class="card-panel" @click="handleSetLineChartData('NoGroupWayBillNum')">
        <div class="card-panel-icon-wrapper icon-shopping">
          <svg-icon icon-class="form" class-name="card-panel-icon" />
        </div>
        <div class="card-panel-description">
          <div class="card-panel-text">已揽收未组板运单</div>
          <count-to :start-val="0" :end-val="numStatistics.NoGroupWayBillNum" :duration="3600" class="card-panel-num" />
        </div>
      </div>
    </el-col>
  </el-row>
</template>
 
<script>
import CountTo from "vue-count-to";
 
export default {
  components: {
    CountTo
  },
  data() {
    return {
      numStatistics: {
        WayBillNum: 0,
        WaitWayBillNum: 0,
        WaitProductNum: 0,
        NoGroupWayBillNum: 0
      }
    };
  },
  mounted() {
    this.getTmsNumStatistics();
  },
  methods: {
    handleSetLineChartData(type) {
      var addList = null;
      if (type === "WayBillNum") {
        localStorage.removeItem("addList");
        this.$router.push({ path: "/tms/way/bill" });
      } else if (type === "WaitWayBillNum") {
        addList = [{ propName: "OrderStatus", value: "已提交" }];
        localStorage.setItem("addList", JSON.stringify(addList));
        this.$router.push({ path: "/tms/way/bill" });
      } else if (type === "WaitProductNum") {
        addList = [{ propName: "auditing", value: 0 }];
        localStorage.setItem("addList", JSON.stringify(addList));
        this.$router.push({ path: "/sys/product/product-info" });
      } else if (type === "NoGroupWayBillNum") {
        addList = [{ propName: "CollectStatus", value: "已揽收" }];
        localStorage.setItem("addList", JSON.stringify(addList));
        this.$router.push({ path: "/tms/way/bill" });
      }
 
      // this.$emit("handleSetLineChartData", type);
    },
    getTmsNumStatistics() {
      const url = "/api/User/GetTmsNumStatistics";
      const params = {};
      var callback = res => {
        if (res.result) {
          this.numStatistics = res.data;
        }
      };
      this.common.ajax(url, params, callback, true);
    }
  }
};
</script>
 
<style rel="stylesheet/scss" lang="scss" scoped>
.panel-group {
  margin-top: 5px;
  .card-panel-col {
    margin-bottom: 10px;
  }
  .card-panel {
    height: 108px;
    cursor: pointer;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    color: #666;
    background: #fff;
    box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    border: 1px solid #e4e4e4;
    &:hover {
      .card-panel-icon-wrapper {
        color: #fff;
      }
      .icon-people {
        background: #40c9c6;
      }
      .icon-message {
        background: #36a3f7;
      }
      .icon-money {
        background: #f4516c;
      }
      .icon-shopping {
        background: #34bfa3;
      }
    }
    .icon-people {
      color: #40c9c6;
    }
    .icon-message {
      color: #36a3f7;
    }
    .icon-money {
      color: #f4516c;
    }
    .icon-shopping {
      color: #34bfa3;
    }
    .card-panel-icon-wrapper {
      float: left;
      margin: 14px 0 0 14px;
      padding: 16px;
      transition: all 0.38s ease-out;
      border-radius: 6px;
    }
    .card-panel-icon {
      float: left;
      font-size: 48px;
    }
    .card-panel-description {
      float: right;
      font-weight: bold;
      margin: 26px;
      margin-left: 0px;
      .card-panel-text {
        line-height: 18px;
        color: rgba(0, 0, 0, 0.45);
        font-size: 16px;
        margin-bottom: 12px;
      }
      .card-panel-num {
        font-size: 20px;
      }
    }
  }
}
</style>