修改问题
This commit is contained in:
parent
5af43012a9
commit
ef09010f2b
|
@ -2,7 +2,7 @@
|
||||||
<div>
|
<div>
|
||||||
<obj-modal
|
<obj-modal
|
||||||
ref="modal"
|
ref="modal"
|
||||||
labelWidth="150px"
|
labelWidth="190px"
|
||||||
:modalCols="modalCols"
|
:modalCols="modalCols"
|
||||||
:modalConfig="modalConfig"
|
:modalConfig="modalConfig"
|
||||||
:modalData="modalData"
|
:modalData="modalData"
|
||||||
|
|
|
@ -962,14 +962,14 @@ export default {
|
||||||
// let res = await this.$api.mer_admin.getProductCategory();
|
// let res = await this.$api.mer_admin.getProductCategory();
|
||||||
// return res.data.data;
|
// return res.data.data;
|
||||||
// },
|
// },
|
||||||
async getSaleUnit() {
|
// async getSaleUnit() {
|
||||||
let res = await this.$api.mer_admin.getSaleUnit({
|
// let res = await this.$api.mer_admin.getSaleUnit({
|
||||||
shopId: JSON.parse(sessionStorage.getItem("userInfo")).shopId,
|
// shopId: JSON.parse(sessionStorage.getItem("userInfo")).shopId,
|
||||||
});
|
// });
|
||||||
console.log(res);
|
// console.log(res);
|
||||||
|
|
||||||
return res.data.data;
|
// return res.data.data;
|
||||||
},
|
// },
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -227,8 +227,15 @@
|
||||||
<div style="font-size: 16px; margin: 0 0 20px 0; font-weight: 600">
|
<div style="font-size: 16px; margin: 0 0 20px 0; font-weight: 600">
|
||||||
钱包账单
|
钱包账单
|
||||||
</div>
|
</div>
|
||||||
<div style="background: #fff; padding: 10px; height: 51vh;min-width: 400px;
|
<div
|
||||||
overflow-y:scroll;">
|
style="
|
||||||
|
background: #fff;
|
||||||
|
padding: 10px;
|
||||||
|
height: 51vh;
|
||||||
|
min-width: 400px;
|
||||||
|
overflow-y: scroll;
|
||||||
|
"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
v-for="item in billList"
|
v-for="item in billList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
|
@ -246,7 +253,7 @@
|
||||||
<div>订单状态:{{ getBillStatus(item.billStatus) }}</div>
|
<div>订单状态:{{ getBillStatus(item.billStatus) }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="wallet-item">
|
<div class="wallet-item">
|
||||||
<div>{{ item.billTypeName }}:{{item.billAmount}}</div>
|
<div>{{ item.billTypeName }}:{{ item.billAmount }}</div>
|
||||||
<div>余额:{{ item.amountAfterChange }}</div>
|
<div>余额:{{ item.amountAfterChange }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -268,7 +275,11 @@
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<!-- 提现 -->
|
<!-- 提现 -->
|
||||||
<withdrawal @init="init" ref="withdrawal"></withdrawal>
|
<withdrawal
|
||||||
|
@init="init"
|
||||||
|
@getWithdrawalRecord="getWithdrawalRecord"
|
||||||
|
ref="withdrawal"
|
||||||
|
></withdrawal>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -127,6 +127,7 @@ export default {
|
||||||
console.log(valid);
|
console.log(valid);
|
||||||
this.$api.wallet.Withdrawal(this.ruleForm).then((res) => {
|
this.$api.wallet.Withdrawal(this.ruleForm).then((res) => {
|
||||||
this.$emit("init");
|
this.$emit("init");
|
||||||
|
this.$emit("getWithdrawalRecord");
|
||||||
this.toggle();
|
this.toggle();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue