Commit 6ab1cdc6a7eebe6d21d1f3bf2da0133245334a38

Authored by wesley88
1 parent 173aa0e0

11

admin-web-master/src/components/add/addht.vue
... ... @@ -439,6 +439,7 @@
439 439 const element = this.shopList[index];
440 440 console.error(element)
441 441 if(element.phone == this.info.applicant) {
  442 + this.shopId = element.id+''
442 443 this.formInline.relatedMerchants = element.id+''
443 444 this.formInline.tenantName = element.name
444 445 this.formInline.tenantTelephone = element.phone
... ... @@ -448,6 +449,10 @@
448 449 },
449 450 methods: {
450 451 add() {
  452 + console.error({
  453 + ...this.formInline
  454 + })
  455 + // return
451 456 console.error(this.AddData)
452 457 console.error(this.hefuData)
453 458 // console.error()
... ...
admin-web-master/src/views/rent/audit/index.vue
... ... @@ -87,8 +87,8 @@
87 87 <el-table-column label="操作" min-width="150" fixed="right">
88 88 <template slot-scope="scope">
89 89 <div @click="details(scope.row)" class="tableBtn greens">查看</div>
90   - <div @click="details(scope.row)" class="tableBtn greens">审核</div>
91   - <div v-if='scope.row.auditStatus == 2' @click="openhet(scope.row)" class="tableBtn greens">录入合同</div>
  90 + <div v-if="scope.row.auditStatus == '1'" @click="details(scope.row)" class="tableBtn greens">审核</div>
  91 + <div v-if="scope.row.auditStatus == '2'" @click="openhet(scope.row)" class="tableBtn greens">录入合同</div>
92 92 </template>
93 93 </el-table-column>
94 94 </el-table>
... ...