This commit is contained in:
weipengfei 2023-09-26 09:30:42 +08:00
commit 25af883fef
11 changed files with 162 additions and 93 deletions

View File

@ -305,3 +305,8 @@ export function paymerchant() {
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) {
return request.get(`user/margin/list`,data);
}

View File

@ -9,8 +9,8 @@ let httpApiThree
let httpApiFour let httpApiFour
// 在打包之前请检查当前环境是否正确 // 在打包之前请检查当前环境是否正确
const env = 'dev'; // 开发 // const env = 'dev'; // 开发
// const env = 'prod'; // 生产 const env = 'prod'; // 生产
// const env = 'prew'; // 预上线 // const env = 'prew'; // 预上线
switch (env) { switch (env) {
@ -34,37 +34,7 @@ switch (env) {
} }
// // 网络接口修改此字符 小程序域名要求https
// // let httpApi = 'http://192.168.31.110:8324' // 测试
// if (process.env.NODE_ENV === "development") {
// httpApi = 'https://shop.lihaink.cn' // 生产
// // httpApi = 'https://test.shop.lihaink.cn' //预发布环境
// // httpApi = "https://crmeb-test.shop.lihaink.cn"
// // httpApi = "http://192.168.0.222"
// // httpApi = "http://192.168.0.108:8325"
// // httpApi = 'http://192.168.0.108:8325'
// // #ifdef MP-WEIXIN
// httpApiTwo = "https://nk.lihaink.cn"
// httpApiThree = 'http://ceshi-oa.lihaink.cn'
// // #endif
// // #ifdef H5
// // httpApiTwo = "baseUrl" // h5跨域配置
// httpApiTwo = "https://nk.lihaink.cn" // h5跨域配置
// // httpApiThree = 'baseUrlTest' // h5跨域配置
// // #endif
// } else if (process.env.NODE_ENV === 'production') {
// httpApi = 'https://shop.lihaink.cn' // 生产
// // httpApi ='https://test.shop.lihaink.cn' //预发布环境
// // httpApi = "https://crmeb-test.shop.lihaink.cn"
// httpApiTwo = 'https://nk.lihaink.cn' // 生产
// httpApiThree = 'http://ceshi-oa.lihaink.cn' //生产
// }
// httpApi = 'https://shop.lihaink.cn' // 生产
// httpApiTwo = 'https://nk.lihaink.cn' // 生产
// 聊天接口修改此字符 小程序聊天要求wss 例如wss://mer.crmeb.net // 聊天接口修改此字符 小程序聊天要求wss 例如wss://mer.crmeb.net
// let wsApi = 'ws://192.168.3.20:8324' // let wsApi = 'ws://192.168.3.20:8324'

View File

@ -2,8 +2,8 @@
"name" : "惠农生活", "name" : "惠农生活",
"appid" : "__UNI__3A527D1", "appid" : "__UNI__3A527D1",
"description" : "", "description" : "",
"versionName" : "1.4.3", "versionName" : "1.4.4",
"versionCode" : 143, "versionCode" : 144,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -6,7 +6,7 @@
<view class="title">店铺保证金信息</view> <view class="title">店铺保证金信息</view>
<view class="item"> <view class="item">
<text>已缴纳保证金</text> <text>已缴纳保证金</text>
<text>{{merchant_Data.margin}}</text> <text>{{merchant_Data.paid_margin}}</text>
</view> </view>
<view class="item"> <view class="item">
<text>缴纳店铺账户</text> <text>缴纳店铺账户</text>
@ -17,7 +17,7 @@
<view class="price"> <view class="price">
<view class="title">缴纳金额</view> <view class="title">缴纳金额</view>
<view class="tab"> <view class="tab">
<view class="item active" style="margin: 0;">{{merchant_Data.recharge_margin}}</view> <view class="item active" style="margin: 0;">{{merchant_Data.margin}}</view>
</view> </view>
<button class="btn" @click="paydecimal">缴纳</button> <button class="btn" @click="paydecimal">缴纳</button>
</view> </view>
@ -26,27 +26,82 @@
<view class="text">充值后帐户的金额不能提现可用于商城消费使用佣金导入账户之后不能再次导出不可提现账户充值出现问题可联系商城客服也可拨打商城客服热线<text @click="copyPhone('4008888888')">4008888888</text> <view class="text">充值后帐户的金额不能提现可用于商城消费使用佣金导入账户之后不能再次导出不可提现账户充值出现问题可联系商城客服也可拨打商城客服热线<text @click="copyPhone('4008888888')">4008888888</text>
</view> </view>
</view> --> </view> -->
<view class="content-order" v-for="(item,i ) in productList">
<view class="">订单编号{{item.order_sn}}</view>
<view class="">支付金额{{item.total_price}}</view>
<view class="">支付状态{{item.pay_type==1?'已支付':'待支付'}}</view>
<view class="">支付时间{{item.pay_time}}</view>
</view>
<view class='loadingicon acea-row row-center-wrapper' v-if='productList.length > 0'>
<text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
</view>
</view> </view>
</template> </template>
<script> <script>
import { import {
merchant, merchant,
paymerchant paymerchant,
marginlist
} from '@/api/api.js' } from '@/api/api.js'
export default { export default {
data() { data() {
return { return {
mer_id:0, mer_id:0,
merchant_Data: {}, merchant_Data: {},
where:{
page:1,
limit:10
},
productList:[],
loadend: false,
loading: false,
loadTitle: '加载更多',
} }
}, },
onLoad(e) { onLoad(e) {
this.mer_id = e.mer_id this.mer_id = e.mer_id
this.decimal() this.decimal()
this.list(false)
},
onReachBottom() {
if (this.productList.length > 0) {
setTimeout(() => {
this.list(false);
}, 1000)
}
}, },
methods: { methods: {
list(isPage){
let that = this;
if (that.loadend) return;
if (that.loading) return;
if (isPage === true) that.$set(that, 'productList', []);
that.loading = true;
that.loadTitle = '';
marginlist(that.where).then(res => {
let list = res.data.list;
let productList = that.$util.SplitArray(list, that.productList);
let loadend = list.length < that.where.limit;
that.loadend = loadend;
that.loading = false;
that.loadTitle = loadend ? '已全部加载' : '加载更多';
setTimeout(() => {
that.$set(that, 'productList', productList);
}, 500)
// console.log(that.productList)
that.$set(that.where, 'page', that.where.page + 1);
if (that.where.page == 1 && res.data.list.length <= 0) that.emptyShow = true
}).catch(err => {
that.loading = false;
that.loadTitle = '加载更多';
});
},
// //
decimal() { decimal() {
merchant({ merchant({
@ -105,7 +160,24 @@
page { page {
background-color: #fff; background-color: #fff;
} }
.content-order{
background: #F4F4F4;
border-radius: 21rpx 21rpx ;
margin-top: 30rpx;
padding: 10rpx;
margin-left: 10rpx;
margin-right: 10rpx;
view{
font-size: 30rpx;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
color: #333333;
margin: 20rpx;
}
}
.info { .info {
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@ -628,6 +628,9 @@
this.getUserInfo() this.getUserInfo()
this.codelist() this.codelist()
this.list() this.list()
}, },
@ -684,24 +687,6 @@
this.$refs.popup.open() this.$refs.popup.open()
this.isFshow = false this.isFshow = false
// intentionbus({
// "status": 1
// }).then((res) => {
// if (res.status == 200) {
// this.$util.Tips({
// title: res.message,
// icon: 'success',
// })
// this.getUserInfo()
// this.isFshow = false
// }
// }).catch((err) => {
// this.isFshow = false
// this.$util.Tips({
// title: err,
// icon: 'error',
// })
// })
}, },
// //
refuse() { refuse() {
@ -847,9 +832,23 @@
// //
margin(url) { margin(url) {
if (this.userInfoData.mer_info.mer_settlement_agree_status == 0) { if (this.userInfoData.mer_info.mer_settlement_agree_status == 0) {
if (this.codenote.length == 0) {
this.isFshow = true this.isFshow = true
this.countDown() this.countDown()
} else { } else {
if (this.codenote[0].status == 0) {
uni.showModal({
title: '申请正在审核中,请勿重复提交'
})
} else {
this.isFshow = true
this.countDown()
}
}
} else {
uni.navigateTo({ uni.navigateTo({
url: url + `?mer_id=` + this.mer_id url: url + `?mer_id=` + this.mer_id
}) })
@ -863,10 +862,27 @@
}) })
}, },
navigator(url, t) { navigator(url, t) {
if (this.userInfoData.mer_info.mer_settlement_agree_status == 0) { if (this.userInfoData.mer_info.mer_settlement_agree_status == 0) {
// console.log(this.codenote)
if (this.codenote.length == 0) {
this.isFshow = true this.isFshow = true
this.countDown() this.countDown()
} else { } else {
if (this.codenote[0].status == 0) {
uni.showModal({
title: '申请正在审核中,请勿重复提交'
})
} else {
this.isFshow = true
this.countDown()
}
}
} else {
uni.navigateTo({ uni.navigateTo({
url: url url: url
}) })
@ -881,9 +897,9 @@
street_code: res.data.mer_info.street_id street_code: res.data.mer_info.street_id
}).then((res) => { }).then((res) => {
if (res.code == 0) { if (res.code == 0) {
this.$util.Tips({ // this.$util.Tips({
title: res.msg // title: res.msg
}); // });
return false; return false;
} }
this.company = res.data.title this.company = res.data.title
@ -983,6 +999,7 @@
.item-card { .item-card {
display: flex; display: flex;
margin-top: 20rpx; margin-top: 20rpx;
.item-carda { .item-carda {
width: 298rpx; width: 298rpx;
height: 175rpx; height: 175rpx;

View File

@ -7,8 +7,10 @@
<view class="store_bg"> <view class="store_bg">
<view class="text flex_a_c"><i class="iconfont icon-xinghao"></i>上传店铺背景图</view> <view class="text flex_a_c"><i class="iconfont icon-xinghao"></i>上传店铺背景图</view>
<block v-if="images[0].img"> <block v-if="images[0].img">
<u--image :showLoading="true" :src="images[0].img" width="388px" height="210.53rpx" radius="4px" <!-- <u--image :showLoading="true" :src="images[0].img" width="388px" height="210.53rpx" radius="4px"
@click="delImg(0)" mode="aspectFit"></u--image> @click="delImg(0)" mode="aspectFit"></u--image> -->
<u--image :showLoading="true" :src="images[0].img" width="360px" height="210.53rpx" radius="4px"
@click="delImg(2)"></u--image>
</block> </block>
<view v-else class="upload" @click="seleckImage(0)"> <view v-else class="upload" @click="seleckImage(0)">
<view class="iconfont icon-tupian1"></view> <view class="iconfont icon-tupian1"></view>

View File

@ -6,7 +6,7 @@
恭喜您的申请已通过 恭喜您的申请已通过
</view> </view>
</view> </view>
<view class="msg" v-if="mer_id > 0 && resData.login_url"> <!-- <view class="msg" v-if="mer_id > 0 && resData.login_url">
<view class="url"> <view class="url">
<text class="head">登录地址</text> <text class="head">登录地址</text>
<text class="content">{{resData.login_url}}</text> <text class="content">{{resData.login_url}}</text>
@ -18,7 +18,7 @@
</view> </view>
<text class="cope" @click="copyTBL()">复制</text> <text class="cope" @click="copyTBL()">复制</text>
</view> </view>
</view> </view> -->
<view class="btn" v-if="mer_id > 0"> <view class="btn" v-if="mer_id > 0">
<view class=""> <view class="">
温馨提示初始密码默认为手机号后六位请初次登录后及时修改 温馨提示初始密码默认为手机号后六位请初次登录后及时修改

View File

@ -194,7 +194,8 @@
<view class="settlementAgreement" v-if="isshow"> <view class="settlementAgreement" v-if="isshow">
<view class="setAgCount" style="width: 100%;height: 100%;"> <view class="setAgCount" style="width: 100%;height: 100%;">
<!-- <i class="icon iconfont icon-cha" @click="recuo"></i> --> <!-- <i class="icon iconfont icon-cha" @click="recuo"></i> -->
<view class="" style="width: 60rpx;height: 60rpx; position: absolute;right: 30rpx; top:20rpx" @click="recuo"> <view class="" style="width: 60rpx;height: 60rpx; position: absolute;right: 30rpx; top:20rpx"
@click="recuo">
<image src="@/static/images/close.png" mode="aspectFit" style="width: 60rpx;height: 60rpx;"></image> <image src="@/static/images/close.png" mode="aspectFit" style="width: 60rpx;height: 60rpx;"></image>
</view> </view>
@ -756,10 +757,11 @@
formSubmit: function(e) { formSubmit: function(e) {
if (this.num == 0) {
let that = this; let that = this;
if (that.validateForm() && that.validate) { if (that.validateForm() && that.validate) {
if (this.num == 0) {
let requestData = { let requestData = {
phone: that.merchantData.phone, phone: that.merchantData.phone,
mer_name: that.merchantData.enterprise_name, mer_name: that.merchantData.enterprise_name,
@ -813,14 +815,15 @@
}); });
}) })
} }
}
} else { } else {
this.isshow = true this.isshow = true
this.countDown() this.countDown()
} }
}
}, },
validateBtn: function() { validateBtn: function() {
let that = this, let that = this,

View File

@ -103,13 +103,13 @@
<text class='iconfont icon-you'></text> <text class='iconfont icon-you'></text>
</navigator> </navigator>
</view> </view>
<!-- <view class='item acea-row row-between-wrapper'> <view class='item acea-row row-between-wrapper'>
<view>注销账号</view> <view>注销账号</view>
<view class='input acea-row row-between-wrapper' @click="changeCancel"> <view class='input acea-row row-between-wrapper' @click="changeCancel">
<input type='text' placeholder="账号注销后不能恢复" disabled='true' class='id'></input> <input type='text' placeholder="账号注销后不能恢复" disabled='true' class='id'></input>
<text class='iconfont icon-you'></text> <text class='iconfont icon-you'></text>
</view> </view>
</view> --> </view>
<!--#ifdef APP-PLUS--> <!--#ifdef APP-PLUS-->
<view class='item acea-row row-between-wrapper'> <view class='item acea-row row-between-wrapper'>
<view>当前版本</view> <view>当前版本</view>

View File

@ -19,7 +19,7 @@ import {
import store from '../store'; import store from '../store';
console.log(HTTP_REQUEST_URL_FOUR) // console.log(HTTP_REQUEST_URL_FOUR)
/** /**
* 发送请求 * 发送请求
@ -46,7 +46,7 @@ function baseRequest(url, method, data, {
// #ifdef APP-PLUS // #ifdef APP-PLUS
// console.log('app', Url + '/api/' + url, res.data); // console.log('app', Url + '/api/' + url, res.data);
// #endif // #endif
console.log(res.data.code) // console.log(res.data.code)
if (noVerify) if (noVerify)
reslove(res.data, res); reslove(res.data, res);
else if (res.data.status == 200) else if (res.data.status == 200)