|
@@ -277,15 +277,15 @@ export default {
|
|
|
label: "用户名",
|
|
|
},
|
|
|
{
|
|
|
- prop: "order_goods_num",
|
|
|
+ prop: "border_num",
|
|
|
label: "订单数量",
|
|
|
width: "100px",
|
|
|
},
|
|
|
- {
|
|
|
- prop: "order_goods_num_t",
|
|
|
- label: "总克重",
|
|
|
- width: "80px",
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // prop: "order_goods_num_t",
|
|
|
+ // label: "总克重",
|
|
|
+ // width: "80px",
|
|
|
+ // },
|
|
|
{
|
|
|
prop: "order_time",
|
|
|
label: "下单时间",
|
|
@@ -371,12 +371,12 @@ export default {
|
|
|
const res = await asyncRequest.list(this.parmValue);
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
this.tableData = res.data.list;
|
|
|
- this.tableData.forEach((v1) => {
|
|
|
- v1.order_goods_num =
|
|
|
- v1.order_num + v1.unit + "/" + v1.unit_weight + "kg";
|
|
|
- v1.order_goods_num_t = v1.order_num * 1 * (v1.unit_weight * 1) + "kg";
|
|
|
- });
|
|
|
- console.log(this.tableData);
|
|
|
+ // this.tableData.forEach((v1) => {
|
|
|
+ // v1.order_goods_num =
|
|
|
+ // v1.order_num + v1.unit + "/" + v1.unit_weight + "kg";
|
|
|
+ // v1.order_goods_num_t = v1.order_num * 1 * (v1.unit_weight * 1) + "kg";
|
|
|
+ // });
|
|
|
+ // console.log(this.tableData);
|
|
|
this.pageInfo.total = Number(res.data.count);
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|