|
|
@@ -2814,16 +2814,24 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
this.$http({
|
|
|
+ // url: this.$http.adornUrl(
|
|
|
+ // `admin/shop/updateShopCashDeposit?shopId=` +
|
|
|
+ // this.shopId +
|
|
|
+ // "&money=" +
|
|
|
+ // this.money +
|
|
|
+ // "&type=" +
|
|
|
+ // this.type
|
|
|
+ // ),
|
|
|
url: this.$http.adornUrl(
|
|
|
- `admin/shop/updateShopCashDeposit?shopId=` +
|
|
|
- this.shopId +
|
|
|
- "&money=" +
|
|
|
- this.money +
|
|
|
- "&type=" +
|
|
|
- this.type
|
|
|
+ `admin/shop/updateShopCashDeposit`
|
|
|
),
|
|
|
method: "get",
|
|
|
- data: this.$http.adornData({})
|
|
|
+ data: this.$http.adornData({}),
|
|
|
+ params: this.$http.adornParams({
|
|
|
+ shopId: this.shopId,
|
|
|
+ money: this.money,
|
|
|
+ type: this.type
|
|
|
+ })
|
|
|
}).then(({ data }) => {
|
|
|
if (data.code == 0) {
|
|
|
this.$message({
|