|
@@ -11,7 +11,7 @@
|
|
v-model="searchTypeText"
|
|
v-model="searchTypeText"
|
|
placeholder=""
|
|
placeholder=""
|
|
class="typeselect"
|
|
class="typeselect"
|
|
- @change="selecttaskType"
|
|
|
|
|
|
+ @change="selectExamineType"
|
|
:value="searchType"
|
|
:value="searchType"
|
|
>
|
|
>
|
|
<ws-option
|
|
<ws-option
|
|
@@ -59,55 +59,62 @@
|
|
<el-table-column type="expand">
|
|
<el-table-column type="expand">
|
|
<template slot-scope="props">
|
|
<template slot-scope="props">
|
|
<ws-form>
|
|
<ws-form>
|
|
- <div v-for="item in props.row.driverPayeeInfoList">
|
|
|
|
- <ws-info-table>
|
|
|
|
- <ws-form-item
|
|
|
|
- :class="item.accountTypeFlag == 1 ? 'personage' : 'company'"
|
|
|
|
- v-if="item.accountTypeFlag == 1"
|
|
|
|
- label="收款人"
|
|
|
|
- span="1"
|
|
|
|
- prop="payeeName"
|
|
|
|
- class="el-car name"
|
|
|
|
- >
|
|
|
|
- <div style="width: 100%">{{ item.payeeName }}</div>
|
|
|
|
- </ws-form-item>
|
|
|
|
- <ws-form-item
|
|
|
|
- :class="item.accountTypeFlag == 1 ? 'personage' : 'company'"
|
|
|
|
- v-if="item.accountTypeFlag == 2"
|
|
|
|
- label="企业名称"
|
|
|
|
- span="1"
|
|
|
|
- prop="compName"
|
|
|
|
- class="el-car"
|
|
|
|
- >
|
|
|
|
- <div style="width: 100%">{{ item.compName }}</div>
|
|
|
|
- </ws-form-item>
|
|
|
|
- <ws-form-item
|
|
|
|
- :class="item.accountTypeFlag == 1 ? 'personage' : 'company'"
|
|
|
|
- v-if="item.accountTypeFlag == 1"
|
|
|
|
- label="身份证"
|
|
|
|
- span="1"
|
|
|
|
- prop="payeeNumberCard"
|
|
|
|
- class="el-car card"
|
|
|
|
- >
|
|
|
|
- <div style="width: 100%">
|
|
|
|
- {{ item.payeeNumberCard }}
|
|
|
|
- <img
|
|
|
|
- width="12"
|
|
|
|
- height="13"
|
|
|
|
- src="../../../public/img/fujian-grey.png"
|
|
|
|
- alt=""
|
|
|
|
- @click="fujian1(item)"
|
|
|
|
- />
|
|
|
|
- </div>
|
|
|
|
- </ws-form-item>
|
|
|
|
- <ws-form-item
|
|
|
|
- :class="item.accountTypeFlag == 1 ? 'personage' : 'company'"
|
|
|
|
- label="开户行"
|
|
|
|
- span="1"
|
|
|
|
- prop="bankDeposit"
|
|
|
|
- class="el-car"
|
|
|
|
- >
|
|
|
|
- <span
|
|
|
|
|
|
+ <ws-info-table>
|
|
|
|
+ <ws-form-item
|
|
|
|
+ :class="
|
|
|
|
+ props.row.accountTypeFlag == 1 ? 'personage' : 'company'
|
|
|
|
+ "
|
|
|
|
+ v-if="props.row.accountTypeFlag == 1"
|
|
|
|
+ label="收款人"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="payeeName"
|
|
|
|
+ class="el-car name"
|
|
|
|
+ >
|
|
|
|
+ <div style="width: 100%">{{ props.row.payeeName }}</div>
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <ws-form-item
|
|
|
|
+ :class="
|
|
|
|
+ props.row.accountTypeFlag == 1 ? 'personage' : 'company'
|
|
|
|
+ "
|
|
|
|
+ v-if="props.row.accountTypeFlag == 2"
|
|
|
|
+ label="企业名称"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="compName"
|
|
|
|
+ class="el-car"
|
|
|
|
+ >
|
|
|
|
+ <div style="width: 100%">{{ props.row.compName }}</div>
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <ws-form-item
|
|
|
|
+ :class="
|
|
|
|
+ props.row.accountTypeFlag == 1 ? 'personage' : 'company'
|
|
|
|
+ "
|
|
|
|
+ v-if="props.row.accountTypeFlag == 1"
|
|
|
|
+ label="身份证"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="payeeNumberCard"
|
|
|
|
+ class="el-car card"
|
|
|
|
+ >
|
|
|
|
+ <div style="width: 100%">
|
|
|
|
+ {{ props.row.payeeNumberCard }}
|
|
|
|
+ <img
|
|
|
|
+ width="12"
|
|
|
|
+ height="13"
|
|
|
|
+ src="../../../public/img/fujian-grey.png"
|
|
|
|
+ alt=""
|
|
|
|
+ @click="fujian1(props.row)"
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <ws-form-item
|
|
|
|
+ :class="
|
|
|
|
+ props.row.accountTypeFlag == 1 ? 'personage' : 'company'
|
|
|
|
+ "
|
|
|
|
+ label="开户行"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="bankDeposit"
|
|
|
|
+ class="el-car"
|
|
|
|
+ >
|
|
|
|
+ <!-- <span
|
|
style="
|
|
style="
|
|
margin: 10px;
|
|
margin: 10px;
|
|
display: inline-block;
|
|
display: inline-block;
|
|
@@ -125,19 +132,20 @@
|
|
white-space: normal;
|
|
white-space: normal;
|
|
"
|
|
"
|
|
>{{ item.bankDepositBranch }}</span
|
|
>{{ item.bankDepositBranch }}</span
|
|
- >
|
|
|
|
- </ws-form-item>
|
|
|
|
- <ws-form-item
|
|
|
|
- :class="item.accountTypeFlag == 1 ? 'personage' : 'company'"
|
|
|
|
- label="账号"
|
|
|
|
- span="1"
|
|
|
|
- prop="bankCard"
|
|
|
|
- class="el-car"
|
|
|
|
- >
|
|
|
|
- <div style="width: 100%">{{ item.bankCard }}</div>
|
|
|
|
- </ws-form-item>
|
|
|
|
- </ws-info-table>
|
|
|
|
- </div>
|
|
|
|
|
|
+ > -->
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ <ws-form-item
|
|
|
|
+ :class="
|
|
|
|
+ props.row.accountTypeFlag == 1 ? 'personage' : 'company'
|
|
|
|
+ "
|
|
|
|
+ label="账号"
|
|
|
|
+ span="1"
|
|
|
|
+ prop="bankCard"
|
|
|
|
+ class="el-car"
|
|
|
|
+ >
|
|
|
|
+ <div style="width: 100%">{{ props.row.bankCard }}</div>
|
|
|
|
+ </ws-form-item>
|
|
|
|
+ </ws-info-table>
|
|
</ws-form>
|
|
</ws-form>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
@@ -147,25 +155,16 @@
|
|
<span v-else>{{ scope.$index + 1 }}</span>
|
|
<span v-else>{{ scope.$index + 1 }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="customerType" label="类型" >
|
|
|
|
|
|
+ <el-table-column prop="customerType" label="类型"> </el-table-column>
|
|
|
|
+ <el-table-column prop="customerName" label="姓名"> </el-table-column>
|
|
|
|
+ <el-table-column prop="customerNumberCard" label="身份证号">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="customerName" label="姓名" >
|
|
|
|
|
|
+ <el-table-column prop="customerPhone" label="手机号"> </el-table-column>
|
|
|
|
+ <el-table-column prop="payTaxesCard" label="纳税人识别号">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="customerNumberCard" label="身份证号" >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column prop="customerPhone" label="手机号" >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column prop="payTaxesCard" label="纳税人识别号" >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column prop="compAddress" label="地址" >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.residentCityProvincial
|
|
|
|
- }}{{ scope.row.residentCityMunicipal }}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column prop="updateDate" label="更新时间" >
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column prop="businessLicenseAddressUrl" label="附件" >
|
|
|
|
|
|
+ <el-table-column prop="compAddress" label="地址"> </el-table-column>
|
|
|
|
+ <el-table-column prop="updateDate" label="更新时间"> </el-table-column>
|
|
|
|
+ <el-table-column prop="businessLicenseAddressUrl" label="附件">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<img
|
|
<img
|
|
width="18"
|
|
width="18"
|
|
@@ -180,7 +179,7 @@
|
|
}}</span>
|
|
}}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="账户信息" >
|
|
|
|
|
|
+ <el-table-column label="账户信息">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
<el-button
|
|
v-if="!scope.row.expandsStatus"
|
|
v-if="!scope.row.expandsStatus"
|
|
@@ -216,6 +215,7 @@
|
|
size="medium"
|
|
size="medium"
|
|
type="text"
|
|
type="text"
|
|
class="record"
|
|
class="record"
|
|
|
|
+ v-if="scope.row.authenticationStatusKey == 1"
|
|
@click="reject(scope.row)"
|
|
@click="reject(scope.row)"
|
|
>驳回</el-button
|
|
>驳回</el-button
|
|
>
|
|
>
|
|
@@ -223,13 +223,13 @@
|
|
size="medium"
|
|
size="medium"
|
|
type="text"
|
|
type="text"
|
|
class="record"
|
|
class="record"
|
|
- v-hasPermission="
|
|
|
|
- `platformaudit.examine.grainmerchant`
|
|
|
|
- "
|
|
|
|
- v-if="scope.row.authenticationStatus == '审核中'"
|
|
|
|
|
|
+ v-if="scope.row.authenticationStatusKey == 1"
|
|
@click="adopt(scope.row)"
|
|
@click="adopt(scope.row)"
|
|
>通过</el-button
|
|
>通过</el-button
|
|
>
|
|
>
|
|
|
|
+ <template v-else slot-scope="scope">
|
|
|
|
+ {{ scope.row.authenticationStatus }}
|
|
|
|
+ </template>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -352,7 +352,7 @@ export default {
|
|
{ value: '已通过', type: 2 },
|
|
{ value: '已通过', type: 2 },
|
|
{ value: '全部', type: '' },
|
|
{ value: '全部', type: '' },
|
|
],
|
|
],
|
|
- identityAuthenticationInfo:{
|
|
|
|
|
|
+ identityAuthenticationInfo: {
|
|
id: '',
|
|
id: '',
|
|
flag: '',
|
|
flag: '',
|
|
},
|
|
},
|
|
@@ -368,6 +368,11 @@ export default {
|
|
this.$refs.expandstable.toggleRowExpansion(row)
|
|
this.$refs.expandstable.toggleRowExpansion(row)
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ //查找
|
|
|
|
+ lookUp() {
|
|
|
|
+ this.currentPage = 1
|
|
|
|
+ this.getList()
|
|
|
|
+ },
|
|
//查找
|
|
//查找
|
|
handleLook() {
|
|
handleLook() {
|
|
if (this.value2) {
|
|
if (this.value2) {
|
|
@@ -465,12 +470,6 @@ export default {
|
|
.then((response) => {
|
|
.then((response) => {
|
|
for (var i = 0; i < response.records.length; i++) {
|
|
for (var i = 0; i < response.records.length; i++) {
|
|
response.records[i].expandsStatus = false
|
|
response.records[i].expandsStatus = false
|
|
- response.records[i].carNumber =
|
|
|
|
- response.records[i].driverCarInfoList[0].carNumber
|
|
|
|
- response.records[i].carModel =
|
|
|
|
- response.records[i].driverCarInfoList[0].carModel
|
|
|
|
- response.records[i].carLength =
|
|
|
|
- response.records[i].driverCarInfoList[0].carLength
|
|
|
|
if (response.records[i].addressUrl != null) {
|
|
if (response.records[i].addressUrl != null) {
|
|
response.records[i].addressUrlArray =
|
|
response.records[i].addressUrlArray =
|
|
response.records[i].addressUrl.split(',')
|
|
response.records[i].addressUrl.split(',')
|
|
@@ -479,7 +478,6 @@ export default {
|
|
response.records[i].addressUrlArray = []
|
|
response.records[i].addressUrlArray = []
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
this.deptCircularPage.currentPage = response.current
|
|
this.deptCircularPage.currentPage = response.current
|
|
this.deptCircularPage.pageSize = response.size
|
|
this.deptCircularPage.pageSize = response.size
|
|
this.deptBudgetTotal = response.total
|
|
this.deptBudgetTotal = response.total
|
|
@@ -517,10 +515,23 @@ export default {
|
|
return false
|
|
return false
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- selecttaskType(e) {
|
|
|
|
- this.residentCityProvincial = CodeToText[e[0]]
|
|
|
|
- this.residentCityMunicipal = CodeToText[e[1]]
|
|
|
|
- // this.selectedOptions = e
|
|
|
|
|
|
+ selectExamineType(e) {
|
|
|
|
+ for (var i = 0; i < this.searchTypeList.length; i++) {
|
|
|
|
+ if (this.searchTypeList[i].value == e) {
|
|
|
|
+ this.searchType = this.searchTypeList[i].type
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ handlestatus(status) {
|
|
|
|
+ this.searchType = status
|
|
|
|
+ if (status == 1) {
|
|
|
|
+ this.primary = 1
|
|
|
|
+ } else if (status == 2) {
|
|
|
|
+ this.primary = 2
|
|
|
|
+ } else {
|
|
|
|
+ this.primary = 3
|
|
|
|
+ }
|
|
|
|
+ this.getList()
|
|
},
|
|
},
|
|
fujian(row) {
|
|
fujian(row) {
|
|
if (row.addressUrl === null || row.addressUrl === '') {
|
|
if (row.addressUrl === null || row.addressUrl === '') {
|