| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033 |
- <template>
- <view v-if="status == -1 && !inloading" :style="colorStyle">
- <form report-submit='true'>
- <view class='merchantsSettled'>
- <image mode="widthFix" class="merchantBg" src="../static/img.jpg" alt="">
- <!-- <view class="application-record" @click="jumpToList">
- 申请记录
- <text class="iconfont icon-xiangyou"></text>
- </view> -->
- <view class='list'>
- <view class="item">
- <view class="acea-row row-middle">
- <!-- <i class="icon iconfont icon-qiye"></i> -->
- <text class="item-name">{{$t(`代理商名称`)}}</text>
- <input type="text" maxlength="30" :placeholder="$t(`请输入代理商名称`)"
- v-model="merchantData.agent_name" @input="validateBtn"
- placeholder-class='placeholder' />
- </view>
- </view>
- <view class="item">
- <view class="acea-row row-middle">
- <!-- <i class="icon iconfont icon-yonghu3"></i> -->
- <text class="item-name">{{$t(`用户姓名`)}}</text>
- <input type="text" :placeholder="$t(`请输入姓名`)" v-model="merchantData.name"
- @input="validateBtn" placeholder-class='placeholder' />
- </view>
- </view>
- <view class="item">
- <view class="acea-row row-middle">
- <!-- <i class="icon iconfont icon-shoujihao"></i> -->
- <text class="item-name">{{$t(`联系电话`)}}</text>
- <input type="text" :placeholder="$t(`请输入手机号`)" v-model="merchantData.phone"
- @input="validateBtn" placeholder-class='placeholder' />
- </view>
- </view>
- <view class="item rel">
- <view class="acea-row row-middle">
- <!-- <i class="icon iconfont icon-yanzhengma"></i> -->
- <text class="item-name">{{$t(`验证码`)}}</text>
- <input type="text" :placeholder="$t(`填写验证码`)" v-model="merchantData.code"
- @input="validateBtn" class="codeIput" placeholder-class='placeholder' />
- <button class="code" :disabled="disabled" :class="disabled === true ? 'on' : ''"
- @click="code">
- {{ text }}
- </button>
- </view>
- </view>
- <view class="item">
- <view class="acea-row row-middle">
- <!-- <i class="icon iconfont icon-shoujihao"></i> -->
- <text class="item-name">{{$t(`邀请码`)}}</text>
- <input type="text" :placeholder="$t(`请输入代理商邀请码`)" v-model="merchantData.division_invite"
- @input="validateBtn" placeholder-class='placeholder' />
- </view>
- </view>
- <view class="item no-border">
- <view class='acea-row row-middle'>
- <text class="item-title">{{$t(`请上传营业执照及行业相关资质证明图片`)}}</text>
- <text class="item-desc">({{$t(`图片最多可上传10张,图片格式支持JPG、PNG、JPEG`)}})</text>
- <view class="upload">
- <view class='pictrue' v-for="(item,index) in images" :key="index"
- :data-index="index" @click="getPhotoClickIdx">
- <image :src='item'></image>
- <text class='iconfont icon-guanbi1' @click.stop='DelPic(index)'></text>
- </view>
- <view class='pictrue acea-row row-center-wrapper row-column' @click='uploadpic'
- v-if="images.length < 10">
- <text class='iconfont icon-icon25201'></text>
- <view>{{$t(`上传图片`)}}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="item no-border">
- <checkbox-group @change='ChangeIsAgree'>
- <checkbox class="checkbox" :checked="isAgree ? true : false" />{{$t(`已阅读并同意`)}}
- </checkbox-group>
- <button class="settleAgree" @click="getAgentAgreement">《{{$t(`代理商协议`)}}》</button>
- </view>
- <button class='submitBtn' :class="isAgree === true ? 'on':''"
- @click="formSubmit">{{$t(`提交申请`)}}</button>
- </view>
- </view>
- </form>
- <Verify @success="success" :captchaType="'blockPuzzle'" :imgSize="{ width: '330px', height: '155px' }"
- ref="verify"></Verify>
- <view class="settlementAgreement" v-if="showProtocol">
- <view class="setAgCount">
- <i class="icon iconfont icon-cha" @click="showProtocol = false"></i>
- <div class="title">{{$t(`代理商入驻协议`)}}</div>
- <view class="content">
- <jyf-parser :html="protocol" ref="article" :tag-style="tagStyle"></jyf-parser>
- <!-- <view v-html="protocol"></view> -->
- </view>
- </view>
- </view>
- <view class='loadingicon acea-row row-center-wrapper' v-if="loading">
- <text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>
- </view>
- <!-- #ifdef MP -->
- <authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize>
- <!-- #endif -->
- </view>
- <view class="settledSuccessMain" v-else-if='status == 0'>
- <view class="settledSuccessful">
- <image class="image" src="../static/success.png" alt="">
- <view class="title">{{$t(`恭喜,您的资料提交成功!`)}}</view>
- <view class="goHome" hover-class="none" @click="goHome">
- {{$t(`返回首页`)}}
- </view>
- </view>
- </view>
- <view class="settledSuccessMain" v-else-if='status == 1'>
- <view class="settledSuccessful">
- <image class="image" src="../static/success.png" alt="">
- <view class="title">{{$t(`恭喜,您的资料通过审核!`)}}</view>
- <view class="goHome" hover-class="none" @click="goHome">
- {{$t(`返回首页`)}}
- </view>
- </view>
- </view>
- <view class="settledSuccessMain" v-else-if='status == 2'>
- <view class="settledSuccessful">
- <image class="image" src="../static/error.png" alt="">
- <view class="title">{{$t(`您的申请未通过!`)}}</view>
- <view class="info" v-if="refusal_reason">{{refusal_reason}}</view>
- <view class="again" hover-class="none" @click="applyAgain">
- {{$t(`重新申请`)}}
- </view>
- <view class="goHome" hover-class="none" @click="goHome">
- {{$t(`返回首页`)}}
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- toLogin
- } from '@/libs/login.js';
- import {
- create,
- getCodeApi,
- registerVerify,
- getGoodsDetails,
- updateGoodsRecord,
- getAgentAgreement
- } from '@/api/store.js';
- import {
- getCaptcha
- } from "@/api/user";
- import {
- mapGetters
- } from "vuex";
- import parser from "@/components/jyf-parser/jyf-parser";
- // #ifdef MP
- import authorize from '@/components/Authorize';
- // #endif
- import colors from "@/mixins/color";
- import Verify from '@/components/verify/verify.vue';
- import sendVerifyCode from "@/mixins/SendVerifyCode";
- const app = getApp();
- export default {
- components: {
- Verify,
- "jyf-parser": parser,
- // #ifdef MP
- authorize,
- // #endif
- },
- mixins: [sendVerifyCode, colors],
- data() {
- return {
- inloading: true,
- status: -1,
- isAuto: false, //没有授权的不会自动授权
- isShowAuth: false, //是否隐藏授权
- text: this.$t(`获取验证码`),
- codeUrl: "",
- disabled: false,
- isAgree: false,
- showProtocol: false,
- isShowCode: false,
- loading: false,
- merchantData: {
- agent_name: "",
- name: "",
- phone: "",
- classification: '',
- division_invite: ''
- },
- validate: false,
- successful: false,
- keyCode: "",
- codeVal: "",
- protocol: app.globalData.sys_intention_agree,
- timer: "",
- index: 0,
- index1: 0,
- mer_classification: "",
- mer_storeType: '',
- images: [],
- tagStyle: {
- img: 'width:100%;display:block;',
- table: 'width:100%',
- video: 'width:100%'
- },
- mer_i_id: null, // 代理商申请id
- isType: false,
- id: 0,
- refusal_reason: "",
- keyCode: '',
- type: ''
- };
- },
- beforeDestroy() {
- clearTimeout(this.timer)
- },
- computed: mapGetters(['isLogin']),
- onLoad(options) {
- if (this.isLogin) {
- this.$nextTick(function() {
- this.getGoodsDetails()
- })
- } else {
- // #ifdef H5 || APP-PLUS
- toLogin();
- // #endif
- // #ifdef MP
- this.isAuto = true;
- this.$set(this, 'isShowAuth', true)
- // #endif
- }
- if (options.id) {
- this.id = id
- uni.showLoading({
- title: this.$t(`正在加载中`),
- });
- }
- },
- onShow() {
- },
- methods: {
- getAgentAgreement() {
- getAgentAgreement().then(res => {
- this.isType = false;
- this.showProtocol = true;
- this.protocol = res.data.content
- })
- },
- code() {
- let that = this
- if (!that.merchantData.phone) return that.$util.Tips({
- title: that.$t(`请填写手机号码`)
- });
- if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.merchantData.phone)) return that.$util.Tips({
- title: that.$t(`请输入正确的手机号码`)
- });
- this.$refs.verify.show()
- },
- // 获取验证码api
- // code() {
- // let that = this
- // getCodeApi().then(res => {
- // that.keyCode = res.data.key;
- // this.code()
- // }).catch(res => {
- // that.$util.Tips({
- // title: res
- // });
- // });
- // },
- success(data) {
- this.$refs.verify.hide()
- getCodeApi()
- .then(res => {
- this.keyCode = res.data.key;
- this.getCode(data);
- })
- .catch(res => {
- this.$util.Tips({
- title: res
- });
- });
- },
- async getCode(data) {
- let that = this;
- await registerVerify({
- phone: that.merchantData.phone,
- type: that.type,
- key: that.keyCode,
- captchaType: 'blockPuzzle',
- captchaVerification: data.captchaVerification
- })
- .then(res => {
- this.sendCode()
- that.$util.Tips({
- title: res.msg
- });
- })
- .catch(res => {
- that.$util.Tips({
- title: res
- });
- });
- },
- // 获取历史提交数据详情
- getGoodsDetails() {
- getGoodsDetails().then(res => {
- this.status = res.data.status
- let resData = res.data
- if (res.data.status !== -1) {
- let arr = Object.keys(this.merchantData)
- arr.map(item => {
- this.merchantData[item] = resData[item]
- })
- uni.hideLoading();
- }
- if (this.status === 2) {
- this.refusal_reason = resData.refusal_reason
- }
- this.inloading = false
- })
- },
- //获取代理商分类名称
- getCategoryName(id, arr) {
- for (let i = 0; i < arr.length; i++) {
- if (arr[i].merchant_category_id === id) {
- return arr[i]['category_name']
- }
- }
- },
- // 图片预览
- // 获得相册 idx
- getPhotoClickIdx(e) {
- let _this = this;
- let idx = e.currentTarget.dataset.index;
- _this.imgPreview(_this.images, idx);
- },
- // 图片预览
- imgPreview: function(list, idx) {
- // list:图片 url 数组
- if (list && list.length > 0) {
- uni.previewImage({
- current: list[idx], // 传 Number H5端出现不兼容
- urls: list
- });
- }
- },
- // 授权回调
- onLoadFun: function() {
- this.isShowAuth = false;
- },
- // 授权关闭
- authColse: function(e) {
- this.isShowAuth = e
- },
- toggleTab(str) {
- this.$refs[str].show();
- },
- // 首页
- goHome() {
- uni.switchTab({
- url: '/pages/index/index'
- });
- },
- applyAgain() {
- this.status = -1
- },
- /**
- * 上传文件
- *
- */
- uploadpic: function() {
- let that = this;
- that.$util.uploadImageOne('upload/image', (res) => {
- this.images.push(res.data.url);
- that.$set(that, 'images', that.images);
- });
- },
- /**
- * 删除图片
- *
- */
- DelPic: function(index) {
- let that = this,
- pic = this.images[index];
- that.images.splice(index, 1);
- that.$set(that, 'images', that.images);
- },
- // 获取验证码
- // async code() {
- // let that = this;
- // if (!that.merchantData.phone) return that.$util.Tips({
- // title: that.$t(`请输入手机号`)
- // });
- // if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.merchantData.phone)) return that.$util.Tips({
- // title: that.$t(`请输入正确的手机号码`)
- // });
- // await registerVerify({
- // phone: that.merchantData.phone,
- // key: that.keyCode,
- // }).then(res => {
- // that.$util.Tips({
- // title: res.msg
- // });
- // that.sendCode();
- // }).catch(err => {
- // return that.$util.Tips({
- // title: err
- // })
- // })
- // },
- getcaptcha() {
- let that = this
- getCaptcha().then(data => {
- that.codeUrl = data.data.captcha; //图片路径
- that.codeVal = data.data.code; //图片验证码
- that.codeKey = data.data.key //图片验证码key
- })
- that.isShowCode = true;
- },
- 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 = this.$t(`重新获取`);
- }
- }, 1000);
- },
- onConfirm(val) {
- this.region = val.checkArr[0] + '-' + val.checkArr[1] + '-' + val.checkArr[2];
- },
- ChangeIsAgree(e) {
- this.isAgree = !this.isAgree;
- this.validateBtn()
- },
- formSubmit: function(e) {
- let that = this;
- if (that.validateForm() && that.validate) {
- let requestData = {
- uid: this.$store.state.app.uid,
- phone: that.merchantData.phone,
- agent_name: that.merchantData.agent_name,
- name: that.merchantData.name,
- code: that.merchantData.code,
- division_invite: that.merchantData.division_invite,
- images: that.images,
- id: this.id
- }
- create(requestData).then(data => {
- if (data.status == 200) {
- this.timer = setTimeout(() => {
- that.getGoodsDetails()
- }, 1000)
- }
- }).catch(res => {
- that.$util.Tips({
- title: res
- });
- })
- }
- },
- validateBtn: function() {
- let that = this,
- value = that.merchantData;
- if (value.agent_name && value.name && value.phone && /^1(3|4|5|7|8|9|6)\d{9}$/i.test(value
- .phone) &&
- value.code && that.isAgree && value.classification) {
- if (!that.isShowCode) {
- that.validate = true;
- } else {
- if (that.codeVal) {
- that.validate = true;
- } else {
- that.validate = false;
- }
- }
- }
- },
- validateForm: function() {
- let that = this,
- value = that.merchantData;
- if (!value.agent_name) return that.$util.Tips({
- title: that.$t(`请输入代理商名称`)
- });
- if (!value.name) return that.$util.Tips({
- title: that.$t(`请输入姓名`)
- });
- if (!value.phone) return that.$util.Tips({
- title: that.$t(`请输入手机号`)
- });
- if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(value.phone)) return that.$util.Tips({
- title: that.$t(`请输入正确的手机号码`)
- });
- if (!value.code) return that.$util.Tips({
- title: that.$t(`填写验证码`)
- });
- if (that.isShowCode && !that.codeVal) return that.$util.Tips({
- title: that.$t(`请填写图片验证码`)
- });
- if (!that.images.length) return that.$util.Tips({
- title: that.$t(`请上传营业执照`)
- });
- if (!that.isAgree) return that.$util.Tips({
- title: that.$t(`请勾选并同意入驻协议`)
- });
- that.validate = true;
- return true;
- },
- jumpToList() {
- uni.navigateTo({
- url: "/pages/store/applicationRecord/index"
- })
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .uni-input-placeholder {
- color: #B2B2B2;
- }
- .item-name {
- width: 190rpx;
- }
- .uni-list-cell {
- position: relative;
- .iconfont {
- font-size: 14px;
- color: #7a7a7a;
- position: absolute;
- right: 15px;
- top: 7rpx;
- }
- .icon-guanbi2 {
- right: 35px;
- }
- }
- .merchantsSettled {
- background: linear-gradient(#fd3d1d 0%, #fd151b 100%);
- height: 140vh;
- }
- .merchantsSettled .merchantBg {
- width: 750rpx;
- width: 100%;
- }
- .merchantsSettled .list {
- background-color: #fff;
- border-radius: 12px;
- padding: 22px 0;
- margin: 0 15px;
- position: absolute;
- top: 300rpx;
- // margin-top: -160px;
- width: calc(100% - 30px);
- }
- .application-record {
- position: absolute;
- display: flex;
- align-items: center;
- top: 240rpx;
- right: 0;
- color: #fff;
- font-size: 22rpx;
- background-color: rgba(0, 0, 0, 0.3);
- padding: 8rpx 18rpx;
- border-radius: 20px 0px 0px 20px;
- }
- .merchantsSettled .list .item {
- padding: 50rpx 0 20rpx;
- border-bottom: 1rpx solid #eee;
- position: relative;
- margin: 0 20px;
- &.no-border {
- border-bottom: none;
- padding-left: 0;
- padding-right: 0;
- }
- .item-title {
- color: #666666;
- font-size: 28rpx;
- display: block;
- }
- .item-desc {
- color: #B2B2B2;
- font-size: 22rpx;
- display: block;
- margin-top: 9rpx;
- line-height: 36rpx;
- }
- }
- .acea-row,
- .upload {
- display: -webkit-box;
- display: -moz-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-lines: multiple;
- -moz-box-lines: multiple;
- -o-box-lines: multiple;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- }
- .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;
- // margin-left: 30px;
- }
- .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 #E93323;
- border-radius: 15px;
- color: #E93323;
- 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;
- }
- .merchantsSettled .submitBtn.on {
- background: #E93323;
- }
- uni-checkbox-group,
- .settleAgree {
- display: inline-block;
- font-size: 24rpx;
- }
- uni-checkbox-group {
- color: #b2b2b2;
- }
- .settleAgree {
- color: #E93323;
- 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;
- background: rgba(0, 0, 0, .5);
- z-index: 10;
- }
- .settlementAgreement .setAgCount {
- background: #fff;
- width: 656rpx;
- height: 458px;
- position: absolute;
- top: 50%;
- left: 50%;
- border-radius: 12rpx;
- -webkit-border-radius: 12rpx;
- padding: 52rpx;
- -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 .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 {
- margin-top: 32rpx;
- color: #333;
- font-size: 26rpx;
- line-height: 22px;
- text-align: justify;
- text-justify: distribute-all-lines;
- height: 756rpx;
- overflow-y: scroll;
- }
- .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: #999;
- font-size: 26rpx;
- margin-top: 18rpx;
- }
- .settledSuccessful .goHome {
- margin: 20px auto 0;
- line-height: 43px;
- color: #282828;
- font-size: 15px;
- border: 1px solid #B4B4B4;
- border-radius: 60px;
- }
- .settledSuccessful .again {
- margin: 30px auto 0;
- line-height: 43px;
- color: #fff;
- font-size: 15px;
- background-color: #E93323;
- 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;
- }
- /deep/ uni-checkbox .uni-checkbox-input-checked {
- background-color: #fd151b !important;
- }
- .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: 1rpx solid #DDD;
- border-bottom: none;
- border-right: none;
- }
- /deep/ td,
- th {
- padding: 5rpx 10rpx;
- border-bottom: 1rpx solid #DDD;
- border-right: 1rpx solid #DDD;
- }
- }
- </style>
|