更新文字说明保证金->押金

This commit is contained in:
weipengfei 2023-10-26 18:42:46 +08:00
parent 7ad8780361
commit 1dab497470
3 changed files with 6 additions and 6 deletions

View File

@ -80,12 +80,12 @@
...uni.getStorageSync('GLOBAL_DATA') || {} ...uni.getStorageSync('GLOBAL_DATA') || {}
}, },
onLaunch(option) { onLaunch(option) {
// console.log(option,'1111111111') // #ifdef APP-PLUS
uni.sendHostEvent('log', option, (ret) => { uni.sendHostEvent('log', option, (ret) => {
// //
console.log('消息成功' + JSON.stringify(option)); console.log('消息成功' + JSON.stringify(option));
}); });
// #endif
this.globalData.statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px'; this.globalData.statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
this.globalData.uid = this.$store.state.app.uid; this.globalData.uid = this.$store.state.app.uid;

View File

@ -293,20 +293,20 @@ export function brigade(data) {
} }
/* /*
生产 -- 获取商户保证金信息支付接口 生产 -- 获取商户金信息支付接口
*/ */
export function paymerchant() { export function paymerchant() {
return request.post(`user/margin`,{}); return request.post(`user/margin`,{});
} }
/* /*
生产 -- 获取商户保证金信息接口 生产 -- 获取商户金信息接口
*/ */
export function merchant(data) { export function merchant(data) {
return request.get(`store/merchant/margin`, data); return request.get(`store/merchant/margin`, data);
} }
//获取保证金缴纳列表 //获取金缴纳列表
export function marginlist(data) { export function marginlist(data) {
return request.get(`user/margin/list`,data); return request.get(`user/margin/list`,data);
} }

View File

@ -109,7 +109,7 @@
}, { }, {
"path": "pages/margin/margin", "path": "pages/margin/margin",
"style": { "style": {
"navigationBarTitleText": "缴纳保证金", "navigationBarTitleText": "缴纳金",
"enablePullDownRefresh": false "enablePullDownRefresh": false
} }
}, { }, {