|
@@ -32,8 +32,7 @@
|
|
</view>
|
|
</view>
|
|
<view class="flex row">
|
|
<view class="flex row">
|
|
<view class="left-text">营业期限截止日期</view>
|
|
<view class="left-text">营业期限截止日期</view>
|
|
- <view style='font-size:14px;width:50%;' class='flex flex-space-between'
|
|
|
|
- @click="selectData(0)">
|
|
|
|
|
|
+ <view style='font-size:14px;width:50%;' class='flex flex-space-between' @click="selectData(0)">
|
|
<view :style="{'color':dataDetails.businessTermDate ? '#000':'#C6CBD5'}">
|
|
<view :style="{'color':dataDetails.businessTermDate ? '#000':'#C6CBD5'}">
|
|
{{dataDetails.businessTermDate?dataDetails.businessTermDate:'选择期限截止日期'}}
|
|
{{dataDetails.businessTermDate?dataDetails.businessTermDate:'选择期限截止日期'}}
|
|
</view>
|
|
</view>
|
|
@@ -44,8 +43,8 @@
|
|
</view>
|
|
</view>
|
|
<view class="flex row noborder">
|
|
<view class="flex row noborder">
|
|
<view class="left-text">统一社会信用代码</view>
|
|
<view class="left-text">统一社会信用代码</view>
|
|
- <u--input placeholder="请输入统一社会信用代码" inputAlign='left' border="none"
|
|
|
|
- v-model="dataDetails.unifiedSocialCreditCode">
|
|
|
|
|
|
+ <u--input @blur='codeBlur' placeholder="请输入统一社会信用代码" inputAlign='left' border="none"
|
|
|
|
+ v-model="dataDetails.unifiedSocialCreditCode" maxlength='18'>
|
|
</u--input>
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
@@ -54,15 +53,15 @@
|
|
<view class="flex border-bottom mt20 align-center">
|
|
<view class="flex border-bottom mt20 align-center">
|
|
<view class="left">企业名称</view>
|
|
<view class="left">企业名称</view>
|
|
<view class="flex right">
|
|
<view class="flex right">
|
|
- <u--input placeholder="输入企业名称" inputAlign='left' border="none" v-model="dataDetails.companyName"
|
|
|
|
- @blur='companyNameBlur'>
|
|
|
|
|
|
+ <u--input placeholder="输入企业名称" @input='companyNamechange' inputAlign='left' border="none"
|
|
|
|
+ v-model="dataDetails.companyName" @blur='companyNameBlur'>
|
|
</u--input>
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="flex border-bottom mt20 align-center">
|
|
<view class="flex border-bottom mt20 align-center">
|
|
<view class="left">法定代表人姓名</view>
|
|
<view class="left">法定代表人姓名</view>
|
|
<view class="flex right">
|
|
<view class="flex right">
|
|
- <u--input placeholder="输入法定代表人姓名" inputAlign='left' border="none"
|
|
|
|
|
|
+ <u--input disabled placeholder="输入法定代表人姓名" inputAlign='left' border="none"
|
|
v-model="dataDetails.legalPersonName">
|
|
v-model="dataDetails.legalPersonName">
|
|
</u--input>
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
@@ -70,18 +69,25 @@
|
|
<view class="flex border-bottom mt20 align-center">
|
|
<view class="flex border-bottom mt20 align-center">
|
|
<view class="left">联系电话</view>
|
|
<view class="left">联系电话</view>
|
|
<view class="flex right">
|
|
<view class="flex right">
|
|
- <u--input disabledColor='#fff' placeholder="输入联系电话" inputAlign='left' border="none"
|
|
|
|
|
|
+ <u--input disabledColor='#fff' placeholder="输入联系电话" maxlength="15" inputAlign='left' border="none"
|
|
v-model="dataDetails.phone">
|
|
v-model="dataDetails.phone">
|
|
</u--input>
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+ <view class="flex border-bottom mt20 align-center">
|
|
|
|
+ <view class="left">通讯地址</view>
|
|
|
|
+ <view class="flex right">
|
|
|
|
+ <u--input disabledColor='#fff' placeholder="输入通讯地址" maxlength="15" inputAlign='left' border="none"
|
|
|
|
+ v-model="dataDetails.mailingAddress">
|
|
|
|
+ </u--input>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
<view class="title">上传身份证人像面</view>
|
|
<view class="title">上传身份证人像面</view>
|
|
<view @click.stop="uploadImg(2)" class="picture picture1" v-if="!dataDetails.cardAddressUrl">
|
|
<view @click.stop="uploadImg(2)" class="picture picture1" v-if="!dataDetails.cardAddressUrl">
|
|
<image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
|
|
<image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
|
|
<view class="text">上传身份证人像面</view>
|
|
<view class="text">上传身份证人像面</view>
|
|
</view>
|
|
</view>
|
|
- <view v-if="dataDetails.cardAddressUrl" @click.stop="uploadImg(2)"
|
|
|
|
- class="preview-card-img picture">
|
|
|
|
|
|
+ <view v-if="dataDetails.cardAddressUrl" @click.stop="uploadImg(2)" class="preview-card-img picture">
|
|
<image class="" :src="dataDetails.cardAddressUrl" mode="aspectFit" style=""></image>
|
|
<image class="" :src="dataDetails.cardAddressUrl" mode="aspectFit" style=""></image>
|
|
</view>
|
|
</view>
|
|
<view class="title">上传身份证国徽面</view>
|
|
<view class="title">上传身份证国徽面</view>
|
|
@@ -89,31 +95,74 @@
|
|
<image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
|
|
<image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
|
|
<view class="text">上传身份证国徽面</view>
|
|
<view class="text">上传身份证国徽面</view>
|
|
</view>
|
|
</view>
|
|
- <view v-if="dataDetails.cardBackAddressUrl" @click.stop="uploadImg(3)"
|
|
|
|
- class="preview-card-img picture">
|
|
|
|
|
|
+ <view v-if="dataDetails.cardBackAddressUrl" @click.stop="uploadImg(3)" class="preview-card-img picture">
|
|
<image class="" :src="dataDetails.cardBackAddressUrl" mode="aspectFit" style=""></image>
|
|
<image class="" :src="dataDetails.cardBackAddressUrl" mode="aspectFit" style=""></image>
|
|
</view>
|
|
</view>
|
|
<view class="flex border-bottom mt20 align-center">
|
|
<view class="flex border-bottom mt20 align-center">
|
|
- <view class="left">身份证号</view>
|
|
|
|
|
|
+ <view class="left-text">身份证号</view>
|
|
<view class="flex right">
|
|
<view class="flex right">
|
|
- <u--input disabledColor='#fff' placeholder="输入身份证号" inputAlign='left' border="none"
|
|
|
|
|
|
+ <u--input disabledColor='#fff' placeholder="输入身份证号" maxlength="18" inputAlign='left' border="none"
|
|
v-model="dataDetails.cardNumber">
|
|
v-model="dataDetails.cardNumber">
|
|
</u--input>
|
|
</u--input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view class="flex row">
|
|
|
|
- <view class="left-text">身份证有效期</view>
|
|
|
|
- <view style='font-size:14px;width:50%;' class='flex flex-space-between'
|
|
|
|
- @click="selectData(1)">
|
|
|
|
- <view :style="{'color':dataDetails.cardValidityDate ? '#000':'#C6CBD5'}">
|
|
|
|
- {{dataDetails.cardValidityDate?dataDetails.cardValidityDate:'选择期限截止日期'}}
|
|
|
|
- </view>
|
|
|
|
- <view>
|
|
|
|
|
|
+ <view class="flex border-bottom mt20 align-center">
|
|
|
|
+ <view class="left-text">身份证有效期</view>
|
|
|
|
+ <view class='flex right' @click="selectData(1)">
|
|
|
|
+ <span :style="{'color':dataDetails.cardValidityDate ? '#000':'#C6CBD5'}">
|
|
|
|
+ {{dataDetails.cardValidityDate?dataDetails.cardValidityDate:'选择身份证有效期'}}
|
|
|
|
+ </span>
|
|
<u-icon name="arrow-right" color="#7E7E7E" size="10"></u-icon>
|
|
<u-icon name="arrow-right" color="#7E7E7E" size="10"></u-icon>
|
|
|
|
+ <view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- </view>
|
|
|
|
- <!-- <view class="flex row noborder">
|
|
|
|
|
|
+ <view class="flex row border-bottom mt20">
|
|
|
|
+ <view class="left-text">对公账户</view>
|
|
|
|
+ <view class="flex right">
|
|
|
|
+ <u--input disabled placeholder="户名与企业名称一致" inputAlign='left' border="none"
|
|
|
|
+ v-model="dataDetails.corporateAccount">
|
|
|
|
+ </u--input>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="flex row border-bottom mt20">
|
|
|
|
+ <view class="left-text">卡号</view>
|
|
|
|
+ <view class="flex right">
|
|
|
|
+ <u--input placeholder="输入银行卡号码" inputAlign='left' border="none" v-model="dataDetails.bankCard">
|
|
|
|
+ </u--input>
|
|
|
|
+ <view class="" @click="uploadImg(5)">
|
|
|
|
+ <image src="../../../static/images/xiangji-2.png" mode=""
|
|
|
|
+ style="width: 40rpx ;height: 40rpx;margin-top: 10rpx;"></image>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+ </view>
|
|
|
|
+ <view class="flex row border-bottom mt20">
|
|
|
|
+ <view class="left-text">开户行</view>
|
|
|
|
+ <view class="flex right">
|
|
|
|
+ <u--input placeholder="输入开户行" inputAlign='left' border="none" v-model="dataDetails.bankDeposit">
|
|
|
|
+ </u--input>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="flex row border-bottom mt20">
|
|
|
|
+ <view class="left-text khzh-styel">开户支行</view>
|
|
|
|
+ <view class="flex align-center flex-space-between right" v-if="isShowManualInput">
|
|
|
|
+ <u--input class="select-bankzh point" placeholder="输入开户支行" inputAlign='left' border="none"
|
|
|
|
+ v-model="dataDetails.bankDepositBranch">
|
|
|
|
+ </u--input>
|
|
|
|
+ <view @click="manualInput" class="type">选择支行</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="flex align-center flex-space-between right" v-if="!isShowManualInput">
|
|
|
|
+ <!-- <u--input @click="selectZhbank" placeholder="选择开户支行" inputAlign='left' border="none" disabled>
|
|
|
|
+ </u--input> -->
|
|
|
|
+ <view class="select-bankzh" @click="selectZhbank">
|
|
|
|
+ {{dataDetails.bankDepositBranch?dataDetails.bankDepositBranch:'选择开户支行'}}
|
|
|
|
+ </view>
|
|
|
|
+ <view @click="manualInput" class="type">手动输入</view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+ </view>
|
|
|
|
+ <!-- <view class="flex row noborder">
|
|
<view class="left-text">身份证截止日期</view>
|
|
<view class="left-text">身份证截止日期</view>
|
|
<view class="" @click="selectData(1)">
|
|
<view class="" @click="selectData(1)">
|
|
{{dataDetails.cardValidityDate?dataDetails.cardValidityDate:'选择身份证截止日期>'}}
|
|
{{dataDetails.cardValidityDate?dataDetails.cardValidityDate:'选择身份证截止日期>'}}
|
|
@@ -131,7 +180,8 @@
|
|
<view class="flex row noborder mt20 flex-space-between">
|
|
<view class="flex row noborder mt20 flex-space-between">
|
|
<view class="left-text">视频验证(点击按钮播放视频)</view>
|
|
<view class="left-text">视频验证(点击按钮播放视频)</view>
|
|
<view>
|
|
<view>
|
|
- <u-button type="primary" @click="goDetailPage('/pages/mine/company/companyvideo')" size="mini">重新上传
|
|
|
|
|
|
+ <u-button color='#2772FB' type="primary" @click="goDetailPage('/pages/mine/company/companyvideo')"
|
|
|
|
+ size="mini">重新上传
|
|
</u-button>
|
|
</u-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -152,7 +202,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view v-if="value" class='content1'>
|
|
|
|
|
|
+ <!-- <view v-if="value" class='content1'>
|
|
<view class="flex row">
|
|
<view class="flex row">
|
|
<view class="left-text">企业用地是否自有</view>
|
|
<view class="left-text">企业用地是否自有</view>
|
|
<view class="flex right">
|
|
<view class="flex right">
|
|
@@ -191,8 +241,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
- </view>
|
|
|
|
|
|
+ </view> -->
|
|
<view class="content4">
|
|
<view class="content4">
|
|
|
|
|
|
<view class="flex service align-center">
|
|
<view class="flex service align-center">
|
|
@@ -215,6 +264,9 @@
|
|
<u-picker :show="isShowcardValidity" ref="uPicker" :columns="validityPeriod" @confirm="confirmValidityPeriod"
|
|
<u-picker :show="isShowcardValidity" ref="uPicker" :columns="validityPeriod" @confirm="confirmValidityPeriod"
|
|
@change="changeHandler" @cancel="isShowcardValidity=false">
|
|
@change="changeHandler" @cancel="isShowcardValidity=false">
|
|
</u-picker>
|
|
</u-picker>
|
|
|
|
+ <u-picker :show="isShowBank" :columns="columns" :closeOnClickOverlay='true' @close='zhBankClose'
|
|
|
|
+ @cancel='zhBankClose' @confirm='confirmBank'></u-picker>
|
|
|
|
+ </u-picker>
|
|
<u-action-sheet :actions="$helper.imgTypeList" :title="$helper.imgType" :show="isShowimgType"
|
|
<u-action-sheet :actions="$helper.imgTypeList" :title="$helper.imgType" :show="isShowimgType"
|
|
@select="imgTypeSelect" :closeOnClickOverlay="true" :closeOnClickAction="true" @close="isShowimgType=false">
|
|
@select="imgTypeSelect" :closeOnClickOverlay="true" :closeOnClickAction="true" @close="isShowimgType=false">
|
|
</u-action-sheet>
|
|
</u-action-sheet>
|
|
@@ -227,6 +279,7 @@
|
|
mapState
|
|
mapState
|
|
} from 'vuex';
|
|
} from 'vuex';
|
|
import upload from '@/components/upload.vue';
|
|
import upload from '@/components/upload.vue';
|
|
|
|
+ import permision from "@/js_sdk/wa-permission/permission.js"
|
|
import uploadImage from '@/components/ossutil/uploadFile.js';
|
|
import uploadImage from '@/components/ossutil/uploadFile.js';
|
|
export default {
|
|
export default {
|
|
components: {},
|
|
components: {},
|
|
@@ -239,7 +292,10 @@
|
|
},
|
|
},
|
|
consentStatus: false,
|
|
consentStatus: false,
|
|
ValidityPeriodType: '',
|
|
ValidityPeriodType: '',
|
|
|
|
+ isShowManualInput: false,
|
|
value: false,
|
|
value: false,
|
|
|
|
+ isShowBank: false,
|
|
|
|
+ columns: [],
|
|
radioCustomStyle: {
|
|
radioCustomStyle: {
|
|
margin: '0 0 0 20rpx'
|
|
margin: '0 0 0 20rpx'
|
|
},
|
|
},
|
|
@@ -258,6 +314,7 @@
|
|
index: '',
|
|
index: '',
|
|
isShowimgType: false,
|
|
isShowimgType: false,
|
|
validityPeriod: [],
|
|
validityPeriod: [],
|
|
|
|
+ submitstatus:false,
|
|
checked: false,
|
|
checked: false,
|
|
checked1: false,
|
|
checked1: false,
|
|
dataDetails: {
|
|
dataDetails: {
|
|
@@ -267,10 +324,10 @@
|
|
advanceFreightService: 0,
|
|
advanceFreightService: 0,
|
|
landOwnership: '自有',
|
|
landOwnership: '自有',
|
|
videoAddressUrl: null,
|
|
videoAddressUrl: null,
|
|
- legalPersonName: ''
|
|
|
|
-
|
|
|
|
|
|
+ legalPersonName: '',
|
|
|
|
+ corporateAccount: ''
|
|
},
|
|
},
|
|
- dataType:""
|
|
|
|
|
|
+ dataType: ""
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onShow() {
|
|
onShow() {
|
|
@@ -282,6 +339,7 @@
|
|
|
|
|
|
},
|
|
},
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
|
|
+ this.get_camera_permission()
|
|
this.validityPeriod = this.$helper.makeValidityPeriod(0, '长期')
|
|
this.validityPeriod = this.$helper.makeValidityPeriod(0, '长期')
|
|
console.log(this)
|
|
console.log(this)
|
|
this.dataDetails.commonId = this.userInfo.id
|
|
this.dataDetails.commonId = this.userInfo.id
|
|
@@ -301,23 +359,166 @@
|
|
...mapState(['hasLogin', 'userInfo']),
|
|
...mapState(['hasLogin', 'userInfo']),
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ async get_camera_permission() {
|
|
|
|
+ var photol = await permision.requestAndroidPermission("android.permission.CAMERA")
|
|
|
|
+ if (photol == false) {
|
|
|
|
+ uni.showModal({
|
|
|
|
+ title: '提示',
|
|
|
|
+ content: '您已经关闭相机权限,去设置',
|
|
|
|
+ success: function(res) {
|
|
|
|
+ if (res.confirm) {
|
|
|
|
+ permision.gotoAppPermissionSetting()
|
|
|
|
+ // plus.runtime.openURL("app-settings:");
|
|
|
|
+ } else if (res.cancel) {
|
|
|
|
+ console.log('用户点击取消');
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ },
|
|
selectData(num) {
|
|
selectData(num) {
|
|
this.dataType = num
|
|
this.dataType = num
|
|
this.isShowcardValidity = true
|
|
this.isShowcardValidity = true
|
|
},
|
|
},
|
|
|
|
+ zhBankClose() {
|
|
|
|
+ this.isShowBank = false
|
|
|
|
+ },
|
|
|
|
+ // 选择支行
|
|
|
|
+ selectZhbank() {
|
|
|
|
+ if (uni.$u.test.isEmpty(this.columns)) {
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "请先上传银行卡!",
|
|
|
|
+ })
|
|
|
|
+ return true
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.isShowBank = true
|
|
|
|
+ },
|
|
|
|
+ manualInput() {
|
|
|
|
+ if (this.isShowManualInput) {
|
|
|
|
+ if (uni.$u.test.isEmpty(this.dataDetails.payeeAddressUrl)) {
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "请填写卡号!",
|
|
|
|
+ })
|
|
|
|
+ return true
|
|
|
|
+ }
|
|
|
|
+ if (this.columns.length == 0) {
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "请选择手动输入!",
|
|
|
|
+ })
|
|
|
|
+ return true
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.isShowBank = true
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ this.isShowBank = false
|
|
|
|
+ }
|
|
|
|
+ this.isShowManualInput = !this.isShowManualInput
|
|
|
|
+ },
|
|
|
|
+ confirmBank(e) {
|
|
|
|
+ console.log(e)
|
|
|
|
+ this.dataDetails.bankDepositBranch = e.value[0]
|
|
|
|
+ this.isShowBank = false
|
|
|
|
+ },
|
|
|
|
+ uploadImg() {
|
|
|
|
+ this.uploadType = 5
|
|
|
|
+ this.imgTypeSelect()
|
|
|
|
+ // this.isShowimgType = true
|
|
|
|
+ },
|
|
confirmValidityPeriod(e) {
|
|
confirmValidityPeriod(e) {
|
|
|
|
+ if(e.value[0]==''&&e.value[0] != '长期'){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "年份不能为空!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }else if(e.value[1]==''&&e.value[0] != '长期'){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "月份不能为空!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }else if(e.value[2]==''&&e.value[0] != '长期'){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "日期不能为空!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
switch (this.dataType) {
|
|
switch (this.dataType) {
|
|
case 0:
|
|
case 0:
|
|
if (e.value[0] == '长期') {
|
|
if (e.value[0] == '长期') {
|
|
this.dataDetails.businessTermDate = e.value[0]
|
|
this.dataDetails.businessTermDate = e.value[0]
|
|
|
|
+ if(e.value[1]!=''||e.value[2]!=''){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "选择长期时不允许选择月日!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
} else {
|
|
} else {
|
|
|
|
+ var date=new Date()
|
|
|
|
+ if(e.value[0]<date.getFullYear()){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "营业截止日期已过期!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if(e.value[0]==date.getFullYear()&&Number(e.value[1])<(date.getMonth()+1)){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "营业截止日期已过期!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if(e.value[0]==date.getFullYear()&&Number(e.value[1])==(date.getMonth()+1)&&Number(e.value[2])<=(date.getDate())){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "营业截止日期已过期!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
this.dataDetails.businessTermDate = e.value[0] + '-' + e.value[1] + '-' + e.value[2]
|
|
this.dataDetails.businessTermDate = e.value[0] + '-' + e.value[1] + '-' + e.value[2]
|
|
}
|
|
}
|
|
break
|
|
break
|
|
case 1:
|
|
case 1:
|
|
if (e.value[0] == '长期') {
|
|
if (e.value[0] == '长期') {
|
|
this.dataDetails.cardValidityDate = e.value[0]
|
|
this.dataDetails.cardValidityDate = e.value[0]
|
|
|
|
+ if(e.value[1]!=''||e.value[2]!=''){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "选择长期时不允许选择月日!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
} else {
|
|
} else {
|
|
|
|
+ var date=new Date()
|
|
|
|
+ if(e.value[0]<date.getFullYear()){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "身份证已过期!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if(e.value[0]==date.getFullYear()&&Number(e.value[1])<(date.getMonth()+1)){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "身份证已过期!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if(e.value[0]==date.getFullYear()&&Number(e.value[1])==(date.getMonth()+1)&&Number(e.value[2])<=(date.getDate())){
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "身份证已过期!",
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
this.dataDetails.cardValidityDate = e.value[0] + '-' + e.value[1] + '-' + e.value[2]
|
|
this.dataDetails.cardValidityDate = e.value[0] + '-' + e.value[1] + '-' + e.value[2]
|
|
}
|
|
}
|
|
break
|
|
break
|
|
@@ -361,11 +562,18 @@
|
|
// })
|
|
// })
|
|
// });
|
|
// });
|
|
// },
|
|
// },
|
|
|
|
+ companyNamechange(e) {
|
|
|
|
+ console.log(e)
|
|
|
|
+ this.dataDetails.corporateAccount = e
|
|
|
|
+ },
|
|
companyNameBlur() {
|
|
companyNameBlur() {
|
|
|
|
+
|
|
|
|
+
|
|
this.$request.baseRequest('get', '/companyInfo/repeatCompanyInfo', {
|
|
this.$request.baseRequest('get', '/companyInfo/repeatCompanyInfo', {
|
|
commonId: this.userInfo.id,
|
|
commonId: this.userInfo.id,
|
|
companyName: this.dataDetails.companyName
|
|
companyName: this.dataDetails.companyName
|
|
}).then(res => {
|
|
}).then(res => {
|
|
|
|
+ console.log(res)
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
// that.dataDetails.legalPersonName = res.data.name
|
|
// that.dataDetails.legalPersonName = res.data.name
|
|
} else {
|
|
} else {
|
|
@@ -377,6 +585,34 @@
|
|
}
|
|
}
|
|
})
|
|
})
|
|
.catch(res => {
|
|
.catch(res => {
|
|
|
|
+ console.log(res)
|
|
|
|
+ uni.hideLoading()
|
|
|
|
+ uni.showToast({
|
|
|
|
+ title: res.message,
|
|
|
|
+ icon: 'none',
|
|
|
|
+ duration: 2000
|
|
|
|
+ })
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ codeBlur(){
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ this.$request.baseRequest('get', '/companyInfo/checkCreditCode', {
|
|
|
|
+ unifiedSocialCreditCode: this.dataDetails.unifiedSocialCreditCode
|
|
|
|
+ }).then(res => {
|
|
|
|
+ console.log(res)
|
|
|
|
+ if (res.code == 200) {
|
|
|
|
+ // that.dataDetails.legalPersonName = res.data.name
|
|
|
|
+ } else {
|
|
|
|
+ uni.showToast({
|
|
|
|
+ title: res.message,
|
|
|
|
+ icon: 'none',
|
|
|
|
+ duration: 2000
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .catch(res => {
|
|
|
|
+ console.log(res)
|
|
uni.hideLoading()
|
|
uni.hideLoading()
|
|
uni.showToast({
|
|
uni.showToast({
|
|
title: res.message,
|
|
title: res.message,
|
|
@@ -444,6 +680,13 @@
|
|
})
|
|
})
|
|
return true
|
|
return true
|
|
}
|
|
}
|
|
|
|
+ if (uni.$u.test.isEmpty(this.dataDetails.mailingAddress)) {
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "通讯地址不能为空!",
|
|
|
|
+ })
|
|
|
|
+ return true
|
|
|
|
+ }
|
|
// if (uni.$u.test.isEmpty(this.dataDetails.registeredPaidAmount)) {
|
|
// if (uni.$u.test.isEmpty(this.dataDetails.registeredPaidAmount)) {
|
|
// this.$refs.uToast.show({
|
|
// this.$refs.uToast.show({
|
|
// type: 'error',
|
|
// type: 'error',
|
|
@@ -451,6 +694,13 @@
|
|
// })
|
|
// })
|
|
// return true
|
|
// return true
|
|
// }
|
|
// }
|
|
|
|
+ if (this.dataDetails.cardNumber.length != 18) {
|
|
|
|
+ this.$refs.uToast.show({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: "身份证号输入错误!",
|
|
|
|
+ })
|
|
|
|
+ return true
|
|
|
|
+ }
|
|
if (uni.$u.test.isEmpty(this.dataDetails.businessLicenseAddressUrl)) {
|
|
if (uni.$u.test.isEmpty(this.dataDetails.businessLicenseAddressUrl)) {
|
|
this.$refs.uToast.show({
|
|
this.$refs.uToast.show({
|
|
type: 'error',
|
|
type: 'error',
|
|
@@ -472,25 +722,32 @@
|
|
})
|
|
})
|
|
return true
|
|
return true
|
|
}
|
|
}
|
|
-
|
|
|
|
- if (this.dataDetails.advanceFreightService == 1 && uni.$u.test.isEmpty(this.dataDetails
|
|
|
|
- .propertyAddressUrl)) {
|
|
|
|
|
|
+ if (!uni.$u.test.rangeLength(this.dataDetails.unifiedSocialCreditCode, [18, 18])) {
|
|
this.$refs.uToast.show({
|
|
this.$refs.uToast.show({
|
|
type: 'error',
|
|
type: 'error',
|
|
- message: "房产证或租赁合同不能为空!",
|
|
|
|
|
|
+ message: "统一社会信用代码输出错误!",
|
|
})
|
|
})
|
|
return true
|
|
return true
|
|
}
|
|
}
|
|
|
|
+ //先注释掉
|
|
|
|
+ // if (this.dataDetails.advanceFreightService == 1 && uni.$u.test.isEmpty(this.dataDetails
|
|
|
|
+ // .propertyAddressUrl)) {
|
|
|
|
+ // this.$refs.uToast.show({
|
|
|
|
+ // type: 'error',
|
|
|
|
+ // message: "房产证或租赁合同不能为空!",
|
|
|
|
+ // })
|
|
|
|
+ // return true
|
|
|
|
+ // }
|
|
|
|
|
|
- if (this.dataDetails.advanceFreightService == 1 && this.dataDetails.landOwnership == '租赁') {
|
|
|
|
- if (uni.$u.test.isEmpty(this.dataDetails.siteLeaseDate)) {
|
|
|
|
- this.$refs.uToast.show({
|
|
|
|
- type: 'error',
|
|
|
|
- message: "场地租赁截止日期不能为空!",
|
|
|
|
- })
|
|
|
|
- return true
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ // if (this.dataDetails.advanceFreightService == 1 && this.dataDetails.landOwnership == '租赁') {
|
|
|
|
+ // if (uni.$u.test.isEmpty(this.dataDetails.siteLeaseDate)) {
|
|
|
|
+ // this.$refs.uToast.show({
|
|
|
|
+ // type: 'error',
|
|
|
|
+ // message: "场地租赁截止日期不能为空!",
|
|
|
|
+ // })
|
|
|
|
+ // return true
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
// if (uni.$u.test.isEmpty(this.dataDetails.videoAddressUrl)) {
|
|
// if (uni.$u.test.isEmpty(this.dataDetails.videoAddressUrl)) {
|
|
// this.$refs.uToast.show({
|
|
// this.$refs.uToast.show({
|
|
// type: 'error',
|
|
// type: 'error',
|
|
@@ -501,36 +758,43 @@
|
|
},
|
|
},
|
|
submit() {
|
|
submit() {
|
|
if (this.validate()) return
|
|
if (this.validate()) return
|
|
- if (!this.consentStatus) {
|
|
|
|
- uni.showToast({
|
|
|
|
- title: '请勾选协议',
|
|
|
|
- icon: 'none',
|
|
|
|
- duration: 2000
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- uni.showLoading({
|
|
|
|
- title: '加载中',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
- var _this = this
|
|
|
|
- this.$request.baseRequest('post', '/companyInfo/api/addCompanyInfo', _this.dataDetails).then(res => {
|
|
|
|
- uni.hideLoading()
|
|
|
|
- uni.$u.toast('提交成功')
|
|
|
|
- uni.removeStorageSync("videoSrc")
|
|
|
|
- uni.navigateBack({
|
|
|
|
- delta: 1
|
|
|
|
- })
|
|
|
|
-
|
|
|
|
- })
|
|
|
|
- .catch(res => {
|
|
|
|
- uni.hideLoading()
|
|
|
|
|
|
+ if(!this.submitstatus){
|
|
|
|
+ this.submitstatus=true
|
|
|
|
+
|
|
|
|
+ if (!this.consentStatus) {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
- title: res.message,
|
|
|
|
|
|
+ title: '请勾选协议',
|
|
icon: 'none',
|
|
icon: 'none',
|
|
duration: 2000
|
|
duration: 2000
|
|
})
|
|
})
|
|
- });
|
|
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: '加载中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
|
|
+ var _this = this
|
|
|
|
+ this.$request.baseRequest('post', '/companyInfo/api/addCompanyInfo', _this.dataDetails).then(res => {
|
|
|
|
+ uni.hideLoading()
|
|
|
|
+ uni.$u.toast('提交成功')
|
|
|
|
+ this.submitstatus=false
|
|
|
|
+ uni.removeStorageSync("videoSrc")
|
|
|
|
+ uni.navigateBack({
|
|
|
|
+ delta: 1
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ })
|
|
|
|
+ .catch(res => {
|
|
|
|
+ uni.hideLoading()
|
|
|
|
+ this.submitstatus=false
|
|
|
|
+ uni.showToast({
|
|
|
|
+ title: res.message,
|
|
|
|
+ icon: 'none',
|
|
|
|
+ duration: 2000
|
|
|
|
+ })
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
},
|
|
},
|
|
consent() {
|
|
consent() {
|
|
this.consentStatus = !this.consentStatus
|
|
this.consentStatus = !this.consentStatus
|
|
@@ -581,94 +845,123 @@
|
|
imgTypeSelect(val) {
|
|
imgTypeSelect(val) {
|
|
var _this = this
|
|
var _this = this
|
|
// if (val.name == '相册') {
|
|
// if (val.name == '相册') {
|
|
- uni.chooseImage({
|
|
|
|
- count: 1,
|
|
|
|
- // sourceType: ,
|
|
|
|
- success: function(res) {
|
|
|
|
- console.log(JSON.stringify(res.tempFilePaths));
|
|
|
|
-
|
|
|
|
- uploadImage('image', res.tempFilePaths[0], 'appData/',
|
|
|
|
- result => {
|
|
|
|
- // 上传成功回调函数
|
|
|
|
- switch (_this.uploadType) {
|
|
|
|
-
|
|
|
|
- // 身份正面
|
|
|
|
- case 1:
|
|
|
|
- _this.dataDetails.businessLicenseAddressUrl = result
|
|
|
|
- // 识别
|
|
|
|
- _this.$request.baseRequest('get',
|
|
|
|
- '/cargoOwnerInfo/api/licenseShibie', {
|
|
|
|
- licenseImg: result,
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code == '200') {
|
|
|
|
- if(res.data){
|
|
|
|
- if (res.data.validPeriod == '29991231') {
|
|
|
|
- _this.dataDetails.businessTermDate = '长期'
|
|
|
|
- }
|
|
|
|
- _this.dataDetails.unifiedSocialCreditCode = res
|
|
|
|
- .data.regNum
|
|
|
|
- _this.dataDetails.legalPersonName = res.data
|
|
|
|
- .licensePerson
|
|
|
|
- _this.dataDetails.companyName = res.data
|
|
|
|
- .licenseName
|
|
|
|
- console.log(res)
|
|
|
|
- _this.$forceUpdate()
|
|
|
|
- }else{
|
|
|
|
- uni.$u.toast('请上传营业执照');
|
|
|
|
|
|
+ uni.chooseImage({
|
|
|
|
+ count: 1,
|
|
|
|
+ // sourceType: ,
|
|
|
|
+ success: function(res) {
|
|
|
|
+ console.log(_this.uploadType);
|
|
|
|
+
|
|
|
|
+ uploadImage('image', res.tempFilePaths[0], 'appData/',
|
|
|
|
+ result => {
|
|
|
|
+ // 上传成功回调函数
|
|
|
|
+ switch (_this.uploadType) {
|
|
|
|
+
|
|
|
|
+ // 身份正面
|
|
|
|
+ case 1:
|
|
|
|
+ _this.dataDetails.businessLicenseAddressUrl = result
|
|
|
|
+ // 识别
|
|
|
|
+ _this.$request.baseRequest('get',
|
|
|
|
+ '/cargoOwnerInfo/api/licenseShibie', {
|
|
|
|
+ licenseImg: result,
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code == '200') {
|
|
|
|
+ if (res.data) {
|
|
|
|
+ if (res.data.validPeriod == '29991231') {
|
|
|
|
+ _this.dataDetails.businessTermDate = '长期'
|
|
}
|
|
}
|
|
|
|
+ _this.dataDetails.unifiedSocialCreditCode = res
|
|
|
|
+ .data.regNum
|
|
|
|
+ _this.dataDetails.legalPersonName = res.data
|
|
|
|
+ .licensePerson
|
|
|
|
+ _this.dataDetails.companyName = res.data
|
|
|
|
+ .licenseName
|
|
|
|
+ _this.dataDetails.corporateAccount = _this
|
|
|
|
+ .dataDetails.companyName
|
|
|
|
+ console.log(res)
|
|
|
|
+ _this.$forceUpdate()
|
|
}
|
|
}
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ })
|
|
|
|
+ .catch(res => {
|
|
|
|
+ console.log(res)
|
|
|
|
+ uni.$u.toast(res.message);
|
|
|
|
+ });
|
|
|
|
+ console.log(_this.dataDetails.businessLicenseAddressUrl)
|
|
|
|
+ break
|
|
|
|
+ // 身份反面
|
|
|
|
+ case 2:
|
|
|
|
+ _this.dataDetails.cardAddressUrl = result
|
|
|
|
+ // 识别
|
|
|
|
+ _this.$request.baseRequest('get',
|
|
|
|
+ '/driverInfo/personShibie', {
|
|
|
|
+ personImg: result,
|
|
|
|
+ flag: 1
|
|
|
|
+ }).then(res => {
|
|
|
|
+ _this.dataDetails.cardNumber = res.data.recPersonNo
|
|
|
|
+ _this.$forceUpdate()
|
|
|
|
+ })
|
|
|
|
+ .catch(res => {
|
|
|
|
+ uni.$u.toast(res.message);
|
|
|
|
+ });
|
|
|
|
|
|
- })
|
|
|
|
- .catch(res => {
|
|
|
|
- console.log(res)
|
|
|
|
- uni.$u.toast(res.message);
|
|
|
|
- });
|
|
|
|
- console.log(_this.dataDetails.businessLicenseAddressUrl)
|
|
|
|
- break
|
|
|
|
- // 身份反面
|
|
|
|
- case 2:
|
|
|
|
- _this.dataDetails.cardAddressUrl = result
|
|
|
|
- // 识别
|
|
|
|
- _this.$request.baseRequest('get',
|
|
|
|
- '/driverInfo/personShibie', {
|
|
|
|
- personImg: result,
|
|
|
|
- flag:1
|
|
|
|
- }).then(res => {
|
|
|
|
- _this.dataDetails.cardNumber = res.data.recPersonNo
|
|
|
|
- _this.$forceUpdate()
|
|
|
|
- })
|
|
|
|
- .catch(res => {
|
|
|
|
- uni.$u.toast(res.message);
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- break
|
|
|
|
- case 3:
|
|
|
|
|
|
+ break
|
|
|
|
+ case 3:
|
|
_this.dataDetails.cardBackAddressUrl = result
|
|
_this.dataDetails.cardBackAddressUrl = result
|
|
- // 识别
|
|
|
|
- _this.$request.baseRequest('get',
|
|
|
|
- '/driverInfo/personShibie', {
|
|
|
|
- personImg: result,
|
|
|
|
- flag:2
|
|
|
|
- }).then(res => {
|
|
|
|
- if(res.data.idCardValidity){
|
|
|
|
- let date = res.data.idCardValidity.split("-")[1]
|
|
|
|
- _this.dataDetails.cardValidityDate = date.replace('.', '-').replace('.', '-')
|
|
|
|
- }
|
|
|
|
- _this.$forceUpdate()
|
|
|
|
- })
|
|
|
|
- .catch(res => {
|
|
|
|
- uni.$u.toast(res.message);
|
|
|
|
- });
|
|
|
|
|
|
+ // 识别
|
|
|
|
+ _this.$request.baseRequest('get',
|
|
|
|
+ '/driverInfo/personShibie', {
|
|
|
|
+ personImg: result,
|
|
|
|
+ flag: 2
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.data.idCardValidity) {
|
|
|
|
+ let date = res.data.idCardValidity.split("-")[1]
|
|
|
|
+ _this.dataDetails.cardValidityDate = date.replace(
|
|
|
|
+ '.', '-').replace('.', '-')
|
|
|
|
+ }
|
|
|
|
+ _this.$forceUpdate()
|
|
|
|
+ })
|
|
|
|
+ .catch(res => {
|
|
|
|
+ uni.$u.toast(res.message);
|
|
|
|
+ });
|
|
|
|
+ _this.$forceUpdate()
|
|
|
|
+ break;
|
|
|
|
+ case 4:
|
|
|
|
+ _this.dataDetails.propertyAddressUrl = result
|
|
|
|
+ break;
|
|
|
|
+ case 5:
|
|
|
|
+ _this.$request.baseRequest('get',
|
|
|
|
+ '/driverInfo/bankShibie', {
|
|
|
|
+ bankImg: result,
|
|
|
|
+ }).then(res => {
|
|
|
|
+ console.log(res)
|
|
|
|
+ _this.dataDetails.payeeAddressUrl = result
|
|
|
|
+ if (res.data.bankNo) {
|
|
|
|
+ _this.dataDetails.bankCard = res.data.bankNo
|
|
|
|
+ }
|
|
|
|
+ if (res.data.bankName) {
|
|
|
|
+ _this.dataDetails.bankDeposit = res.data.bankName
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 开户支行LIst
|
|
|
|
+ if (res.data.bankNameZhihang) {
|
|
|
|
+ _this.columns.push(res.data
|
|
|
|
+ .bankNameZhihang)
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ _this.columns = []
|
|
|
|
+ }
|
|
_this.$forceUpdate()
|
|
_this.$forceUpdate()
|
|
- break;
|
|
|
|
- case 4:
|
|
|
|
- _this.dataDetails.propertyAddressUrl = result
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
|
|
+ })
|
|
|
|
+ .catch(res => {
|
|
|
|
+ uni.$u.toast(res.message);
|
|
|
|
+ });
|
|
|
|
+ break;
|
|
}
|
|
}
|
|
- )
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ }
|
|
|
|
+ )
|
|
|
|
+ }
|
|
|
|
+ });
|
|
// } else {
|
|
// } else {
|
|
// uni.chooseImage({
|
|
// uni.chooseImage({
|
|
// count: 1,
|
|
// count: 1,
|
|
@@ -736,7 +1029,7 @@
|
|
this.ValidityPeriodType = type
|
|
this.ValidityPeriodType = type
|
|
this.imgTypeSelect()
|
|
this.imgTypeSelect()
|
|
},
|
|
},
|
|
-
|
|
|
|
|
|
+
|
|
changeHandler(e) {
|
|
changeHandler(e) {
|
|
const {
|
|
const {
|
|
columnIndex,
|
|
columnIndex,
|
|
@@ -775,6 +1068,11 @@
|
|
width: 100% !important;
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ .title {
|
|
|
|
+ color: #333333;
|
|
|
|
+ margin: 20rpx 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
.next {
|
|
.next {
|
|
color: #2772FB;
|
|
color: #2772FB;
|
|
font-size: 13px;
|
|
font-size: 13px;
|
|
@@ -787,10 +1085,19 @@
|
|
margin: 20rpx;
|
|
margin: 20rpx;
|
|
|
|
|
|
.left {
|
|
.left {
|
|
- width: 240rpx;
|
|
|
|
|
|
+ width: 50%;
|
|
font-size: 28rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ .left-text {
|
|
|
|
+ // background: red;
|
|
|
|
+ width: 50%;
|
|
|
|
+ color: #333333;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ }
|
|
|
|
+
|
|
.right {
|
|
.right {
|
|
font-size: 28rpx;
|
|
font-size: 28rpx;
|
|
width: calc(100% - 240rpx);
|
|
width: calc(100% - 240rpx);
|
|
@@ -815,15 +1122,30 @@
|
|
align-items: center;
|
|
align-items: center;
|
|
color: #6A7282;
|
|
color: #6A7282;
|
|
}
|
|
}
|
|
|
|
+
|
|
.picture1 {
|
|
.picture1 {
|
|
background: url(../../../static/images/mine/zm.png);
|
|
background: url(../../../static/images/mine/zm.png);
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
}
|
|
}
|
|
|
|
+
|
|
.picture2 {
|
|
.picture2 {
|
|
background: url(../../../static/images/mine/gh.png);
|
|
background: url(../../../static/images/mine/gh.png);
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ .type {
|
|
|
|
+ background: #2772FB;
|
|
|
|
+ border-radius: 10rpx;
|
|
|
|
+ color: white;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ padding: 4rpx 10rpx;
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-items: center;
|
|
|
|
+ height: 68rpx;
|
|
|
|
+ min-width: 124rpx;
|
|
|
|
+ }
|
|
|
|
|
|
.content1 {
|
|
.content1 {
|
|
background: #fff;
|
|
background: #fff;
|
|
@@ -860,7 +1182,7 @@
|
|
margin-top: 20rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
.picture7 {
|
|
.picture7 {
|
|
background: url(../../../static/mine/cy.png);
|
|
background: url(../../../static/mine/cy.png);
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
@@ -871,10 +1193,7 @@
|
|
height: 100rpx;
|
|
height: 100rpx;
|
|
}
|
|
}
|
|
|
|
|
|
- .title {
|
|
|
|
- color: #333333;
|
|
|
|
- margin: 20rpx 0;
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
.content2,
|
|
.content2,
|
|
@@ -954,4 +1273,8 @@
|
|
}
|
|
}
|
|
|
|
|
|
.myVideo {}
|
|
.myVideo {}
|
|
|
|
+
|
|
|
|
+ // /deep/.u-input:disabled{
|
|
|
|
+ // background:transparent !important;
|
|
|
|
+ // }
|
|
</style>
|
|
</style>
|