This commit is contained in:
@@ -105,7 +105,7 @@
|
||||
</ElDialog>
|
||||
|
||||
<!-- 分配角色对话框 -->
|
||||
<ElDialog v-model="roleDialogVisible" width="900px">
|
||||
<ElDialog v-model="roleDialogVisible" width="50%">
|
||||
<template #header>
|
||||
<div class="dialog-header">
|
||||
<span class="dialog-title">分配角色</span>
|
||||
@@ -278,7 +278,7 @@
|
||||
// 响应式表单数据
|
||||
const formFilters = reactive({ ...initialSearchState })
|
||||
|
||||
// 店铺和企业列表
|
||||
// 店铺和企业列表
|
||||
const shopList = ref<any[]>([])
|
||||
const enterpriseList = ref<any[]>([])
|
||||
|
||||
|
||||
@@ -154,16 +154,16 @@
|
||||
border
|
||||
style="width: 100%; margin-top: 16px"
|
||||
>
|
||||
<ElTableColumn label="ICCID" min-width="180" show-overflow-tooltip>
|
||||
<ElTableColumn label="ICCID" width="220" show-overflow-tooltip>
|
||||
<template #default="scope">
|
||||
<div style="display: flex; align-items: center; gap: 8px">
|
||||
<div style="display: flex; align-items: center; justify-content: space-between">
|
||||
<ElButton type="primary" link @click="handleNavigateToCardInfo(scope.row.iccid)">
|
||||
{{ scope.row.iccid }}
|
||||
</ElButton>
|
||||
<el-icon
|
||||
class="copy-icon"
|
||||
@click="handleCopyICCID(scope.row.iccid)"
|
||||
style="cursor: pointer; color: #409eff"
|
||||
style="cursor: pointer; color: var(--el-color-primary)"
|
||||
>
|
||||
<CopyDocument />
|
||||
</el-icon>
|
||||
@@ -171,7 +171,7 @@
|
||||
</template>
|
||||
</ElTableColumn>
|
||||
<ElTableColumn prop="msisdn" label="MSISDN" min-width="120" />
|
||||
<ElTableColumn prop="carrier_name" label="运营商" min-width="120" />
|
||||
<ElTableColumn prop="carrier_name" label="运营商" min-width="120" showOverflowTooltip />
|
||||
<ElTableColumn prop="slot_position" label="卡槽位置" width="130">
|
||||
<template #default="scope">
|
||||
<div style="display: flex; gap: 10px">
|
||||
@@ -194,7 +194,7 @@
|
||||
</ElTag>
|
||||
</template>
|
||||
</ElTableColumn>
|
||||
<ElTableColumn label="实名认证策略" width="120">
|
||||
<ElTableColumn label="实名认证策略" width="120" showOverflowTooltip>
|
||||
<template #default="scope">
|
||||
{{ getRealnamePolicyName(scope.row.realname_policy) }}
|
||||
</template>
|
||||
|
||||
@@ -857,11 +857,11 @@
|
||||
prop: 'dateRange',
|
||||
type: 'date',
|
||||
config: {
|
||||
type: 'datetimerange',
|
||||
type: 'daterange',
|
||||
rangeSeparator: '至',
|
||||
startPlaceholder: '开始时间',
|
||||
endPlaceholder: '结束时间',
|
||||
valueFormat: 'YYYY-MM-DDTHH:mm:ssZZ'
|
||||
valueFormat: 'YYYY-MM-DD'
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
</ElDialog>
|
||||
|
||||
<!-- 分配权限对话框 -->
|
||||
<ElDialog v-model="permissionDialogVisible" width="800px">
|
||||
<ElDialog v-model="permissionDialogVisible" width="60%">
|
||||
<template #header>
|
||||
<div class="dialog-header">
|
||||
<span class="dialog-title">分配权限</span>
|
||||
@@ -1126,7 +1126,7 @@
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
max-width: 340px;
|
||||
max-width: 440px;
|
||||
overflow: hidden;
|
||||
border: 1px solid var(--el-border-color);
|
||||
border-radius: 4px;
|
||||
|
||||
Reference in New Issue
Block a user