init
This commit is contained in:
44
src/api/cai/smsVerify.js
Normal file
44
src/api/cai/smsVerify.js
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询短信验证码列表
|
||||||
|
export function listSmsVerify(query) {
|
||||||
|
return request({
|
||||||
|
url: '/cai/smsVerify/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询短信验证码详细
|
||||||
|
export function getSmsVerify(id) {
|
||||||
|
return request({
|
||||||
|
url: '/cai/smsVerify/' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增短信验证码
|
||||||
|
export function addSmsVerify(data) {
|
||||||
|
return request({
|
||||||
|
url: '/cai/smsVerify',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改短信验证码
|
||||||
|
export function updateSmsVerify(data) {
|
||||||
|
return request({
|
||||||
|
url: '/cai/smsVerify',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除短信验证码
|
||||||
|
export function delSmsVerify(id) {
|
||||||
|
return request({
|
||||||
|
url: '/cai/smsVerify/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
||||||
103
src/views/cai/smsVerify/index.vue
Normal file
103
src/views/cai/smsVerify/index.vue
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
<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="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, getSmsVerify, delSmsVerify, addSmsVerify, updateSmsVerify } from "@/api/cai/smsVerify";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "SmsVerify",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
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>
|
||||||
Reference in New Issue
Block a user