1381 lines
32 KiB
Vue
1381 lines
32 KiB
Vue
<template>
|
|
<view class="">
|
|
|
|
<view class="settlementAgreement" v-if="isshow">
|
|
<view class="setAgCount" style="width: 100%;height: 100%;padding-top: 180rpx;">
|
|
<view class="" style="width: 60rpx;height: 60rpx; position: absolute;left: 30rpx; top:90rpx"
|
|
@click="isshow=false,num=10">
|
|
<i class="iconfont icon-xiangzuo" style="width: 60rpx;height: 60rpx;font-size: 40rpx;"></i>
|
|
</view>
|
|
|
|
<div class="title">{{detail.title}}</div>
|
|
<view class="contenta" v-if="detail.mer_services_agree">
|
|
<jyf-parser :html="detail.mer_services_agree" ref="article" :tag-style="tagStyle"></jyf-parser>
|
|
|
|
</view>
|
|
<view class="contenta" v-else>
|
|
<jyf-parser :html="detail.mer_supply_agree" ref="article" :tag-style="tagStyle"></jyf-parser>
|
|
</view>
|
|
|
|
<view class="setAgCountbtn">
|
|
<view class="border"></view>
|
|
<button :class="num>0?'setAgCountbtnb':'setAgCountbtnc'" class="btn" :disabled="num!=0"
|
|
@click="agree">
|
|
<text v-if="num>0">请仔细阅读协议 {{num}}秒后可提交</text>
|
|
<text v-else>同意本协议</text>
|
|
</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="" v-else>
|
|
<view class="bar" style="padding-top:var(--status-bar-height) ;">
|
|
<view class="" style="height: 30rpx;">
|
|
</view>
|
|
<view class="" style="display: flex;justify-content: space-between;padding: 0 20rpx;">
|
|
<i class="iconfont icon-xiangzuo" style="color: black;" @click="back"></i>
|
|
<view class="" style="transform: translateX(50rpx);">
|
|
商户入住
|
|
</view>
|
|
<view class="" @click="jumpToList">
|
|
申请记录
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="content" style="padding-top: var(--status-bar-height);">
|
|
<view class="" style="height: 80rpx;">
|
|
</view>
|
|
<view class="heder-tips">
|
|
简单3步 享开店好礼
|
|
</view>
|
|
<view class="steps">
|
|
<view class="steps-li" @click="step=1">
|
|
<view class="num act">
|
|
1
|
|
</view>
|
|
<view class="" style="font-size: 28rpx;color: #35BD3E;">
|
|
添加店铺
|
|
</view>
|
|
</view>
|
|
<u-line color="#99999B" length="148rpx" style="transform: translateY(-80rpx);"></u-line>
|
|
<view class="steps-li" @click="step=2">
|
|
<view class="num" :class="{act:step>1}">
|
|
2
|
|
</view>
|
|
<view class="" style="font-size: 28rpx;" :style="{color:step>1?'#35BD3E':''}">
|
|
资质认证
|
|
</view>
|
|
</view>
|
|
<u-line color="#99999B" length="148rpx" style="transform: translateY(-80rpx);"></u-line>
|
|
<view class="steps-li" @click="step=3">
|
|
<view class="num" :class="{act:step>2}">
|
|
3
|
|
</view>
|
|
<view class="" style="font-size: 28rpx;" :style="{color:step>2?'#35BD3E':''}">
|
|
入驻审核
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
<view class="" style="display: flex;align-items: center;margin-top: 30rpx;">
|
|
<u--image :showLoading="true" src="/static/images/YDT.png" style="margin: 0 auto;" width="670rpx"
|
|
height="202rpx"></u--image>
|
|
</view>
|
|
<u-transition :show="step==1" mode="slide-left">
|
|
<view class="step1" v-if='step==1'>
|
|
<view class="card">
|
|
<view class="card-tit">
|
|
店铺名称
|
|
</view>
|
|
<u--input placeholder="店铺名称" :maxlength='20' style="height: 100rpx;" border="surround"
|
|
v-model="formData.mer_name">
|
|
</u--input>
|
|
</view>
|
|
<view class="card">
|
|
<view class="card-tit">
|
|
店铺分类
|
|
</view>
|
|
<view class="card-cont">
|
|
<view class="card-cont-li" @click="showMerchantCategoryPicker=true">
|
|
{{formData.merchant_category_name|| '请选择店铺分类'}}
|
|
<u-icon name="arrow-right" color="#444444" size="15"></u-icon>
|
|
</view>
|
|
<u-line style="margin: 28rpx 0;"></u-line>
|
|
<view class="card-cont-li" @click="showStoreType=true">
|
|
{{formData.mer_storeType||'请选择店铺类型'}}
|
|
<u-icon name="arrow-right" color="#444444" size="15"></u-icon>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</u-transition>
|
|
|
|
<u-transition :show="step==2" :mode="step==1?'slide-right':'slide-right'">
|
|
<view class="step2" v-if='step==2'>
|
|
<view class="card">
|
|
<view class="card-tit">
|
|
公司性质
|
|
</view>
|
|
<view class="card-cont">
|
|
<view class="card-cont-li" @click="showCompanyType=true">
|
|
{{formData.is_company?'对公户':'个体户'}}
|
|
<u-icon name="arrow-right" color="#444444" size="15"></u-icon>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="card">
|
|
<view class="card-tit">
|
|
请上传营业执照
|
|
</view>
|
|
<view class="upload">
|
|
<view class='uploadimg' @click="handleChooseImage(1)">
|
|
<u--image v-if="formData.images[0]" :showLoading="true" :src="formData.images[0]"
|
|
width="140rpx" height="140rpx"></u--image>
|
|
<u-icon v-if='!formData.images[0]' name="plus" color="#777777"></u-icon>
|
|
<view v-if='!formData.images[0]' style="color: #777777;font-size: 20rpx;">
|
|
上传图片
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="card">
|
|
<view class="card-tit">
|
|
店铺资质
|
|
</view>
|
|
<view class="card-cont">
|
|
<view class="card-cont-li">
|
|
<view class="ellipsis" style="display: flex;align-items: center;">
|
|
详细地址 <u--input style="margin-left: 40rpx;width: 500rpx;" border="none"
|
|
v-model="formData.address">
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
<u-line style="margin: 28rpx 0;"></u-line>
|
|
<view class="card-cont-li">
|
|
<view class="ellipsis" style="display: flex;align-items: center;">
|
|
公司名称 <u--input style="margin-left: 40rpx;width: 500rpx;" border="none"
|
|
v-model="formData.company_name">
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
<u-line style="margin: 28rpx 0;"></u-line>
|
|
<view class="card-cont-li">
|
|
<view class="ellipsis" style="display: flex;align-items: center;">
|
|
法人名称 <u--input style="margin-left: 40rpx;width: 500rpx;" border="none"
|
|
v-model="formData.name">
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
<u-line style="margin: 28rpx 0;"></u-line>
|
|
<view class="card-cont-li">
|
|
<view class="ellipsis" style="display: flex;align-items: center;">
|
|
社会信用代码 <u--input @blur='creditCodeInput'
|
|
style="margin-left: 40rpx;width: 500rpx;" border="none"
|
|
v-model="formData.social_credit_code">
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="card">
|
|
<view class="card-tit">
|
|
其他相关资质证明
|
|
</view>
|
|
<view class="upload" style="display: flex;flex-wrap: wrap;">
|
|
<u--image v-for="(item,index) in (formData.images.filter((i,k)=>k>0 ))"
|
|
style="margin-right: 20rpx;margin-bottom: 20rpx;" :showLoading="true" :src="item"
|
|
width="140rpx" height="140rpx"></u--image>
|
|
<view class='uploadimg' @click="handleChooseImage(0)">
|
|
<u-icon name="plus" color="#777777"></u-icon>
|
|
<view class="" style="color: #777777;font-size: 20rpx;">
|
|
上传图片
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="card">
|
|
<view class="card-tit">
|
|
电话认证
|
|
</view>
|
|
<view class="card-cont">
|
|
<view class="card-cont-li">
|
|
联系电话 {{formData.phone}}
|
|
</view>
|
|
<u-line style="margin: 28rpx 0;"></u-line>
|
|
<view class="card-cont-li">
|
|
<view class="" style="flex: 4;display: flex;align-items: center;">
|
|
验证码 <u--input style="margin-left: 40rpx;" border="none" v-model="formData.code">
|
|
</u--input>
|
|
</view>
|
|
<view class="" style="flex: 1;">
|
|
<u-button @click="handleVerify" type="success" shape="circle" :plain="true"
|
|
:text="text"></u-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</u-transition>
|
|
|
|
<u-transition :show="step==3" mode="slide-right">
|
|
<view class="step3" v-if='step==3'>
|
|
<view style="font-size: 36rpx;margin: 50rpx 0 34rpx 0;text-align:center">
|
|
店铺等待审核
|
|
</view>
|
|
<view style="font-size: 32rpx;font-family: PFR;margin-bottom: 40rpx;text-align:center">
|
|
店铺已提交入驻申请
|
|
</view>
|
|
<view class="step3-card">
|
|
<view class="" style="display: flex;justify-content: space-between;font-size: 32rpx;">
|
|
<text>{{formData.mer_name}}</text>
|
|
<text style="font-family: PFR;" v-if='formData.status==0'>等待审核</text>
|
|
<text style="font-family: PFR;color: #20B128;" v-if='formData.status==1'>审核通过</text>
|
|
<text style="font-family: PFR;color: #FC452F;" v-if='formData.status==2'>审核失败</text>
|
|
</view>
|
|
<view class="" style="color: #777;font-size: 24rpx;margin-top: 28rpx;">
|
|
提交时间:{{formData.create_time}}
|
|
</view>
|
|
<u-line color="#ECECEC" style="margin: 36rpx 0;" v-if='formData.status !=0'></u-line>
|
|
<view v-if='formData.status==2' class=""
|
|
style="color: #777;font-size: 24rpx;margin-top: 28rpx;margin-bottom: 36rpx;">
|
|
备注:{{formData.fail_msg}}
|
|
</view>
|
|
<u-button v-if='formData.status==2' @click="step=1" style="color: #FC452F;" color="#F8E9E7"
|
|
shape="circle" type='error' text="重新申请"></u-button>
|
|
<view v-if='formData.status==1' class=""
|
|
style="color: #777;font-size: 24rpx;margin-top: 28rpx;margin-bottom: 36rpx;">
|
|
可以登录我们的工作台,把您的商品推向市场了
|
|
</view>
|
|
<u-button v-if='formData.status==1' @click="openApplet" color="#3ABD40" shape="circle"
|
|
text="立即发布产品"></u-button>
|
|
</view>
|
|
</view>
|
|
</u-transition>
|
|
<view class="agreen" v-if='step==1'>
|
|
<u-checkbox-group activeColor="#20B128" v-model="checkboxValue1" placement="column">
|
|
<u-checkbox :customStyle="{marginBottom: '8px'}" label="已阅读并同意" name="1">
|
|
</u-checkbox>
|
|
</u-checkbox-group>
|
|
<text style="color: #35BD3E;" @click="getConfig">《入驻协议》</text>
|
|
</view>
|
|
<view class="submit-btn" v-if='step!=3'>
|
|
<u-button text="添加店铺" @click="submit" shape='circle'
|
|
color=" linear-gradient( 132deg, #38BE41 0%, #20B128 100%)"></u-button>
|
|
</view>
|
|
|
|
<u-picker cancelColor='#3ABE40' confirmColor='#3ABE40' @cancel='showMerchantCategoryPicker=false'
|
|
@confirm='confirmCate' :show="showMerchantCategoryPicker" keyName="category_name"
|
|
:columns="MerchantCategoryColumn"></u-picker>
|
|
<u-picker cancelColor='#3ABE40' confirmColor='#3ABE40' @cancel='showStoreType=false'
|
|
@confirm='confirmType' :show="showStoreType" keyName="type_name" :columns="StoreTypeColumn">
|
|
</u-picker>
|
|
<u-picker cancelColor='#3ABE40' confirmColor='#3ABE40' @cancel='showCompanyType=false'
|
|
@confirm='confirmCompany' :show="showCompanyType" :columns="companyColumn" keyName='label'>
|
|
</u-picker>
|
|
|
|
<view class="settlementAgreement" v-if="showProtocol">
|
|
<view class="setAgCount" style="width: 656rpx;height: 458px;">
|
|
<view class="close" @click="showProtocol = false">
|
|
<u-icon name="close-circle-fill" color="#B4B1B4" size="24"></u-icon>
|
|
</view>
|
|
<div class="title">'商户入驻协议'</div>
|
|
<view class="content">
|
|
<jyf-parser :html="protocol" ref="article" :tag-style="tagStyle"></jyf-parser>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<Verify @success="success" :captchaType="'blockPuzzle'" :imgSize="{ width: '330px', height: '155px' }"
|
|
ref="verify">
|
|
</Verify>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
// #ifdef APP
|
|
import uniMP from '@/utils/uniMP.js';
|
|
// #endif
|
|
import {
|
|
configMap
|
|
} from "@/utils";
|
|
import {
|
|
mapGetters
|
|
} from "vuex";
|
|
import {
|
|
Toast
|
|
} from "../../../libs/uniApi";
|
|
import {
|
|
create,
|
|
verify,
|
|
merchantLicenseIdentify,
|
|
merClassifly,
|
|
getStoreTypeApi,
|
|
getIntention,
|
|
getGoodsDetails,
|
|
getUnimpInfo,
|
|
agreeiness
|
|
} from '@/api/store.js';
|
|
import Verify from '@/components/verify/verify.vue';
|
|
export default {
|
|
components: {
|
|
Verify
|
|
},
|
|
// computed: {
|
|
// stroeLength() {
|
|
// return 12
|
|
// }
|
|
// },
|
|
data() {
|
|
return {
|
|
isshow: false,
|
|
tagStyle: {
|
|
img: 'width:100%;display:block;'
|
|
},
|
|
stroeLength: 0,
|
|
disabled: false,
|
|
checkboxValue1: ['1'],
|
|
protocol: this.sys_intention_agree,
|
|
step: 1,
|
|
showProtocol: false,
|
|
showMerchantCategoryPicker: false,
|
|
showCompanyType: false,
|
|
showStoreType: false,
|
|
MerchantCategoryColumn: [],
|
|
StoreTypeColumn: [
|
|
|
|
],
|
|
companyColumn: [
|
|
[{
|
|
label: '对公户',
|
|
is_company: 1
|
|
}, {
|
|
label: '个体户',
|
|
is_company: 0
|
|
}]
|
|
],
|
|
text: '获取验证码',
|
|
detail: {},
|
|
uniMpInfo: "",
|
|
num: 10,
|
|
formData: {
|
|
"phone": "",
|
|
"mer_name": "",
|
|
"name": "",
|
|
"code": "",
|
|
"company_name": "",
|
|
"address": "",
|
|
"invitation_code": "",
|
|
"social_credit_code": "",
|
|
"merchant_category_id": 0,
|
|
"merchant_category_name": "",
|
|
"is_company": 1,
|
|
"mer_type_id": 0,
|
|
"mer_storeType": "",
|
|
province_name: "",
|
|
mer_intention_id: "",
|
|
"city_name": "",
|
|
"area_name": "",
|
|
"street_name": "",
|
|
"village_name": '',
|
|
"is_nmsc": 0,
|
|
"images": [],
|
|
step: 1
|
|
|
|
}
|
|
}
|
|
},
|
|
|
|
computed: configMap({
|
|
sys_intention_agree: ''
|
|
},
|
|
mapGetters(['isLogin', 'viewColor', 'keyColor'])),
|
|
methods: {
|
|
creditCodeInput() {
|
|
this.formData.social_credit_code = this.formData.social_credit_code.replace(/[\u4E00-\u9FA5]/g, '');
|
|
},
|
|
countDown() {
|
|
let {
|
|
num
|
|
} = this;
|
|
num = num > 0 ? num - 1 : "0";
|
|
setTimeout(() => {
|
|
this.num = num;
|
|
if (num == '0') {
|
|
return
|
|
}
|
|
if (this.isshow == false && this.num > 0) {
|
|
this.num = 10
|
|
return
|
|
}
|
|
this.countDown();
|
|
}, 1000);
|
|
},
|
|
|
|
back() {
|
|
uni.navigateBack()
|
|
},
|
|
openApplet() {
|
|
this.uniMpInfo.showToast = true
|
|
uniMP.loadAppletMP(this.uniMpInfo)
|
|
},
|
|
splitAddress(str) {
|
|
var reg = /.+?(省|市|自治区|自治州|县|区)/g; // 省市区的正则
|
|
let list = str.match(reg)
|
|
if (!list[0].includes("省")) {
|
|
list.unshift('')
|
|
}
|
|
this.formData.province_name = list[0]
|
|
this.formData.city_name = list[1]
|
|
this.formData.area_name = list[2]
|
|
|
|
},
|
|
confirmCate(e) {
|
|
this.formData.merchant_category_name = e.value[0].category_name
|
|
this.formData.merchant_category_id = e.value[0].merchant_category_id
|
|
this.showMerchantCategoryPicker = false
|
|
},
|
|
confirmType(e) {
|
|
this.formData.mer_storeType = e.value[0].type_name
|
|
this.formData.mer_type_id = e.value[0].mer_type_id
|
|
this.showStoreType = false
|
|
},
|
|
confirmCompany(e) {
|
|
this.formData.is_company = e.value[0].is_company
|
|
this.showCompanyType = false
|
|
},
|
|
getConfig() {
|
|
this.showProtocol = true;
|
|
// 获取配置
|
|
this.protocol = this.sys_intention_agree;
|
|
},
|
|
generateRandomNumbers(count, min, max) {
|
|
const randomNumbers = [];
|
|
for (let i = 0; i < count; i++) {
|
|
const number = Math.floor(Math.random() * (max - min + 1) + min);
|
|
randomNumbers.push(number);
|
|
}
|
|
return randomNumbers;
|
|
},
|
|
// 选择图片
|
|
handleChooseImage(type = 0) {
|
|
let that = this;
|
|
that.$util.uploadImageOne({
|
|
count: 1,
|
|
url: 'upload/image'
|
|
}, function(res) {
|
|
type ? that.getInfoByImg(res.data.path) :
|
|
that.formData.images.push(res.data.path)
|
|
});
|
|
},
|
|
// 识别图片
|
|
getInfoByImg(img) {
|
|
let that = this
|
|
this.formData.images = [img]
|
|
uni.showLoading({
|
|
title: '识别中'
|
|
})
|
|
merchantLicenseIdentify({
|
|
image: img
|
|
}).then(res => {
|
|
uni.hideLoading();
|
|
if (res.status == 200) {
|
|
that.formData.address = res.data.address;
|
|
that.formData.name = res.data.legal_person;
|
|
that.formData.social_credit_code = res.data.register_number;
|
|
that.formData.company_name = res.data.name;
|
|
} else {
|
|
that.$util.Tips({
|
|
title: "识别失败!"
|
|
})
|
|
}
|
|
}).catch((e) => {
|
|
uni.hideLoading();
|
|
that.$util.Tips({
|
|
title: "识别失败"
|
|
})
|
|
})
|
|
},
|
|
handleVerify() {
|
|
this.$refs.verify.show();
|
|
},
|
|
success(data) {
|
|
this.$refs.verify.hide();
|
|
this.code(data);
|
|
},
|
|
async code(data) {
|
|
let that = this;
|
|
await verify({
|
|
phone: that.formData.phone,
|
|
type: 'intention',
|
|
captchaType: 'blockPuzzle',
|
|
captchaVerification: data.captchaVerification
|
|
}).then(res => {
|
|
that.$util.Tips({
|
|
title: res.msg
|
|
});
|
|
that.sendCode();
|
|
}).catch(res => {
|
|
that.$util.Tips({
|
|
title: res
|
|
});
|
|
});
|
|
},
|
|
sendCode() {
|
|
if (this.disabled) return;
|
|
this.disabled = true;
|
|
let n = 60;
|
|
this.text = "剩余 " + n + "s";
|
|
const run = setInterval(() => {
|
|
n = n - 1;
|
|
if (n < 0) {
|
|
clearInterval(run);
|
|
}
|
|
this.text = "剩余 " + n + "s";
|
|
if (this.text < "剩余 " + 0 + "s") {
|
|
this.disabled = false;
|
|
this.text = "重新获取";
|
|
}
|
|
}, 1000);
|
|
},
|
|
shoplist(val) {
|
|
agreeiness({
|
|
type: val
|
|
}).then(res => {
|
|
this.detail = res.data
|
|
})
|
|
},
|
|
submit() {
|
|
if (!this.checkboxValue1[0]) {
|
|
return Toast("请勾选用户协议")
|
|
}
|
|
this.formData.step = this.step
|
|
if (this.step == 2) {
|
|
this.isshow = true
|
|
this.splitAddress(this.formData.address)
|
|
this.countDown()
|
|
} else {
|
|
this.agree()
|
|
}
|
|
},
|
|
agree() {
|
|
this.isshow = false
|
|
create(this.formData).then(res => {
|
|
console.log(res.data.mer_intention_id, 'res')
|
|
this.formData.mer_intention_id = res.data.mer_intention_id
|
|
this.formData.status = 0
|
|
if (this.step == 2) {
|
|
getIntention(this.$store.state.app.userInfo.uid).then(res => {
|
|
if (Object.keys(res.data).length == 0) return
|
|
this.formData = res.data
|
|
this.step = this.formData.step
|
|
this.formData.phone = this.$store.state.app.userInfo.account
|
|
})
|
|
}
|
|
this.step++
|
|
}).catch(err => {
|
|
console.log(err, 'err')
|
|
Toast(err)
|
|
})
|
|
},
|
|
jumpToList() {
|
|
uni.navigateTo({
|
|
url: "/pages/store/applicationRecord/index"
|
|
})
|
|
},
|
|
},
|
|
onPullDownRefresh: function() {
|
|
getIntention(this.$store.state.app.userInfo.uid).then(res => {
|
|
if (Object.keys(res.data).length == 0) return
|
|
this.formData = res.data
|
|
this.step = this.formData.step
|
|
this.formData.phone = this.$store.state.app.userInfo.account
|
|
if (this.formData.status == 1) {
|
|
getUnimpInfo().then(res => {
|
|
this.uniMpInfo = res.data
|
|
})
|
|
}
|
|
})
|
|
uni.stopPullDownRefresh()
|
|
},
|
|
onLoad(option) {
|
|
this.shoplist('mer_services_agree')
|
|
this.formData.phone = this.$store.state.app.userInfo.account
|
|
merClassifly().then(res => {
|
|
this.MerchantCategoryColumn = [res.data]
|
|
})
|
|
getStoreTypeApi().then(res => {
|
|
this.StoreTypeColumn = [res.data]
|
|
})
|
|
getIntention(this.$store.state.app.uid || this.$store.state.app.userInfo.uid).then(res => {
|
|
if (Object.keys(res.data).length == 0) return
|
|
this.formData = res.data
|
|
this.step = this.formData.step
|
|
this.formData.phone = this.$store.state.app.userInfo.account
|
|
if (option.type == 1) {
|
|
this.step = 1
|
|
}
|
|
if (this.formData.status == 1) {
|
|
getUnimpInfo().then(res => {
|
|
this.uniMpInfo = res.data
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
min-height: 100vh;
|
|
background-color: #fff;
|
|
padding: 40rpx;
|
|
box-sizing: border-box;
|
|
font-family: PF;
|
|
padding-bottom: 200rpx;
|
|
|
|
.heder-tips {
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #20B128;
|
|
text-align: center;
|
|
margin-bottom: 50rpx;
|
|
|
|
}
|
|
|
|
.steps {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
.num {
|
|
width: 52rpx;
|
|
height: 52rpx;
|
|
border-radius: 52rpx;
|
|
background-color: #F3F3F3;
|
|
text-align: center;
|
|
line-height: 52rpx;
|
|
margin: 0 auto;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.act {
|
|
background-color: #20B128;
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.card {
|
|
.card-tit {
|
|
font-size: 32rpx;
|
|
margin: 40rpx 0 30rpx 0;
|
|
}
|
|
|
|
.card-cont {
|
|
padding: 30rpx;
|
|
border: 1px solid #F3F3F3;
|
|
border-radius: 16rpx;
|
|
font-family: PFR;
|
|
// color: #777777;
|
|
|
|
.card-cont-li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.ellipsis {
|
|
// background-color: red;
|
|
width: 600rpx;
|
|
white-space: nowrap;
|
|
/* 防止文本换行 */
|
|
overflow: hidden;
|
|
/* 隐藏超出容器的文本 */
|
|
text-overflow: ellipsis;
|
|
/* 使用省略号来表示被截断的文本 */
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.agreen {
|
|
display: flex;
|
|
margin-top: 60rpx;
|
|
}
|
|
}
|
|
|
|
|
|
.uploadimg {
|
|
width: 140rpx;
|
|
height: 140rpx;
|
|
border-radius: 16rpx;
|
|
border: 2rpx solid #F1F1F1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
padding: 20rpx 0;
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.step3-card {
|
|
width: 670rpx;
|
|
background: #FBFBFB;
|
|
box-shadow: 0rpx 6rpx 12rpx 2rpx rgba(0, 0, 0, 0.16);
|
|
border-radius: 16rpx 16rpx 16rpx 16rpx;
|
|
padding: 50rpx;
|
|
}
|
|
|
|
.submit-btn {
|
|
position: fixed;
|
|
bottom: 50rpx;
|
|
width: 670rpx;
|
|
}
|
|
|
|
.settlementAgreement {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 12;
|
|
background: rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
.settlementAgreement .setAgCount {
|
|
background: #fff;
|
|
width: 694rpx;
|
|
// height: 458px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
padding: 28rpx;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
-moz-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
overflow: hidden;
|
|
|
|
.content {
|
|
height: 900rpx;
|
|
overflow-y: scroll;
|
|
|
|
/deep/ p {
|
|
font-size: 13px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
/deep/ img {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .close {
|
|
position: absolute;
|
|
top: 15rpx;
|
|
right: 15rpx;
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .icon {
|
|
font-size: 42rpx;
|
|
color: #b4b1b4;
|
|
position: absolute;
|
|
top: 15rpx;
|
|
right: 15rpx;
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .title {
|
|
color: #333;
|
|
font-size: 32rpx;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .content {
|
|
color: #333;
|
|
font-size: 26rpx;
|
|
line-height: 22px;
|
|
text-align: justify;
|
|
text-justify: distribute-all-lines;
|
|
overflow-y: scroll;
|
|
padding-bottom: 20rpx;
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .contenta {
|
|
color: #333;
|
|
font-size: 26rpx;
|
|
line-height: 22px;
|
|
text-align: justify;
|
|
text-justify: distribute-all-lines;
|
|
height: 85%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.code {
|
|
position: absolute;
|
|
width: 93px;
|
|
line-height: 27px;
|
|
border: 1px solid var(--view-theme);
|
|
border-radius: 15px;
|
|
color: var(--view-theme);
|
|
text-align: center;
|
|
bottom: 8px;
|
|
right: 0;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.code.on {
|
|
background-color: #bbb;
|
|
color: #fff;
|
|
border-color: #bbb;
|
|
height: 50rpx;
|
|
}
|
|
|
|
.bar {
|
|
position: fixed;
|
|
width: 750rpx;
|
|
box-sizing: border-box;
|
|
background-color: white;
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
.settlementAgreement {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 12;
|
|
background: rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
.settlementAgreement .setAgCount {
|
|
background: #fff;
|
|
width: 694rpx;
|
|
// height: 458px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
padding: 28rpx;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
-moz-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
overflow: hidden;
|
|
|
|
.content {
|
|
height: 900rpx;
|
|
overflow-y: scroll;
|
|
|
|
/deep/ p {
|
|
font-size: 13px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
/deep/ img {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.upload {
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.acea-row.row-middle {
|
|
-webkit-box-align: center;
|
|
-moz-box-align: center;
|
|
-o-box-align: center;
|
|
-ms-flex-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
padding-left: 2px;
|
|
}
|
|
|
|
.acea-row.row-column {
|
|
-webkit-box-orient: vertical;
|
|
-moz-box-orient: vertical;
|
|
-o-box-orient: vertical;
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.acea-row.row-center-wrapper {
|
|
-webkit-box-align: center;
|
|
-moz-box-align: center;
|
|
-o-box-align: center;
|
|
-ms-flex-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
-moz-box-pack: center;
|
|
-o-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.merchantsSettled .list .item .pictrue {
|
|
width: 130rpx;
|
|
height: 130rpx;
|
|
margin: 24rpx 22rpx 0 0;
|
|
position: relative;
|
|
font-size: 11px;
|
|
color: #bbb;
|
|
|
|
&:nth-child(4n) {
|
|
margin-right: 0;
|
|
}
|
|
|
|
&:nth-last-child(1) {
|
|
border: 0.5px solid #ddd;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
uni-image,
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 1px;
|
|
|
|
img {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.icon-guanbi1 {
|
|
font-size: 33rpx;
|
|
position: absolute;
|
|
top: -10px;
|
|
right: -10px;
|
|
}
|
|
}
|
|
|
|
.uni-list-cell-db {
|
|
position: relative;
|
|
}
|
|
|
|
.wenhao {
|
|
width: 34rpx;
|
|
height: 34rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 28rpx;
|
|
border-radius: 50%;
|
|
background: #E3E3E3;
|
|
color: #ffffff !important;
|
|
margin-left: 4rpx;
|
|
position: absolute;
|
|
left: 122rpx;
|
|
}
|
|
|
|
.merchantsSettled .list .item .imageCode {
|
|
position: absolute;
|
|
top: 7px;
|
|
right: 0;
|
|
}
|
|
|
|
.merchantsSettled .list .item .icon {
|
|
font-size: 40rpx;
|
|
color: #b4b1b4;
|
|
}
|
|
|
|
.merchantsSettled .list .item input {
|
|
width: 400rpx;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.merchantsSettled .list .item .placeholder {
|
|
color: #b2b2b2;
|
|
}
|
|
|
|
.merchantsSettled .default {
|
|
padding: 0 30rpx;
|
|
height: 90rpx;
|
|
background-color: #fff;
|
|
margin-top: 23rpx;
|
|
}
|
|
|
|
.merchantsSettled .default checkbox {
|
|
margin-right: 15rpx;
|
|
}
|
|
|
|
.merchantsSettled .acea-row uni-image {
|
|
width: 20px;
|
|
height: 20px;
|
|
display: block;
|
|
}
|
|
|
|
.merchantsSettled .list .item .codeIput {
|
|
width: 125px;
|
|
}
|
|
|
|
.uni-input-input {
|
|
display: block;
|
|
height: 100%;
|
|
background: none;
|
|
color: inherit;
|
|
opacity: 1;
|
|
-webkit-text-fill-color: currentcolor;
|
|
font: inherit;
|
|
line-height: inherit;
|
|
letter-spacing: inherit;
|
|
text-align: inherit;
|
|
text-indent: inherit;
|
|
text-transform: inherit;
|
|
text-shadow: inherit;
|
|
}
|
|
|
|
.merchantsSettled .list .item .code {
|
|
position: absolute;
|
|
width: 93px;
|
|
line-height: 27px;
|
|
border: 1px solid var(--view-theme);
|
|
border-radius: 15px;
|
|
color: var(--view-theme);
|
|
text-align: center;
|
|
bottom: 8px;
|
|
right: 0;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.merchantsSettled .list .item .code.on {
|
|
background-color: #bbb;
|
|
color: #fff;
|
|
border-color: #bbb;
|
|
}
|
|
|
|
.merchantsSettled .submitBtn {
|
|
width: 588rpx;
|
|
margin: 0 auto;
|
|
height: 86rpx;
|
|
border-radius: 25px;
|
|
text-align: center;
|
|
line-height: 86rpx;
|
|
font-size: 15px;
|
|
color: #fff;
|
|
background: #E3E3E3;
|
|
margin-top: 25px;
|
|
// pointer-events: none;
|
|
}
|
|
|
|
.merchantsSettled .submitBtn.on {
|
|
background: var(--view-theme);
|
|
pointer-events: all;
|
|
}
|
|
|
|
uni-checkbox-group,
|
|
.settleAgree {
|
|
display: inline-block;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
uni-checkbox-group {
|
|
color: #b2b2b2;
|
|
}
|
|
|
|
.settleAgree {
|
|
color: var(--view-theme);
|
|
position: relative;
|
|
top: 2px;
|
|
left: 8px;
|
|
}
|
|
|
|
.merchantsSettled uni-checkbox .uni-checkbox-wrapper {
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
border: 2rpx solid #C3C3C3;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.settlementAgreement {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 12;
|
|
background: rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
.settlementAgreement .setAgCount {
|
|
background: #fff;
|
|
width: 694rpx;
|
|
// height: 458px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
padding: 28rpx;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
-moz-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
overflow: hidden;
|
|
|
|
.content {
|
|
height: 900rpx;
|
|
overflow-y: scroll;
|
|
|
|
/deep/ p {
|
|
font-size: 13px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
/deep/ img {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .close {
|
|
position: absolute;
|
|
top: 15rpx;
|
|
right: 15rpx;
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .icon {
|
|
font-size: 42rpx;
|
|
color: #b4b1b4;
|
|
position: absolute;
|
|
top: 15rpx;
|
|
right: 15rpx;
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .title {
|
|
color: #333;
|
|
font-size: 32rpx;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .content {
|
|
color: #333;
|
|
font-size: 26rpx;
|
|
line-height: 22px;
|
|
text-align: justify;
|
|
text-justify: distribute-all-lines;
|
|
overflow-y: scroll;
|
|
padding-bottom: 20rpx;
|
|
}
|
|
|
|
.settlementAgreement .setAgCount .contenta {
|
|
color: #333;
|
|
font-size: 26rpx;
|
|
line-height: 22px;
|
|
text-align: justify;
|
|
text-justify: distribute-all-lines;
|
|
height: 85%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.setAgCountbtn {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
position: relative;
|
|
|
|
.setAgCountbtna {
|
|
margin-top: 40rpx;
|
|
// width: 200rpx;
|
|
height: 74rpx;
|
|
text-align: center;
|
|
line-height: 74rpx;
|
|
border-radius: 46rpx 46rpx;
|
|
opacity: 1;
|
|
border: 2rpx solid #B3B3B3;
|
|
font-size: 25rpx;
|
|
font-family: PingFang SC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #737373;
|
|
|
|
}
|
|
|
|
.setAgCountbtnb {
|
|
margin-top: 40rpx;
|
|
padding-left: 20rpx;
|
|
padding-right: 20rpx;
|
|
height: 74rpx;
|
|
text-align: center;
|
|
line-height: 74rpx;
|
|
background: #cecece;
|
|
border-radius: 46rpx 46rpx;
|
|
opacity: 1;
|
|
|
|
font-size: 25rpx;
|
|
font-family: PingFang SC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.setAgCountbtnc {
|
|
margin-top: 40rpx;
|
|
height: 74rpx;
|
|
text-align: center;
|
|
line-height: 74rpx;
|
|
background: linear-gradient(270deg, #3da834 0%, #72BE53 100%);
|
|
border-radius: 46rpx 46rpx;
|
|
opacity: 1;
|
|
font-size: 25rpx;
|
|
font-family: PingFang SC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.border {
|
|
position: absolute;
|
|
top: 0;
|
|
left: -28rpx;
|
|
width: 100vw;
|
|
height: 100%;
|
|
border-radius: 40rpx 40rpx 0 0;
|
|
box-shadow: 0px -5px 5px -2px rgba(0, 0, 0, 0.2);
|
|
/* 在上边框添加阴影 */
|
|
}
|
|
|
|
.btn {
|
|
width: 694rpx;
|
|
font-weight: bold;
|
|
font-size: 34rpx;
|
|
}
|
|
}
|
|
|
|
.settledSuccessMain {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #fff;
|
|
}
|
|
|
|
.settledSuccessful {
|
|
flex: 1;
|
|
width: 100%;
|
|
padding: 0 56px;
|
|
height: auto;
|
|
background: #fff;
|
|
text-align: center;
|
|
}
|
|
|
|
.settledSuccessful .image {
|
|
width: 189px;
|
|
height: 157px;
|
|
margin-top: 66px;
|
|
}
|
|
|
|
.settledSuccessful .title {
|
|
color: #333333;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.settledSuccessful .info {
|
|
color: #A0A0A0;
|
|
font-size: 13px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.settledSuccessful .goHome {
|
|
margin: 60px auto 0;
|
|
line-height: 43px;
|
|
color: #282828;
|
|
font-size: 15px;
|
|
border: 1px solid #B4B4B4;
|
|
border-radius: 60px;
|
|
}
|
|
|
|
/deep/ uni-checkbox .uni-checkbox-input {
|
|
width: 15px;
|
|
height: 15px;
|
|
position: relative;
|
|
}
|
|
|
|
/deep/ uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked:before {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.loadingicon {
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.icon-xiangyou {
|
|
font-size: 22rpx;
|
|
}
|
|
|
|
// #ifdef MP
|
|
checkbox-group {
|
|
display: inline-block;
|
|
}
|
|
|
|
// #endif
|
|
.setAgCount {
|
|
/deep/ table {
|
|
border: 1px solid #DDD;
|
|
border-bottom: none;
|
|
border-right: none;
|
|
}
|
|
|
|
/deep/ td,
|
|
th {
|
|
padding: 5rpx 10rpx;
|
|
border-bottom: 1px solid #DDD;
|
|
border-right: 1px solid #DDD;
|
|
}
|
|
}
|
|
|
|
.merchantsSettled .list .items {
|
|
padding: 50rpx 0 20rpx;
|
|
border-bottom: 1px solid #eee;
|
|
position: relative;
|
|
margin: 0 20px;
|
|
|
|
.uni-list-area {
|
|
height: 50px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
.uni-list-stree {
|
|
width: 30%;
|
|
margin-left: 10px;
|
|
|
|
.mer-area {
|
|
width: 100%;
|
|
border: 1px solid #C3C3C3;
|
|
|
|
picker {
|
|
display: flex;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
font-size: 30rpx;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
</style> |