Browse Source

详情问题

Shannon_mu 2 years ago
parent
commit
61c4dbe0e4

+ 1 - 1
operationSupport/src/views/payService/depositManagement/stepPage/collections.vue

@@ -8,7 +8,7 @@
                         <div class="labelText">费用类型:</div>
                         <span class="contentText">
                             {{
-                                !!thisItem['depositType'] && !!thisItem['depositType'] == 1
+                                !!thisItem['depositType'] && thisItem['depositType'] == 1
                                     ? '装修押金'
                                     : thisItem['depositType'] == 2
                                     ? '租赁押金'

+ 1 - 1
operationSupport/src/views/payService/depositManagement/stepPage/details.vue

@@ -8,7 +8,7 @@
                         <template v-if="item.slot">
                             <template v-if="item.slot == 'depositType'">
                                 {{
-                                    !!thisItem['depositType'] && !!thisItem['depositType'] == 1
+                                    !!thisItem['depositType'] && thisItem['depositType'] == 1
                                         ? '装修押金'
                                         : thisItem['depositType'] == 2
                                         ? '租赁押金'

+ 1 - 1
operationSupport/src/views/payService/depositManagement/stepPage/refund.vue

@@ -5,7 +5,7 @@
             <el-col :span="12">
                 <el-form-item label="费用类型:">
                     {{
-                        !!thisItem['depositType'] && !!thisItem['depositType'] == 1
+                        !!thisItem['depositType'] && thisItem['depositType'] == 1
                             ? '装修押金'
                             : thisItem['depositType'] == 2
                             ? '租赁押金'