|
@@ -236,7 +236,48 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="row">
|
|
|
- <view class="label-im"><text class="red">*</text>收款账号:<text class="sms">(用于接收最终结算金额)</text></view>
|
|
|
+ <view class="label">账户类型:</view>
|
|
|
+ <view class="select spacing">
|
|
|
+ <picker
|
|
|
+ @change="bindPickerBankType($event)"
|
|
|
+ :value="index"
|
|
|
+ :range="bankActions"
|
|
|
+ range-key="name"
|
|
|
+ >
|
|
|
+ <input
|
|
|
+ class="input"
|
|
|
+ type="text"
|
|
|
+ disabled="true"
|
|
|
+ v-model="bankTypeText"
|
|
|
+ placeholder="请选择发布身份"
|
|
|
+ placeholder-class="placeholder"
|
|
|
+ />
|
|
|
+ </picker>
|
|
|
+ </view>
|
|
|
+ <text class="iconfont icon-xiayibu"></text>
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ <view class="label">开户名:</view>
|
|
|
+ <view class="spacing">
|
|
|
+ <input type="text"
|
|
|
+ v-model="secondParams.accountName"
|
|
|
+ maxlength="15"
|
|
|
+ placeholder="请输入采美对接人姓名"
|
|
|
+ placeholder-class="placeholder">
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ <view class="label">开户行:</view>
|
|
|
+ <view class="spacing">
|
|
|
+ <input type="text"
|
|
|
+ v-model="secondParams.banOfDeposit"
|
|
|
+ maxlength="15"
|
|
|
+ placeholder="请输入采美对接人姓名"
|
|
|
+ placeholder-class="placeholder">
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ <view class="label-im">收款账号:<text class="sms">(用于接收最终结算金额)</text></view>
|
|
|
<view class="spacing file-none">
|
|
|
<input type="text"
|
|
|
v-model="secondParams.cardNumber"
|
|
@@ -429,6 +470,7 @@
|
|
|
isIphoneX: this.$store.state.isIphoneX,
|
|
|
popupShow:true,
|
|
|
userIdentity:0,
|
|
|
+ bankTypeText:'请选择账户类型',
|
|
|
publisherText:'个人身份',
|
|
|
organizationTypeText:'请选择二手分类',
|
|
|
organizationTypeText1:'请选择商品类型',
|
|
@@ -452,6 +494,10 @@
|
|
|
{ name:'仪器报关单',value:4,isChecked:false},
|
|
|
{ name:'无任何文件',value:5,isChecked:false}
|
|
|
],
|
|
|
+ bankActions:[
|
|
|
+ {name:'公账',value:1},
|
|
|
+ {name:'私账',value:2},
|
|
|
+ ],
|
|
|
GoodsImagesList:[],
|
|
|
secondParams:{
|
|
|
publishIdentity:1, // 发布者身份 1 个人身份 2 公司身份
|
|
@@ -488,7 +534,10 @@
|
|
|
ossName:'',
|
|
|
productDetails:'',//商品详细信息
|
|
|
announType:1,//发布类型 1.二手预成交商品 2.二手估价商品
|
|
|
- source:4//二手发布来源.1:WWW,2:小程序,3:后台,4:协销
|
|
|
+ source:4,//二手发布来源.1:WWW,2:小程序,3:后台,4:协销
|
|
|
+ accountName:'',//开户名
|
|
|
+ banOfDeposit:'',//开户行
|
|
|
+ accountType:'', // 账户类型
|
|
|
},
|
|
|
checkedFileTypeList:[],
|
|
|
addressData:{
|
|
@@ -533,6 +582,10 @@
|
|
|
this.publisherText = this.publisherActions[e.target.value].name
|
|
|
this.secondParams.publishIdentity = this.publisherActions[e.target.value].value
|
|
|
},
|
|
|
+ bindPickerBankType(e) {// 选择账户类型
|
|
|
+ this.bankTypeText = this.bankActions[e.target.value].name
|
|
|
+ this.secondParams.accountType = this.bankActions[e.target.value].name
|
|
|
+ },
|
|
|
bindPickerChange(e) {// 选择二手分类
|
|
|
this.secondParams.secondHandType = this.categoryActions[e.target.value].value
|
|
|
if(this.secondParams.secondHandType === 1){
|