This commit is contained in:
@@ -1,10 +1,5 @@
|
||||
<template>
|
||||
<ElDialog
|
||||
v-model="dialogVisible"
|
||||
title="创建退款申请"
|
||||
width="30%"
|
||||
@closed="handleDialogClosed"
|
||||
>
|
||||
<ElDialog v-model="dialogVisible" title="创建退款申请" width="30%" @closed="handleDialogClosed">
|
||||
<ElForm ref="formRef" :model="formData" :rules="formRules" label-width="120px">
|
||||
<ElFormItem label="订单号" prop="order_id">
|
||||
<ElSelect
|
||||
@@ -79,7 +74,7 @@
|
||||
const props = defineProps<Props>()
|
||||
const emit = defineEmits<{
|
||||
'update:modelValue': [value: boolean]
|
||||
'success': []
|
||||
success: []
|
||||
}>()
|
||||
|
||||
const dialogVisible = computed({
|
||||
|
||||
@@ -42,11 +42,24 @@
|
||||
:label="`${card.iccid} - 插槽${card.slot_position} - ${card.carrier_name}`"
|
||||
:value="card.iccid"
|
||||
>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between; width: 100%">
|
||||
<div
|
||||
style="
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
"
|
||||
>
|
||||
<span>{{ card.iccid }}</span>
|
||||
<div>
|
||||
<ElTag size="small" style="margin-left: 10px">插槽{{ card.slot_position }}</ElTag>
|
||||
<ElTag v-if="card.carrier_name" size="small" type="success" style="margin-left: 5px">{{ card.carrier_name }}</ElTag>
|
||||
<ElTag
|
||||
v-if="card.carrier_name"
|
||||
size="small"
|
||||
type="success"
|
||||
style="margin-left: 5px"
|
||||
>{{ card.carrier_name }}</ElTag
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</ElOption>
|
||||
|
||||
Reference in New Issue
Block a user