Huanyuyuehui/pages/store/settled/index.vue

1254 lines
33 KiB
Vue
Raw Normal View History

2024-03-21 17:52:58 +08:00
<template>
2024-03-29 18:33:10 +08:00
<view v-if="!successful" :style="viewColor">
2024-03-21 17:52:58 +08:00
<form report-submit='true'>
<view class='merchantsSettled'>
2024-03-29 14:19:29 +08:00
<!-- <view class="merchantBgCount">
2024-03-21 17:52:58 +08:00
<image mode="widthFix" class="merchantBg" :src="domain+'/static/diy/merchantBg'+keyColor+'.jpg'" alt="">
2024-03-29 14:19:29 +08:00
</view> -->
<view class='nav'>
2024-04-01 18:47:20 +08:00
2024-03-29 14:19:29 +08:00
<view class='progress acea-row row-between-wrapper'>
<view class='iconfont t-color'></view>
<view class='line'></view>
<view class='iconfont'>2</view>
<view class='line'></view>
<view class='iconfont'>3</view>
</view>
<view class='navCon acea-row row-between-wrapper'>
2024-04-01 18:47:20 +08:00
<view class="on">基本信息</view>
<view>企业资料文件</view>
<view>结算信息</view>
2024-03-29 14:19:29 +08:00
</view>
2024-03-21 17:52:58 +08:00
</view>
2024-04-01 18:47:20 +08:00
<view class="application-record" @click="jumpToList">
2024-03-21 17:52:58 +08:00
申请记录
<text class="iconfont icon-xiangyou"></text>
2024-04-01 18:47:20 +08:00
</view>
2024-04-11 20:21:29 +08:00
<view class='list' style="margin-top: 40rpx;">
2024-03-21 17:52:58 +08:00
<view class="item">
<view class="acea-row row-middle">
2024-04-10 14:49:12 +08:00
<text class="item-name required">店铺名称</text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;" maxlength="30" placeholder="请输入"
v-model="shopInfo.shopName" @input="validateBtn" placeholder-class='placeholder' />
2024-03-21 17:52:58 +08:00
</view>
<view class="acea-row row-middle">
2024-03-30 18:37:04 +08:00
<text class="tips-text">(需与营业执照企业名称一致)</text>
2024-03-21 17:52:58 +08:00
</view>
</view>
2024-04-10 14:49:12 +08:00
<!-- <view class="item">
2024-04-01 18:47:20 +08:00
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
2024-04-10 14:49:12 +08:00
<text class="item-name required">店铺分类</text>
2024-04-01 18:47:20 +08:00
<picker style="text-align: right;" @change="bindPickerChange" :value="shopInfo.mer_classification" :range="array" range-key="category_name">
2024-04-10 14:49:12 +08:00
<input style="pointer-events:none" placeholder="请选择店铺分类" type="text" readonly disabled v-model="shopInfo.mer_classification">
2024-04-01 18:47:20 +08:00
<view class='iconfont icon-jiantou'></view>
</picker>
</view>
</view>
</view>
2024-04-10 14:49:12 +08:00
</view> -->
2024-04-01 18:47:20 +08:00
<!-- <view class="item">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
<text class="item-name required">店铺模式</text>
<picker style="text-align: right;" @change="bindPickerChange" :value="shopInfo.mer_storeType" :range="storeTypeArr2" range-key="category_name">
<input style="pointer-events:none" placeholder="请选择商户分类" type="text" readonly disabled v-model="shopInfo.mer_storeType">
<view class='iconfont icon-jiantou'></view>
</picker>
</view>
</view>
</view>
</view> -->
<!-- <view class="item">
2024-03-29 17:39:38 +08:00
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
<text class="item-name required">营业执照注册地址</text>
<view class="acea-row row-middle" @click="changeRegion">
2024-04-01 18:47:20 +08:00
<input style="pointer-events:none;text-align: right;" placeholder="请选择"
type="text" readonly disabled v-model="shopInfo.registerAddress">
2024-03-29 17:39:38 +08:00
<view class='iconfont icon-jiantou'></view>
</view>
</view>
</view>
2024-03-21 17:52:58 +08:00
</view>
2024-04-01 18:47:20 +08:00
</view> -->
<!-- <view class="item">
2024-03-21 17:52:58 +08:00
<view class="acea-row row-middle">
2024-03-29 17:39:38 +08:00
<text class="item-name"></text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;" placeholder="请输入详细地址"
v-model="shopInfo.registerAddressDetail" @input="validateBtn"
placeholder-class='placeholder' />
2024-03-29 17:39:38 +08:00
</view>
2024-04-01 18:47:20 +08:00
</view> -->
2024-03-29 17:39:38 +08:00
<view class="item">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
<text class="item-name required">实际经营地址</text>
<view class="acea-row row-middle" @click="changeRegion2">
2024-04-01 18:47:20 +08:00
<input style="pointer-events:none;text-align: right;" placeholder="请选择"
type="text" readonly disabled v-model="shopInfo.businessAddress">
2024-03-29 17:39:38 +08:00
<view class='iconfont icon-jiantou'></view>
</view>
2024-04-10 14:49:12 +08:00
2024-03-29 17:39:38 +08:00
</view>
</view>
2024-03-21 17:52:58 +08:00
</view>
</view>
2024-03-29 17:39:38 +08:00
<view class="item">
2024-03-21 17:52:58 +08:00
<view class="acea-row row-middle">
2024-03-29 17:39:38 +08:00
<text class="item-name"></text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;" placeholder="请输入详细地址"
v-model="shopInfo.businessAddressDetail" @input="validateBtn"
placeholder-class='placeholder' />
2024-03-21 17:52:58 +08:00
</view>
</view>
2024-04-01 18:47:20 +08:00
</view>
2024-03-30 18:37:04 +08:00
<view class='list'>
<view class="item">
<view class="acea-row row-middle">
<text class="item-name required">企业名称</text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;flex:1;" placeholder="请输入"
v-model="shopInfo.EnterpriseName" @input="validateBtn"
placeholder-class='placeholder' />
2024-03-21 17:52:58 +08:00
</view>
2024-04-10 14:49:12 +08:00
<view class="acea-row row-middle">
<text class="tips-text">(需与营业执照企业名称一致)</text>
</view>
2024-03-21 17:52:58 +08:00
</view>
<view class="item">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
2024-03-29 17:39:38 +08:00
<text class="item-name required">企业类型</text>
2024-04-01 18:47:20 +08:00
<picker @change="changeEnterprise" :value="shopInfo.EnterpriseType"
:range="enterpriseArray" range-key="category_name">
<input style="pointer-events:none;text-align: right;" placeholder="请选择"
type="text" readonly disabled v-model="shopInfo.EnterpriseType">
2024-03-29 17:39:38 +08:00
<view class='iconfont icon-jiantou'></view>
</picker>
</view>
</view>
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
2024-04-10 14:49:12 +08:00
<text class="item-name required">企业对接人编号</text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;" placeholder="请输入"
2024-04-10 14:49:12 +08:00
v-model="shopInfo.EnterpriseId" @input="validateBtn" placeholder-class='placeholder' />
</view>
<view class="acea-row row-middle">
2024-04-13 10:43:53 +08:00
<!-- <text class="tips-text">请填写铸源商城ZY开头会员编号</text> -->
<text class="tips-text">请填写铸源优品ID号</text>
2024-03-29 17:39:38 +08:00
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
2024-03-30 18:37:04 +08:00
<text class="item-name required">企业对接人姓名</text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;" placeholder="请输入"
v-model="shopInfo.EnterpriseJoinName" @input="validateBtn"
placeholder-class='placeholder' />
2024-03-29 17:39:38 +08:00
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
2024-03-30 18:37:04 +08:00
<text class="item-name required">企业对接人联系电话</text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;" placeholder="请输入"
v-model="shopInfo.EnterprisePhone" @input="validateBtn"
placeholder-class='placeholder' />
2024-03-30 18:37:04 +08:00
</view>
2024-04-12 18:33:58 +08:00
<view class="acea-row row-middle">
<text class="tips-text">请填写11位手机号码</text>
</view>
2024-03-30 18:37:04 +08:00
</view>
<view class="item">
<view class="acea-row row-middle">
2024-04-10 14:49:12 +08:00
<text class="item-name required">发起人编号</text>
<input type="text" style="text-align: right;" placeholder="请输入" v-model="shopInfo.userId"
@input="validateBtn" placeholder-class='placeholder' />
</view>
<view class="acea-row row-middle">
2024-04-13 10:43:53 +08:00
<!-- <text class="tips-text">请填写铸源商城ZY开头会员编号</text> -->
<text class="tips-text">请填写铸源优品ID号</text>
2024-03-30 18:37:04 +08:00
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
<text class="item-name required">发起人姓名</text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;" placeholder="请输入" v-model="shopInfo.userName"
@input="validateBtn" placeholder-class='placeholder' />
2024-03-30 18:37:04 +08:00
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
2024-04-10 14:49:12 +08:00
<text class="item-name required">发起人电话</text>
2024-04-01 18:47:20 +08:00
<input type="text" style="text-align: right;" placeholder="请输入" v-model="shopInfo.userPhone"
@input="validateBtn" placeholder-class='placeholder' />
2024-03-30 18:37:04 +08:00
</view>
2024-04-12 18:33:58 +08:00
<view class="acea-row row-middle">
<text class="tips-text">请填写11位手机号码</text>
</view>
2024-03-30 18:37:04 +08:00
</view>
2024-04-10 14:49:12 +08:00
2024-03-30 18:37:04 +08:00
<view class="item">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
<text class="item-name required">发起人手持介绍信照片</text>
<view class="down-style" @click="downTemplate">
2024-04-01 18:47:20 +08:00
<text class="haiyuefont haiyue-zhuyi"
style="font-size: 10px;margin: 2px;"></text>
2024-03-30 18:37:04 +08:00
下载模版
</view>
<view class="down-style" @click="perviewTemplate">
2024-04-01 18:47:20 +08:00
<text class="haiyuefont haiyue-zhuyi"
style="font-size: 10px;margin: 2px;"></text>
2024-03-30 18:37:04 +08:00
示例模版
</view>
2024-04-01 18:47:20 +08:00
<view style="font-size: 12px;margin-left: 4px;">
2024-03-30 18:37:04 +08:00
{{shopInfo.userPhoto.length}}/1
</view>
</view>
<view class="acea-row row-middle" style="justify-content: flex-start;">
2024-04-01 18:47:20 +08:00
<view class='pictrue' v-for="(item,index) in shopInfo.userPhoto" :key="index"
:data-index="index" @click="getPhotoClickIdx(shopInfo.userPhoto,index)">
2024-03-30 18:37:04 +08:00
<image :src='item'></image>
2024-04-01 18:47:20 +08:00
<text class='iconfont icon-guanbi1'
@click.stop='DelPic(shopInfo.userPhoto,index)'></text>
2024-03-30 18:37:04 +08:00
</view>
2024-04-01 18:47:20 +08:00
<view class='pictrue acea-row row-center-wrapper row-column'
@click='uploadpic(shopInfo.userPhoto)' v-if="shopInfo.userPhoto.length < 1">
2024-03-30 18:37:04 +08:00
<text class='iconfont icon-icon25201' style="top: 25px;left: 25px;"></text>
</view>
</view>
</view>
2024-03-29 17:39:38 +08:00
</view>
</view>
<view class="item">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
<text class="item-name required">店铺类型</text>
2024-04-01 18:47:20 +08:00
<picker style="text-align: right;" @change="bindPickerChange1" :value="shopInfo.mer_type" :range="storeTypeArr"
range-key="type_name">
<input style="pointer-events:none;text-align: right;" placeholder="请选择店铺类型"
type="text" disabled readonly v-model="shopInfo.mer_storeType">
2024-03-21 17:52:58 +08:00
<view class='iconfont icon-jiantou'></view>
</picker>
</view>
</view>
</view>
</view>
2024-04-01 18:47:20 +08:00
2024-03-29 17:39:38 +08:00
<view class="item">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
2024-04-12 18:33:58 +08:00
<text class="item-name ">是否惠美乡村店铺</text>
2024-04-01 18:47:20 +08:00
<switch :checked="shopInfo.isVeteran" style="transform:scale(0.6)"
@change="viteran" />
2024-03-30 18:37:04 +08:00
</view>
<view class="acea-row row-middle">
<text class="tips-text" style="color: #0ca6cb;">如果为惠美乡村店铺需上传惠美乡村红头文件</text>
2024-03-21 17:52:58 +08:00
</view>
</view>
</view>
</view>
2024-03-30 18:37:04 +08:00
<view class="item" v-show="shopInfo.isVeteran">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
<text class="item-name required">惠美乡村红头文件</text>
<view style="font-size: 12px;">
2024-04-01 18:47:20 +08:00
{{shopInfo.isVeteranPhoto.length}}/1
2024-03-30 18:37:04 +08:00
</view>
</view>
<view class="acea-row row-middle" style="justify-content: flex-start;">
2024-04-01 18:47:20 +08:00
<view class='pictrue' v-for="(item,index) in shopInfo.isVeteranPhoto" :key="index" :data-index="index"
@click="getPhotoClickIdx(shopInfo.isVeteranPhoto,index)">
2024-03-30 18:37:04 +08:00
<image :src='item'></image>
2024-04-01 18:47:20 +08:00
<text class='iconfont icon-guanbi1' @click.stop='DelPic(shopInfo.isVeteranPhoto,index)'></text>
2024-03-30 18:37:04 +08:00
</view>
2024-04-01 18:47:20 +08:00
<view class='pictrue acea-row row-center-wrapper row-column' @click='uploadpic(shopInfo.isVeteranPhoto)'
v-if="shopInfo.isVeteranPhoto.length < 1">
2024-03-30 18:37:04 +08:00
<text class='iconfont icon-icon25201' style="top: 25px;left: 25px;"></text>
</view>
</view>
</view>
</view>
</view>
2024-04-01 18:47:20 +08:00
2024-03-29 17:39:38 +08:00
<view class="item">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
2024-04-12 18:33:58 +08:00
<text class="item-name">是否退伍军人</text>
2024-04-01 18:47:20 +08:00
<switch :checked="shopInfo.isFlagshipStore" style="transform:scale(0.6)"
@change="flagShipStore" />
2024-03-30 18:37:04 +08:00
</view>
<view class="acea-row row-middle">
<text class="tips-text" style="color: #0ca6cb;">如果为退伍军人则需要上传证件照</text>
</view>
</view>
</view>
</view>
<view class="item" v-show="shopInfo.isFlagshipStore">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
<text class="item-name required">退伍军人证件照</text>
<view style="font-size: 12px;">
2024-04-01 18:47:20 +08:00
{{shopInfo.isFlagshipStorePhoto.length}}/1
2024-03-30 18:37:04 +08:00
</view>
</view>
<view class="acea-row row-middle" style="justify-content: flex-start;">
2024-04-01 18:47:20 +08:00
<view class='pictrue' v-for="(item,index) in shopInfo.isFlagshipStorePhoto" :key="index" :data-index="index"
@click="getPhotoClickIdx(shopInfo.isFlagshipStorePhoto,index)">
2024-03-30 18:37:04 +08:00
<image :src='item'></image>
2024-04-01 18:47:20 +08:00
<text class='iconfont icon-guanbi1' @click.stop='DelPic(shopInfo.isFlagshipStorePhoto,index)'></text>
2024-03-30 18:37:04 +08:00
</view>
2024-04-01 18:47:20 +08:00
<view class='pictrue acea-row row-center-wrapper row-column' @click='uploadpic(shopInfo.isFlagshipStorePhoto)'
v-if="shopInfo.isFlagshipStorePhoto.length < 1">
2024-03-30 18:37:04 +08:00
<text class='iconfont icon-icon25201' style="top: 25px;left: 25px;"></text>
</view>
2024-03-29 17:39:38 +08:00
</view>
</view>
</view>
2024-03-21 17:52:58 +08:00
</view>
2024-04-01 18:47:20 +08:00
<button class='submitBtn' :disabled="!validate" :class="validate === true ? 'on':''"
@click="nextStep">下一步</button>
2024-03-21 17:52:58 +08:00
</view>
</view>
</form>
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
<view class="settlementAgreement" v-if="showProtocol">
<view class="setAgCount">
<i class="icon iconfont icon-cha" @click="showProtocol = false"></i>
<div class="title">{{isType ? '店铺类型说明' : '商户入驻协议'}}</div>
<view class="content">
<jyf-parser :html="protocol" ref="article" :tag-style="tagStyle"></jyf-parser>
<!-- <view v-html="protocol"></view> -->
</view>
</view>
</view>
2024-04-01 18:47:20 +08:00
<areaWindow ref="areaWindow" :display="display" :address="[]" @submit="OnChangeAddress"
@changeClose="changeClose" :cityShow="1"></areaWindow>
<areaWindow ref="areaWindow2" :display="display2" :address="[]" @submit="OnChangeAddress2"
@changeClose="changeClose2" :cityShow="1"></areaWindow>
2024-03-21 17:52:58 +08:00
</view>
</template>
<script>
2024-04-01 18:47:20 +08:00
import areaWindow from '@/components/areaWindow';
import {
mapGetters
} from "vuex";
2024-03-21 17:52:58 +08:00
import parser from "@/components/jyf-parser/jyf-parser";
2024-04-01 18:47:20 +08:00
import {
toLogin
} from '@/libs/login.js';
import {
merClassifly,
getStoreTypeApi
} from '@/api/store.js';
import {getGoodsDetails} from '@/api/store.js';
2024-03-21 17:52:58 +08:00
const app = getApp();
export default {
components: {
2024-03-29 17:39:38 +08:00
areaWindow,
2024-03-21 17:52:58 +08:00
},
data() {
return {
2024-04-01 18:47:20 +08:00
isFalse: ['是', '否'],
2024-03-29 17:39:38 +08:00
validate: false,
display: false,
display2: false,
2024-04-01 18:47:20 +08:00
shopInfo: {
shopName: '',
mer_classification:'',
classification:'',
// registerAddress: '',
// registerAddressDetail: '',
businessAddress: '',
businessAddressDetail: '',
EnterpriseType: '',
EnterpriseName: '',
EnterpriseJoinName: '',
EnterprisePhone: '',
EnterpriseId: '',
EnterpriseRooter: [],
userName: '',
userPhone: '',
userId: '',
userPhoto: [],
2024-03-30 18:37:04 +08:00
2024-04-01 18:47:20 +08:00
mer_type:'',
mer_storeType:'',
isVeteran: false,
isVeteranPhoto: [],
isFlagshipStore: false,
isFlagshipStorePhoto: [],
2024-03-30 18:37:04 +08:00
2024-03-29 17:39:38 +08:00
},
2024-04-01 18:47:20 +08:00
cityArray: [],
storeTypeArr2: [{
type_name: '',
mer_type_id: ''
}],
enterpriseArray: ["生产型企业", "销售型企业"],
storeTypeArr: ['旗舰店', '非旗舰店'],
array: [{
category_name: '',
merchant_category_id: ''
}],
2024-03-21 17:52:58 +08:00
successful: false,
isType: false,
2024-03-29 18:33:10 +08:00
showProtocol: false,
2024-04-01 18:47:20 +08:00
pics: [],
2024-03-21 17:52:58 +08:00
};
},
onLoad(options) {
2024-03-29 18:33:10 +08:00
if (this.isLogin) {
2024-04-01 18:47:20 +08:00
this.getClassfication();
this.getStoreType();
2024-03-29 18:33:10 +08:00
} else {
toLogin()
}
2024-04-01 18:47:20 +08:00
if (options.mer_i_id) {
this.mer_i_id = options.mer_i_id
uni.showLoading({
title: '获取数据中',
});
this.$nextTick(function() {
this.getGoodsDetails(options.mer_i_id)
})
}
},
onShow() {
2024-03-21 17:52:58 +08:00
},
2024-03-29 17:39:38 +08:00
computed: {
2024-04-01 18:47:20 +08:00
...mapGetters(['isLogin', 'viewColor']),
2024-03-29 17:39:38 +08:00
},
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
methods: {
2024-04-01 18:47:20 +08:00
// 获取历史提交数据详情
getGoodsDetails(id) {
getGoodsDetails(id).then(res => {
let arr = Object.keys(this.shopInfo)
let resData = res.data;
let com=resData.com;
let biz=resData.biz;
2024-04-01 19:41:30 +08:00
uni.setStorageSync('updateShopInfo',resData);
2024-04-10 14:49:12 +08:00
let {shopName,mer_classification,classification,businessAddress,businessAddressDetail,EnterpriseType,EnterpriseName,EnterpriseJoinName,EnterprisePhone,EnterpriseId,EnterpriseRooter,userName,userPhone,userId,userPhoto,isVeteran,isVeteranPhoto,isFlagshipStore,isFlagshipStorePhoto,mer_type,mer_storeType} = this.shopInfo;
2024-04-01 19:41:30 +08:00
2024-04-10 14:49:12 +08:00
mer_classification=this.array[resData.mer_type_id]['category_name'],classification=resData.mer_type_id,mer_storeType=this.storeTypeArr[resData.merchant_category_id]['type_name'],mer_type=resData.merchant_category_id,EnterprisePhone=com.mobile,shopName=resData.mer_name,userPhone=resData.phone,EnterpriseName=com.name,userName=resData.name,mer_type=resData.merchant_category_id,classification=resData.mer_type_id,EnterpriseType=com.type,EnterpriseName=com.name,EnterpriseJoinName=com.contact,EnterpriseId=com.number,userName=com.initiator,userPhone=com.inti_mobile,userId=com.inti_number,userPhoto=com.init_image,isVeteran=com.is_huimei,isVeteranPhoto=com.image_huimei,isFlagshipStore=com.is_soldier,isFlagshipStorePhoto=com.image_soldier,businessAddress=biz.province+'/'+biz.city,businessAddressDetail=biz.address_true;
2024-04-01 18:47:20 +08:00
this.shopInfo={
2024-04-10 14:49:12 +08:00
shopName,mer_classification,classification,businessAddress,businessAddressDetail,EnterpriseType,EnterpriseName,EnterpriseJoinName,EnterprisePhone,EnterpriseId,EnterpriseRooter,userName,userPhone,userId,userPhoto,isVeteran,isVeteranPhoto,isFlagshipStore,isFlagshipStorePhoto,mer_type,mer_storeType
2024-04-01 18:47:20 +08:00
}
uni.hideLoading();
})
},
2024-03-21 17:52:58 +08:00
getAgreement() {
let that = this
that.showProtocol = true;
that.isType = true
getAgreementApi('sys_merchant_type').then(res => {
that.protocol = res.data.sys_merchant_type
})
},
2024-04-01 18:47:20 +08:00
changeRegion() {
2024-03-29 17:39:38 +08:00
this.display = true;
2024-03-21 17:52:58 +08:00
},
2024-03-29 17:39:38 +08:00
// 关闭地址弹窗;
changeClose() {
this.display = false;
2024-03-21 17:52:58 +08:00
},
2024-04-01 18:47:20 +08:00
changeRegion2() {
2024-03-29 17:39:38 +08:00
this.display2 = true;
2024-03-21 17:52:58 +08:00
},
2024-03-29 17:39:38 +08:00
// 关闭地址弹窗;
changeClose2() {
this.display2 = false;
2024-03-21 17:52:58 +08:00
},
2024-04-01 18:47:20 +08:00
OnChangeAddress(address) {
this.shopInfo.registerAddress = address.map(v => v.name).join('/');
2024-03-21 17:52:58 +08:00
},
2024-04-01 18:47:20 +08:00
OnChangeAddress2(address) {
this.shopInfo.businessAddress = address.map(v => v.name).join('/');
2024-03-21 17:52:58 +08:00
},
2024-04-01 18:47:20 +08:00
validateBtn() {
let {
2024-04-11 20:21:29 +08:00
shopName,businessAddress,businessAddressDetail,EnterpriseType,EnterpriseName,EnterpriseJoinName,EnterprisePhone,EnterpriseId,userName,userPhone,userId,userPhoto,isVeteran,isVeteranPhoto,isFlagshipStore,isFlagshipStorePhoto,mer_type,mer_storeType
2024-04-01 18:47:20 +08:00
} = this.shopInfo;
2024-04-11 20:21:29 +08:00
if (shopName&&businessAddress&&businessAddressDetail&&EnterpriseType&&EnterpriseName&&EnterpriseJoinName&&EnterprisePhone&&EnterpriseId&&userName&&userPhone&&userId&&userPhoto&&mer_type&&mer_storeType ) {
2024-04-13 10:43:53 +08:00
if(isVeteran&&isVeteranPhoto.length==0){
this.validate=false;
}else if (isFlagshipStore&&isFlagshipStorePhoto.length==0){
this.validate=false;
}else{
let date2 = {
phone: userPhone,
mer_name:shopName,
name:userName,
mer_type_id:mer_type,//hjb 这里应该是设置反了
com:{
name:EnterpriseName,
type:EnterpriseType,
contact:EnterpriseJoinName,
mobile:EnterprisePhone,
number:EnterpriseId,
initiator:userName,
inti_mobile:userPhone,
inti_number:userId,
init_image:userPhoto,
is_huimei:isVeteran,
image_huimei:isVeteranPhoto,
is_soldier:isFlagshipStore,
image_soldier:isFlagshipStorePhoto,
},
biz:{
province:businessAddress.split('/')[0],
city:businessAddress.split('/')[1],
address_true:businessAddressDetail,
}
2024-04-01 18:47:20 +08:00
}
2024-04-13 10:43:53 +08:00
uni.setStorageSync('shopInfo', date2)
this.validate = true;
2024-04-01 18:47:20 +08:00
}
2024-04-01 19:41:30 +08:00
2024-04-11 20:21:29 +08:00
}else{
this.validate=false;
2024-03-21 17:52:58 +08:00
}
},
2024-04-01 18:47:20 +08:00
// 获取商户分类
getClassfication() {
merClassifly()
.then(res => {
this.array = res.data
})
.catch(res => {
this.$util.Tips({
title: res
});
});
2024-03-21 17:52:58 +08:00
},
2024-04-01 18:47:20 +08:00
// 获取店铺类型
getStoreType() {
getStoreTypeApi()
.then(res => {
this.storeTypeArr = res.data
})
.catch(res => {
this.$util.Tips({
title: res
});
});
},
bindPickerChange(e) {
let idx = e.target.value
this.shopInfo.classification = this.array[idx]['merchant_category_id']
this.shopInfo.mer_classification = this.array[idx]['category_name']
this.validateBtn()
},
bindPickerChange1(e) {
let idx = e.target.value
this.shopInfo.mer_type = this.storeTypeArr[idx]['mer_type_id']
this.shopInfo.mer_storeType = this.storeTypeArr[idx]['type_name']
this.validateBtn()
2024-03-29 18:33:10 +08:00
},
2024-04-01 18:47:20 +08:00
changeEnterprise(e) {
this.shopInfo.EnterpriseType = this.enterpriseArray[e.target.value];
2024-03-29 18:33:10 +08:00
this.validateBtn();
},
2024-04-11 20:21:29 +08:00
checkPhone(phone) {
return /^1[3-9]\d{9}$/.test(phone);
},
2024-04-01 18:47:20 +08:00
nextStep() {
2024-04-11 20:21:29 +08:00
let a=this.checkPhone(this.shopInfo.userPhone);
let b=this.checkPhone(this.shopInfo.EnterprisePhone);
if(!a||!b){
uni.showToast({
icon:'none',
title: '手机号格式有误'
});
return
2024-04-12 09:13:38 +08:00
}else if(this.shopInfo.userPhoto.length!=1){
2024-04-11 20:21:29 +08:00
uni.showToast({
icon:'none',
title: '请上传手持介绍信'
});
return
}
2024-04-01 19:41:30 +08:00
if(this.mer_i_id){
uni.navigateTo({
url: '/pages/store/settled/step2?mer_i_id='+this.mer_i_id
})
}else{
uni.navigateTo({
url: '/pages/store/settled/step2'
})
}
2024-03-30 18:37:04 +08:00
},
2024-04-01 18:47:20 +08:00
viteran(e) {
2024-03-30 18:37:04 +08:00
// console.log('e: ',e);
2024-04-01 18:47:20 +08:00
this.shopInfo.isVeteran = e.detail.value;
2024-04-13 10:43:53 +08:00
this.validateBtn();
2024-03-30 18:37:04 +08:00
},
2024-04-01 18:47:20 +08:00
flagShipStore(e) {
this.shopInfo.isFlagshipStore = e.detail.value;
2024-04-13 10:43:53 +08:00
this.validateBtn();
2024-03-30 18:37:04 +08:00
},
/**
* 上传文件
*
*/
2024-04-01 18:47:20 +08:00
uploadpic(item) {
2024-03-30 18:37:04 +08:00
let that = this;
that.$util.uploadImageOne('upload/image', function(res) {
item.push(res.data.path);
// that.$set(that, 'pics', that.pics);
});
},
/**
* 删除图片
*
*/
2024-04-01 18:47:20 +08:00
DelPic(item, index) {
2024-03-30 18:37:04 +08:00
let that = this,
pic = item[index];
item.splice(index, 1);
// that.$set(that, 'pics', that.pics);
},
// 图片预览
// 获得相册 idx
2024-04-01 18:47:20 +08:00
getPhotoClickIdx(item, index) {
2024-03-30 18:37:04 +08:00
let _this = this;
let idx = index;
_this.imgPreview(item, idx);
},
// 图片预览
2024-04-01 18:47:20 +08:00
imgPreview(list, idx) {
2024-03-30 18:37:04 +08:00
// list图片 url 数组
if (list && list.length > 0) {
uni.previewImage({
current: list[idx], // 传 Number H5端出现不兼容
urls: list
});
}
},
2024-04-01 18:47:20 +08:00
downTemplate() {
2024-03-30 18:37:04 +08:00
uni.showModal({
2024-04-01 18:47:20 +08:00
title: '是否下载示例模版',
2024-03-30 18:37:04 +08:00
success(res) {
if (res.confirm) {
2024-04-01 18:47:20 +08:00
location.href = 'https://plus.hwms.shop/uploads/file/letter_introduction.docx'
2024-03-30 18:37:04 +08:00
} else if (res.cancel) {
return
}
}
})
2024-04-01 18:47:20 +08:00
2024-03-30 18:37:04 +08:00
},
2024-04-01 18:47:20 +08:00
perviewTemplate() {
let url = ['https://plus.hwms.shop/uploads/file/mer_template.jpg'];
2024-03-30 18:37:04 +08:00
uni.previewImage({
current: url[0], // 传 Number H5端出现不兼容
urls: url
});
2024-04-01 18:47:20 +08:00
},
jumpToList() {
uni.navigateTo({
url: "/pages/store/applicationRecord/index"
})
},
2024-03-21 17:52:58 +08:00
}
}
</script>
<style scoped lang="scss">
2024-04-01 18:47:20 +08:00
.required {
2024-03-29 14:19:29 +08:00
position: relative;
display: flex;
width: 28rpx;
height: 28rpx;
2024-04-01 18:47:20 +08:00
&::before {
2024-03-29 14:19:29 +08:00
display: block;
content: '*';
color: red;
line-height: 48rpx;
}
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
/deep/checkbox .uni-checkbox-input.uni-checkbox-input-checked,
/deep/checkbox .wx-checkbox-input.wx-checkbox-input-checked {
2024-04-01 18:47:20 +08:00
border: 1px solid var(--view-theme) !important;
background-color: var(--view-theme) !important;
color: #fff !important;
2024-03-21 17:52:58 +08:00
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.uni-input-placeholder {
color: #B2B2B2;
}
2024-04-01 18:47:20 +08:00
.item-name {
2024-03-30 18:37:04 +08:00
width: 340rpx;
2024-03-21 17:52:58 +08:00
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.uni-list-cell {
position: relative;
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.iconfont {
font-size: 14px;
color: #7a7a7a;
position: absolute;
2024-03-29 17:39:38 +08:00
right: -16px;
2024-03-21 17:52:58 +08:00
top: 7rpx;
}
2024-04-01 18:47:20 +08:00
.icon-guanbi2 {
2024-03-21 17:52:58 +08:00
right: 35px;
}
}
2024-04-01 18:47:20 +08:00
.merchantBgCount {
2024-03-21 17:52:58 +08:00
line-height: 0;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled {
2024-03-29 14:19:29 +08:00
// background-image: linear-gradient(var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
2024-03-29 18:33:10 +08:00
display: flex;
flex-direction: column;
grid-gap: 32rpx;
padding-bottom: 40rpx;
2024-03-21 17:52:58 +08:00
}
2024-04-01 18:47:20 +08:00
2024-03-29 14:19:29 +08:00
.merchantsSettled .nav {
// background-color: #fff;
font-size: 26rpx;
color: #282828;
padding: 25rpx 0;
}
2024-04-01 18:47:20 +08:00
.merchantsSettled .nav .navCon {
2024-03-30 18:37:04 +08:00
padding: 0 86rpx;
2024-03-29 14:19:29 +08:00
text-align: center;
2024-04-01 18:47:20 +08:00
view {
2024-03-29 14:19:29 +08:00
text-align: center;
}
}
2024-04-01 18:47:20 +08:00
2024-03-29 14:19:29 +08:00
.merchantsSettled .nav .progress {
padding: 0 120rpx;
margin-top: 10rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-29 14:19:29 +08:00
.merchantsSettled .nav .progress .line {
width: 160rpx;
2024-04-01 18:47:20 +08:00
height: 8rpx;
2024-03-29 14:19:29 +08:00
background-color: #d1e1fb;
border-radius: 4rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-29 14:19:29 +08:00
.merchantsSettled .nav .progress .iconfont {
font-size: 25rpx;
color: white;
margin-top: -2rpx;
width: 36rpx;
height: 36rpx;
text-align: center;
border-radius: 50%;
background-color: #5d6371;
2024-04-01 18:47:20 +08:00
&.t-color {
2024-03-29 14:19:29 +08:00
background-color: #0294f8;
width: 24rpx;
height: 24rpx;
border-radius: 50%;
2024-04-01 18:47:20 +08:00
box-shadow: 0rpx 0rpx 8rpx 8rpx #b9e1fe;
2024-03-29 14:19:29 +08:00
}
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .merchantBg {
width: 750rpx;
width: 100%;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list {
background-color: #fff;
border-radius: 12px;
2024-03-29 14:19:29 +08:00
padding-bottom: 22px;
2024-03-21 17:52:58 +08:00
margin: 0 15px;
2024-03-29 18:33:10 +08:00
// position: absolute;
// top: 160rpx;
2024-03-21 17:52:58 +08:00
width: calc(100% - 30px);
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.application-record {
position: absolute;
display: flex;
align-items: center;
2024-04-01 18:47:20 +08:00
top: 122rpx;
2024-03-21 17:52:58 +08:00
right: 0;
color: #fff;
font-size: 22rpx;
background-color: rgba(0, 0, 0, 0.3);
padding: 8rpx 18rpx;
border-radius: 20px 0px 0px 20px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list .item {
padding: 50rpx 0 20rpx;
border-bottom: 1px solid #eee;
position: relative;
margin: 0 20px;
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
&.no-border {
border-bottom: none;
padding-left: 0;
padding-right: 0;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.item-title {
color: #666666;
font-size: 28rpx;
display: block;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.item-desc {
color: #B2B2B2;
font-size: 22rpx;
display: block;
margin-top: 9rpx;
line-height: 36rpx;
}
}
2024-04-01 18:47:20 +08:00
.acea-row,
.upload {
2024-03-21 17:52:58 +08:00
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;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.upload {
margin-top: 20rpx;
}
2024-04-01 18:47:20 +08:00
.acea-row .tips-text {
2024-03-30 18:37:04 +08:00
color: #e40000;
2024-04-01 18:47:20 +08:00
font-size: 20rpx;
2024-03-30 18:37:04 +08:00
padding: 12rpx 12rpx 0 12rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.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;
2024-03-29 17:39:38 +08:00
display: flex;
flex-direction: row;
justify-content: space-between;
2024-03-30 18:37:04 +08:00
flex: 1;
2024-04-01 18:47:20 +08:00
input {
2024-03-30 18:37:04 +08:00
flex: 1;
}
2024-04-01 18:47:20 +08:00
picker {
2024-03-30 18:37:04 +08:00
flex: 1;
}
}
2024-04-01 18:47:20 +08:00
.row-middle .down-style {
2024-03-30 18:37:04 +08:00
color: #00aaff;
font-size: 20rpx;
2024-03-21 17:52:58 +08:00
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.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;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.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;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list .item .pictrue {
width: 130rpx;
height: 130rpx;
margin: 24rpx 22rpx 0 0;
position: relative;
font-size: 11px;
color: #bbb;
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
&:nth-child(4n) {
margin-right: 0;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
&:nth-last-child(1) {
border: 0.5px solid #ddd;
box-sizing: border-box;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
uni-image,
image {
width: 100%;
height: 100%;
border-radius: 1px;
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
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%;
}
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.icon-guanbi1 {
font-size: 33rpx;
position: absolute;
top: -10px;
right: -10px;
}
}
2024-04-01 18:47:20 +08:00
.uni-list-cell-db {
2024-03-21 17:52:58 +08:00
position: relative;
}
2024-04-01 18:47:20 +08:00
.wenhao {
2024-03-21 17:52:58 +08:00
width: 34rpx;
height: 34rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 28rpx;
border-radius: 50%;
background: #E3E3E3;
2024-04-01 18:47:20 +08:00
color: #ffffff !important;
2024-03-21 17:52:58 +08:00
margin-left: 4rpx;
position: absolute;
left: 122rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list .item .imageCode {
position: absolute;
top: 7px;
right: 0;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list .item .icon {
font-size: 40rpx;
color: #b4b1b4;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list .item input {
2024-03-29 17:39:38 +08:00
// width: 400rpx;
2024-03-21 17:52:58 +08:00
font-size: 30rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list .item .placeholder {
color: #b2b2b2;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .default {
padding: 0 30rpx;
height: 90rpx;
background-color: #fff;
margin-top: 23rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .default checkbox {
margin-right: 15rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .acea-row uni-image {
width: 20px;
height: 20px;
display: block;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list .item .codeIput {
width: 125px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.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;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.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;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .list .item .code.on {
background-color: #bbb;
color: #fff;
border-color: #bbb;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.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;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled .submitBtn.on {
background: var(--view-theme);
2024-04-01 18:47:20 +08:00
pointer-events: all;
2024-03-21 17:52:58 +08:00
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
uni-checkbox-group,
.settleAgree {
display: inline-block;
font-size: 24rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
uni-checkbox-group {
color: #b2b2b2;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settleAgree {
color: var(--view-theme);
position: relative;
top: 2px;
left: 8px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.merchantsSettled uni-checkbox .uni-checkbox-wrapper {
width: 30rpx;
height: 30rpx;
border: 2rpx solid #C3C3C3;
border-radius: 15px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settlementAgreement {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: rgba(0, 0, 0, .5);
z-index: 10;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.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;
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.content {
height: 900rpx;
overflow-y: scroll;
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
/deep/ p {
font-size: 13px;
line-height: 22px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
/deep/ img {
max-width: 100%;
}
}
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settlementAgreement .setAgCount .icon {
font-size: 42rpx;
color: #b4b1b4;
position: absolute;
top: 15rpx;
right: 15rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settlementAgreement .setAgCount .title {
color: #333;
font-size: 32rpx;
text-align: center;
font-weight: bold;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.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;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settledSuccessMain {
height: 100vh;
display: flex;
flex-direction: column;
background: #fff;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settledSuccessful {
flex: 1;
width: 100%;
padding: 0 56px;
height: auto;
background: #fff;
text-align: center;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settledSuccessful .image {
width: 189px;
height: 157px;
margin-top: 66px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settledSuccessful .title {
color: #333333;
font-size: 16px;
font-weight: bold;
margin-top: 35px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settledSuccessful .info {
color: #A0A0A0;
font-size: 13px;
margin-top: 12px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.settledSuccessful .goHome {
margin: 60px auto 0;
line-height: 43px;
color: #282828;
font-size: 15px;
border: 1px solid #B4B4B4;
border-radius: 60px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
/deep/ uni-checkbox .uni-checkbox-input {
width: 15px;
height: 15px;
position: relative;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
/deep/ uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked:before {
font-size: 14px;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.loadingicon {
height: 100vh;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
.icon-xiangyou {
font-size: 22rpx;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
// #ifdef MP
checkbox-group {
display: inline-block;
}
2024-04-01 18:47:20 +08:00
2024-03-21 17:52:58 +08:00
// #endif
2024-04-01 18:47:20 +08:00
.setAgCount {
/deep/ table {
border: 1px solid #DDD;
2024-03-21 17:52:58 +08:00
border-bottom: none;
border-right: none;
}
2024-04-01 18:47:20 +08:00
/deep/ td,
th {
padding: 5rpx 10rpx;
border-bottom: 1px solid #DDD;
border-right: 1px solid #DDD;
2024-03-21 17:52:58 +08:00
}
}
2024-04-01 18:47:20 +08:00
</style>