SIM卡管理

This commit is contained in:
Guoqs
2024-10-31 16:36:02 +08:00
parent f4216d6275
commit 67f4c80222
3 changed files with 54 additions and 37 deletions

View File

@@ -141,17 +141,9 @@
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="主键" align="center" prop="id" />-->
<el-table-column label="ICCID" align="center" prop="iccId" width="180px"/>
<el-table-column label="套餐名称" align="center" prop="name" />
<el-table-column label="对应桩号" align="center" prop="pileSn" width="180px"/>
<el-table-column label="所属站点" align="center" prop="stationName" />
<el-table-column label="sim卡商" align="center" prop="simSupplier" >
<template slot-scope="scope">
<dict-tag
:options="dict.type.sim_supplier"
:value="scope.row.simSupplier"
/>
</template>
</el-table-column>
<el-table-column label="套餐名称" align="center" prop="name" />
<el-table-column label="状态" align="center" prop="simCardStatus" >
<template slot-scope="scope">
<dict-tag
@@ -159,7 +151,14 @@
:value="scope.row.simCardStatus"
/>
</template>
</el-table-column>
<el-table-column label="SIM卡供应商" align="center" prop="simSupplier" >
<template slot-scope="scope">
<dict-tag
:options="dict.type.sim_supplier"
:value="scope.row.simSupplier"
/>
</template>
</el-table-column>
<el-table-column label="套餐总流量" align="center" prop="totalData" />
<el-table-column label="剩余流量" align="center" prop="surplusData" />
@@ -175,7 +174,7 @@
<span v-else-if="scope.row.remainingDays > 30 "> {{scope.row.remainingDays}}</span>
</template>
</el-table-column>
<el-table-column label="SIM卡运营商" align="center" prop="operator" >
<el-table-column label="电信运营商" align="center" prop="operator" >
<template slot-scope="scope">
<dict-tag
:options="dict.type.sim_operator"