This commit is contained in:
shengchanzhe 2023-09-25 00:19:01 +08:00
parent 78006bd9cf
commit 5d64234120
4 changed files with 315 additions and 77 deletions

View File

@ -146,7 +146,16 @@
"navigationStyle": "custom"
}
}
],
,{
"path" : "pages/margin/margin",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"subPackages": [{
"root": "pages/goods_cate",
"name": "goods_cate",

256
pages/margin/margin.vue Normal file
View File

@ -0,0 +1,256 @@
<template>
<view class="">
<view class="info">
<view class="bg"></view>
<view class="card">
<view class="title">店铺保证金信息</view>
<view class="item">
<text>已缴纳保证金</text>
<text>{{merchant_Data.margin}}</text>
</view>
<view class="item">
<text>缴纳店铺账户</text>
<text>{{merchant_Data.mer_name}}</text>
</view>
</view>
</view>
<view class="price">
<view class="title">缴纳金额</view>
<view class="tab">
<view class="item active" style="margin: 0;">{{merchant_Data.recharge_margin}}</view>
</view>
<button class="btn" @click="paydecimal">缴纳</button>
</view>
<!-- <view class="tip">
<view class="title">注意事项</view>
<view class="text">充值后帐户的金额不能提现可用于商城消费使用佣金导入账户之后不能再次导出不可提现账户充值出现问题可联系商城客服也可拨打商城客服热线<text @click="copyPhone('4008888888')">4008888888</text>
</view>
</view> -->
</view>
</template>
<script>
import {
merchant,
paymerchant
} from '@/api/api.js'
export default {
data() {
return {
mer_id:0,
merchant_Data: {},
}
},
onLoad(e) {
this.mer_id = e.mer_id
this.decimal()
},
methods: {
//
decimal() {
merchant({
id: this.mer_id
}).then((res) => {
this.merchant_Data = res.data
});
},
//
paydecimal() {
if (this.merchant_Data.is_margin != 1) {
this.$util.Tips({
title: '暂时无需缴纳保证金'
});
} else {
uni.showModal({
title: '提示',
content: '商户' + this.merchant_Data.mer_name + '是否同意缴纳保证金',
success: function(res) {
if (res.confirm) {
// console.log('');
paymerchant().then((res) => {
console.log(res.data)
uni.requestPayment({
provider: 'wxpay',
orderInfo: res.data
.config, //
success: function(res) {
console.log('success:' + JSON.stringify(res));
},
fail: function(err) {
console.log('fail:' + JSON.stringify(err));
}
});
}).catch((err) => {
console.log(err)
})
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
}
},
}
}
</script>
<style>
</style>
<style lang="scss">
page {
background-color: #fff;
}
.info {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
height: 250rpx;
.bg {
background-color: #FF5C2D;
height: 170rpx;
width: 100vw;
border-radius: 0rpx 0rpx 28rpx 28rpx;
position: absolute;
top: 0;
left: 0;
}
.card {
width: 694rpx;
min-height: 180rpx;
background: #FFFFFF;
margin-top: 38.55rpx;
box-shadow: 0rpx 0rpx 18rpx 2rpx rgba(50, 116, 249, 0.1);
border-radius: 14rpx 14rpx 14rpx 14rpx;
opacity: 1;
padding: 31.5rpx 28rpx;
display: flex;
flex-direction: column;
justify-content: space-around;
position: absolute;
top: 0;
.title {
font-size: 32rpx;
font-weight: 600;
color: #333333;
padding-bottom: 10rpx;
}
.item {
display: flex;
justify-content: space-between;
font-size: 32rpx;
font-weight: 400;
color: #333333;
margin-bottom: 10rpx;
text:nth-child(1){
flex-shrink: 0;
margin-right: 18rpx;
}
}
}
}
.price {
display: flex;
flex-direction: column;
padding: 0 28rpx;
margin-top: 50rpx;
.title {
font-size: 32rpx;
font-weight: 600;
color: #333333;
line-height: 39rpx;
margin-bottom: 42rpx;
}
.tab {
display: flex;
flex-wrap: wrap;
justify-content: left;
width: 694rpx;
.item {
width: 217rpx;
height: 131rpx;
margin: 0 auto;
margin-bottom: 20rpx;
border-radius: 7rpx 7rpx 7rpx 7rpx;
border: 2rpx solid #F5F5F5;
display: flex;
justify-content: center;
align-items: center;
font-size: 32rpx;
font-weight: 500;
line-height: 32rpx;
}
.active {
border: 2rpx solid #FF5C2D;
color: #FF5C2D;
}
}
.input {
width: 100%;
height: 112rpx;
background: #F5F5F5;
border-radius: 56rpx 56rpx 56rpx 56rpx;
opacity: 1;
padding: 0 45.56rpx;
box-sizing: border-box;
font-size: 28rpx;
font-weight: 400;
color: #333;
line-height: 35rpx;
}
.btn {
width: 694rpx;
height: 84rpx;
margin-top: 73.6rpx;
background: #FF5C2D;
box-shadow: 0rpx 14rpx 44rpx 2rpx #E9EFF5;
border-radius: 42rpx 42rpx 42rpx 42rpx;
display: flex;
justify-content: center;
align-items: center;
font-size: 32rpx;
font-weight: 400;
color: #FFFFFF;
}
}
.tip {
display: flex;
flex-direction: column;
padding: 0 28rpx;
margin-top: 84rpx;
.title {
font-size: 32rpx;
font-weight: 500;
color: #FF5C2D;
line-height: 32rpx;
margin-bottom: 21rpx;
}
.text {
font-size: 28rpx;
font-weight: 400;
color: rgba(0, 0, 0, 0.6);
line-height: 42rpx;
-webkit-background-clip: text;
}
}
</style>

View File

@ -67,8 +67,8 @@
</image>
<text class="text">订单核销</text>
</view>
<view class="examine" @click="paydecimal">
<image class="icon_img" src="@/static/images/jy.png" mode="aspectFill">
<view class="examine" @click="navigator(`/pages/margin/margin`)">
<image class="icon_img" src="@/static/images/jy.png">
</image>
<text class="text">保证缴纳金</text>
</view>
@ -183,8 +183,8 @@
</image>
<text class="text">商户设置</text>
</view>
<view class="examine" @click="paydecimal">
<image class="icon_img" src="@/static/images/jy.png" mode="aspectFill">
<view class="examine" @click="margin(`/pages/margin/margin`)">
<image class="icon_img" src="@/static/images/jy.png">
</image>
<text class="text">保证缴纳金</text>
</view>
@ -302,8 +302,8 @@
</image>
<text class="text">商户设置</text>
</view>
<view class="examine" @click="paydecimal">
<image class="icon_img" src="@/static/images/jy.png" mode="aspectFill">
<view class="examine" @click="navigator(`/pages/margin/margin`)">
<image class="icon_img" src="@/static/images/jy.png">
</image>
<text class="text">保证缴纳金</text>
</view>
@ -373,8 +373,8 @@
</image>
<text class="text">商户设置</text>
</view>
<view class="examine" @click="paydecimal">
<image class="icon_img" src="@/static/images/jy.png" mode="aspectFill">
<view class="examine" @click="navigator(`/pages/margin/margin`)">
<image class="icon_img" src="@/static/images/jy.png">
</image>
<text class="text">保证缴纳金</text>
</view>
@ -398,8 +398,8 @@
</view>
<view class="examine" @click="paydecimal">
<image class="icon_img" src="@/static/images/jy.png" mode="aspectFill">
<view class="examine" @click="navigator(`/pages/margin/margin`)">
<image class="icon_img" src="@/static/images/jy.png" >
</image>
<text class="text">保证缴纳金</text>
</view>
@ -417,7 +417,8 @@
<view class="setAgCount" style="width: 100%;height: 100%;">
<i class="icon iconfont icon-cha" @click="recuo"></i>
<div class="title">{{detail.title}}</div>
<view style="margin: 20rpx 0;">甲方公司:{{company?company:"暂无公司信息"}}</view>
<view style="margin: 20rpx 0;">机构代码:{{organization_code?organization_code:"暂无公司信息"}}</view>
<view class="contenta">
<jyf-parser :html="detail.mer_settlement_agree" ref="article" :tag-style="tagStyle"></jyf-parser>
@ -543,7 +544,7 @@
intentionbus
} from "@/api/product"
import {
merstreet,
getUserInfo
} from '@/api/user.js'
import {
@ -568,6 +569,8 @@
},
data() {
return {
company: '',
organization_code:'',
locationArr: ({}),
emptyText: '暂无可用应用',
jurisdiction: false, //
@ -619,8 +622,8 @@
this.jurisdiction = true
}
this.getUserInfo()
this.list()
this.codelist()
this.list()
},
@ -640,53 +643,7 @@
})
},
decimal() {
merchant({
id: this.mer_id
}).then((res) => {
this.merchant_Data = res.data
});
},
//
paydecimal() {
if (this.merchant_Data.is_margin != 1) {
this.$util.Tips({
title: '暂时无需缴纳保证金'
});
} else {
uni.showModal({
title: '提示',
content: '商户' + this.merchant_Data.mer_name + '是否同意缴纳保证金',
success: function(res) {
if (res.confirm) {
// console.log('');
paymerchant().then((res) => {
console.log(res.data)
uni.requestPayment({
provider: 'wxpay',
orderInfo: res.data
.config, //
success: function(res) {
console.log('success:' + JSON.stringify(res));
},
fail: function(err) {
console.log('fail:' + JSON.stringify(err));
}
});
}).catch((err) => {
console.log(err)
})
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
}
},
//
formSubmit: function(e) {
let that = this;
@ -885,21 +842,17 @@
}
},
margin(url) {
uni.navigateTo({
url: url+`?mer_id=` + this.mer_id
})
},
//
buyserset() {
uni.navigateTo({
url: `/pages/product/basicSet?mer_id=` + this.mer_id
})
},
//
list() {
business({
type: 'mer_settlement_agree'
}).then(res => {
this.detail = res.data
})
},
navigator(url, t) {
if (this.userInfoData.mer_info.mer_settlement_agree_status == 0) {
this.isFshow = true
@ -913,16 +866,28 @@
getUserInfo: function() {
let that = this;
getUserInfo().then(res => {
that.userInfoData = res.data;
this.userInfoData = res.data;
this.merchantData.phone = res.data.phone
merstreet({
street_code: res.data.mer_info.street_id
}).then((res) => {
if(res.code==0){
this.$util.Tips({
title: res.msg
});
return false;
}
this.company=res.data.title
this.organization_code=res.data.organization_code
}).catch(res=>{
console.log(res)
})
if (res.data.service == null) {
// console.log('123');
this.isShow = false
} else {
this.isShow = true
this.mer_id = res.data.service.mer_id
this.decimal()
}
if (!res.data.mer_info) {
@ -930,7 +895,16 @@
}
// console.log(that.userInfoData);
});
}
},
//
list() {
business({
type: 'mer_settlement_agree'
}).then(res => {
this.detail = res.data
})
},
}
};
</script>
@ -1193,7 +1167,6 @@
top: 50%;
left: 50%;
-webkit-border-radius: 12rpx;
padding: 52rpx;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);

View File

@ -195,8 +195,8 @@
<view class="setAgCount" style="width: 100%;height: 100%;">
<!-- <i class="icon iconfont icon-cha" @click="recuo"></i> -->
<div class="title">{{detail.title}}</div>
<view style="margin: 20rpx 0;text-align: end;">甲方公司:{{company?company:"暂无公司信息"}}</view>
<view style="margin: 20rpx 0;text-align: end;">机构代码:{{organization_code?organization_code:"暂无公司信息"}}</view>
<view style="margin: 20rpx 0;">甲方公司:{{company?company:"暂无公司信息"}}</view>
<view style="margin: 20rpx 0;">机构代码:{{organization_code?organization_code:"暂无公司信息"}}</view>
<view class="contenta">
<jyf-parser :html="detail.mer_services_agree" ref="article" :tag-style="tagStyle"></jyf-parser>