Compare commits

..

2 Commits

  1. 1
      src/components/Dialog/src/Dialog.vue
  2. 4
      src/views/Clue/Order/Comp/DialogFeebackAudit.vue
  3. 2
      src/views/Clue/Order/Comp/SchoolSettle.vue

@ -67,6 +67,7 @@ const emit = defineEmits(['close'])
destroy-on-close
draggable
lock-scroll
append-to-body
v-bind="getBindValue"
@close="emit('close')"
>

@ -48,7 +48,7 @@
</template>
<script name="DialogFeebackAudit" setup>
import { getFollowUserList } from '@/api/clue'
import { auditPayment } from '@/api/clue/payment'
import { auditPayment, getPaymentDetail } from '@/api/clue/payment'
import { dateFormatter, formatDate } from '@/utils/formatTime'
import {} from '@/utils/formatTime'
const message = useMessage() //
@ -126,7 +126,7 @@ const open = async (row) => {
dialogTitle.value = '回款审核'
resetForm(row.id)
//
orderInfo.value = { ...row }
orderInfo.value = await getPaymentDetail({ id: row.id })
//
getFollowInfo(row.clueId)
}

@ -133,7 +133,7 @@
<el-form-item>
<el-button @click="handleSearch" v-hasPermi="['clue:order:settle-search']">查询</el-button>
<el-button @click="handleReset" v-hasPermi="['clue:order:settle-reset']">重置</el-button>
<el-button @click="batchSettle" v-hasPermi="['clue:order:settle-settle-batch-audit']">
<el-button @click="batchSettle" v-hasPermi="['clue:order:settle-batch-audit']">
批量结算
</el-button>
</el-form-item>

Loading…
Cancel
Save