Files
cai-ui/src/views/cai/smsVerify/index.vue
dute7liang 88dad88c49 init
2024-01-21 22:17:33 +08:00

111 lines
3.3 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="接收号码" prop="receivePhone">
<el-input
v-model="queryParams.receivePhone"
placeholder="请输入接收号码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="smsVerifyList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="状态" align="center" prop="status" />-->
<el-table-column label="类型" align="center" prop="type" >
<template v-slot="scope">
<cai-dict-tag :options="smsTypeList" :value="scope.row.type"/>
</template>
</el-table-column>
<el-table-column label="接收号码" align="center" prop="receivePhone" />
<el-table-column label="验证码" align="center" prop="verifyCode" />
<el-table-column label="发送平台" align="center" prop="sendInterface" />
<el-table-column label="操作IP" align="center" prop="operateIp" />
<el-table-column label="过期时间" align="center" prop="overTime" width="180" />
<el-table-column label="发送时间" align="center" prop="createTime" width="180" />
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import {listSmsVerify} from "@/api/cai/smsVerify";
import {smsTypeList} from "@/constant/statusMap";
export default {
name: "SmsVerify",
data() {
return {
smsTypeList,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 短信验证码表格数据
smsVerifyList: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
receivePhone: undefined,
},
};
},
created() {
this.getList();
},
methods: {
/** 查询短信验证码列表 */
getList() {
this.loading = true;
listSmsVerify(this.queryParams).then(response => {
this.smsVerifyList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
}
};
</script>