LAPTOP-FO2T5SIU\35838 před 8 měsíci
rodič
revize
af112b2740

+ 4 - 1
src/views/receiveRefundsManagement/refundManagement/addRefund.vue

@@ -344,7 +344,6 @@ export default {
         },
         applicantChange(data) {
             const user = this.nameOption.find(item => item.id === data)
-            console.log('user', user)
             this.form.identityCard = user.value
             this.identityCardChange()
         },
@@ -418,6 +417,10 @@ export default {
                         const json = _this.getItemJson(item)
                         _this.AllData.push(json)
                     })
+                    // 默认全选
+                    _this.AllData.forEach(item => {
+                        this.$refs.eltable.toggleRowSelection(item, true)
+                    })
                 }
                 _this.loading = false
             }).catch((e) => {

+ 1 - 5
src/views/transactionRecord/refundRecordIndex.vue

@@ -49,7 +49,7 @@
         <el-input v-model="search.buyerName" />
       </el-col>
       <el-col :span="2">
-          <div style="text-align: center"><span>退款类型</span></div>
+        <div style="text-align: center"><span>退款类型</span></div>
       </el-col>
       <el-col :span="4">
         <el-select
@@ -58,8 +58,6 @@
           clearable
           filterable
           placeholder="收款类型"
-          :popper-append-to-body="false"
-          popper-class="statistic_base"
           @change="handleSearch"
         >
           <el-option
@@ -67,8 +65,6 @@
             :key="item.value"
             :label="item.label"
             :value="item.value"
-            :popper-append-to-body="false"
-            popper-class="statistic_base"
           />
         </el-select>
       </el-col>