Commit 7a03ee5c8183ed0c052a60efe716d73b34b566bf

Authored by wuxw
1 parent c85e0853

处理业主详情链接

src/components/fee/invoiceApplyDetailFee.vue
... ... @@ -94,7 +94,7 @@ export default {
94 94 this.$router.push({ path: '/fee/feeDetail', query: { detailId: fee.itemObjId }})
95 95 },
96 96 viewAcctDetail(fee) {
97   - this.$router.push({ path: '/owner/ownerDetail', query: { ownerId: fee.ownerId, currentTab: 'ownerDetailAccountReceipt' }})
  97 + this.$router.push({ path: '/views/owner/ownerDetail', query: { ownerId: fee.ownerId, currentTab: 'ownerDetailAccountReceipt' }})
98 98 }
99 99 }
100 100 }
... ...
src/views/car/listOwnerCarList.vue
... ... @@ -97,7 +97,7 @@
97 97 <el-table-column prop="carColor" :label="$t('listOwnerCar.color')" align="center" />
98 98 <el-table-column :label="$t('listOwnerCar.owner')" align="center">
99 99 <template slot-scope="scope">
100   - <router-link :to="`/pages/owner/ownerDetail?ownerId=${scope.row.ownerId}`" target="_blank">
  100 + <router-link :to="`/views/owner/ownerDetail?ownerId=${scope.row.ownerId}`" target="_blank">
101 101 {{ scope.row.ownerName }}({{ scope.row.link }})
102 102 </router-link>
103 103 </template>
... ...
src/views/room/roomList.vue
... ... @@ -48,8 +48,8 @@
48 48 </div>
49 49 <el-form :inline="true" class="text-left">
50 50 <el-form-item>
51   - <el-input :placeholder="$t('roomList.roomIdPlaceholder')" size="small" v-model="roomInfo.conditions.roomId"
52   - class="form-control form-control-sm"></el-input>
  51 + <el-input :placeholder="$t('roomList.roomIdPlaceholder')" size="small"
  52 + v-model="roomInfo.conditions.roomId" class="form-control form-control-sm"></el-input>
53 53 </el-form-item>
54 54 <el-form-item>
55 55 <el-select v-model="roomInfo.conditions.state" size="small" :placeholder="$t('roomList.selectState')">
... ... @@ -103,7 +103,7 @@
103 103 <el-table-column prop="ownerName" :label="$t('roomList.owner')" width="150" align="center">
104 104 <template slot-scope="scope">
105 105 <div v-if="scope.row.ownerName" class="hc-td hand">
106   - <a target="_blank" :href="'/#/pages/owner/ownerDetail?ownerId=' + scope.row.ownerId">
  106 + <a target="_blank" :href="'/#/views/owner/ownerDetail?ownerId=' + scope.row.ownerId">
107 107 {{ scope.row.ownerName }}({{ scope.row.link }})
108 108 </a>
109 109 </div>
... ... @@ -402,8 +402,8 @@ export default {
402 402 console.error('初始化数据失败:', error)
403 403 }
404 404 },
405   - handleRefreshRoom(){
406   - this.listRoom(this.roomInfo.conditions.page,this.roomInfo.conditions.row)
  405 + handleRefreshRoom() {
  406 + this.listRoom(this.roomInfo.conditions.page, this.roomInfo.conditions.row)
407 407 },
408 408 async listRoom(page, row) {
409 409 this.roomInfo.conditions.page = page
... ... @@ -759,11 +759,13 @@ export default {
759 759 .border-radius {
760 760 border-radius: 4px;
761 761 }
  762 +
762 763 /* 在全局样式文件中 */
763 764 .el-button-group .el-button {
764 765 margin-right: 5px;
765 766 margin-bottom: 5px;
766 767 }
  768 +
767 769 .el-button-group .el-button:last-child {
768 770 margin-right: 0;
769 771 }
... ...
src/views/room/shopsList.vue
... ... @@ -57,7 +57,7 @@
57 57 </el-table-column>
58 58 <el-table-column :label="$t('shops.owner')" align="center">
59 59 <template slot-scope="scope">
60   - <router-link v-if="scope.row.ownerName" :to="`/pages/owner/ownerDetail?ownerId=${scope.row.ownerId}`"
  60 + <router-link v-if="scope.row.ownerName" :to="`/views/owner/ownerDetail?ownerId=${scope.row.ownerId}`"
61 61 target="_blank">
62 62 {{ scope.row.ownerName }}
63 63 </router-link>
... ...