Przeglądaj źródła

私有跟单开票对账金额交互异常问题

@dongkboy 2 miesięcy temu
rodzic
commit
89a5072e58
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/views/receivable/documentary/ticket.vue

+ 2 - 2
src/views/receivable/documentary/ticket.vue

@@ -135,7 +135,7 @@
         <el-button type="primary" @click="handelComfirm()">确定</el-button>
       </template>
     </el-dialog>
-    <el-dialog :close-on-click-modal="false" v-model="editShow" width="600" :title="isSettlement ? '开票并结算' : '开票'">
+    <el-dialog :close-on-click-modal="false" v-model="editShow" width="600" :title="isSettlement ? '开票并结算' : '开票'" draggable>
       <el-form ref="CountForm" :model="editForm" :rules="countRules" label-width="120">
         <el-form-item prop="receivableSupervisePremium" label="应收金额">
           <el-input v-model="editForm.receivablePremium" placeholder="请输入" disabled></el-input>
@@ -181,7 +181,7 @@ const editShow = ref(false)
 const editForm = ref({})
 const handleEdit = (row) => {
   editShow.value = true
-  editForm.value = row
+  editForm.value = {...row}
 }
 const companyIdprops = {
   expandTrigger: 'hover' as const,