emis-frontend/src/views/emis/emisSmsSendRecord/index.vue
2024-06-24 09:22:55 +08:00

392 lines
15 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="app-container">
<SearchForm :model="queryParams" ref="queryForm" size="mini" :maxShow="20" v-show="showSearch" @search="handleQuery" @reset="resetQuery">
<!-- label-width="68px" -->
<el-form-item label="运单号" prop="billCode">
<!-- <div slot="label">
<el-radio-group class="query-label" v-model="queryOrderType">
<el-radio :key="1" label="1">运单号</el-radio>
<el-radio :key="0" label="0">手机号</el-radio>
</el-radio-group>
</div> -->
<XdTextareaInput
v-model="queryParams.billCode"
:placeholder="$t('多个流水号逗号或换行隔开')"
clearable
:rows="2"
/>
</el-form-item>
<el-form-item label="手机号" prop="phone">
<el-input
v-model="queryParams.phone"
:placeholder="$t('手机号码')"
clearable
/>
</el-form-item>
<el-form-item label="发送网点" prop="sendSiteCode">
<EmisSiteSimplePicker1 :placeholder="$t('发送网点')" v-model="queryParams.sendSiteCode" :isInitiated="true" ></EmisSiteSimplePicker1>
</el-form-item>
<el-form-item label="发送人" prop="sendManCode">
<EmisUserSimplePicker0 :placeholder="$t('发送人')" v-model="queryParams.sendManCode"></EmisUserSimplePicker0>
</el-form-item>
<el-form-item label="发送时间" prop="sendDate">
<elDateSimplePicker v-model="dateTimeRange" ></elDateSimplePicker>
</el-form-item>
</SearchForm>
<XdTable v-loading="loading"
border
size="mini"
:data="emisSmsSendRecordList"
storageName="emisSmsSendRecord_main"
:showSearch.sync="showSearch"
:queryParams="queryParams"
:total="total"
@queryTable="getList"
@selection-change="handleSelectionChange"
@sort-change="handleSortChange"
>
<div slot="toolbar">
<el-row :gutter="10" class="mb8">
<!-- <el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['emis:emisSmsSendRecord:add']"
>新增</el-button>
</el-col> -->
<!--
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['emis:emisSmsSendRecord:edit']"
>修改</el-button>
</el-col> -->
<!-- <el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['emis:emisSmsSendRecord:remove']"
>删除</el-button>
</el-col> -->
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['emis:emisSmsSendRecord:export']"
>导出</el-button>
</el-col>
</el-row>
</div>
<el-table-column type="selection" width="55" align="center" />
<!--
<el-table-column label="序号" align="center" min-width="60">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)"> </span>
</template>
</el-table-column>
<el-table-column label="xxx" align="left" prop="xxx" min-width="180">
<template slot-scope="scope">
<div class="link-type" @click="handleView(scope.row)">{{scope.row.orderSn}}</div>
</template>
</el-table-column>
<el-table-column label="结算状态" align="center" prop="settleStatus" :sort-orders="['descending','ascending']" sortable="custom" min-width="80">
<template slot-scope="scope">
<div v-if="scope.row.settleStatus == 0" style="color:red;">
<span class="el-tag el-tag--info">未结算</span>
</div>
<div v-if="scope.row.settleStatus == 10" style="color:red;">
<span class="el-tag">待确认</span>
</div>
<div v-if="scope.row.settleStatus == 11" style="color:green;">
<span class="el-tag el-tag--success el-tag--light">已确认</span>
</div>
<div v-if="scope.row.settleStatus == 20" >
<span class="el-tag el-tag--warning el-tag--light">待打款</span>
</div>
<div v-if="scope.row.settleStatus == 21" style="color:green;">
<span class="el-tag el-tag--success el-tag--light">已打款</span>
</div>
<div v-if="scope.row.settleStatus == 40" style="color:red;">
<span class="el-tag el-tag--danger">已拒绝</span>
</div>
</template>
</el-table-column>
-->
<el-table-column :label="$t('运单编号')" align="center" prop="billCode" min-width="160" />
<el-table-column :label="$t('手机号码')" align="center" prop="phone" min-width="130" />
<el-table-column :label="$t('短信内容')" align="center" prop="content" min-width="300" :show-overflow-tooltip="true" />
<el-table-column :label="$t('发送网点')" align="center" prop="sendSiteName" min-width="100" />
<el-table-column :label="$t('发件人')" align="center" prop="sendManName" min-width="100" />
<el-table-column :label="$t('发送人编号')" align="center" prop="sendManCode" min-width="100" />
<el-table-column :label="$t('发送时间')" align="center" prop="createTime" min-width="170" />
<el-table-column :label="$t('短信类型')" align="center" prop="smsType" min-width="80" >
<template slot-scope="scope">
<span v-if="scope.row.smsType==1">寄件</span>
<span v-if="scope.row.smsType==2">签收</span>
<span v-if="scope.row.smsType==3">问题件</span>
</template>
</el-table-column>
<el-table-column :label="$t('渠道发送状态')" align="center" prop="sendStatus" min-width="160" >
<template slot-scope="scope">
<span v-if="scope.row.sendStatus==1">已发送</span>
<span v-if="scope.row.sendStatus==0">未发送</span>
<span v-if="scope.row.sendStatus==-1">发送异常</span>
</template>
</el-table-column>
<el-table-column :label="$t('渠道异常信息')" align="center" prop="errMsg" min-width="170" :show-overflow-tooltip="true" />
<el-table-column :label="$t('任务处理时间')" align="center" prop="taskDate" min-width="170" />
<!-- <el-table-column :label="$t('单条发送费用')" align="center" prop="fee" min-width="100" /> -->
<!-- <el-table-column :label="$t('渠道错误代码')" align="center" prop="errCode" min-width="100" /> -->
</XdTable>
<el-dialog :title="titleForm" :visible.sync="openForm" width="50%" :destroy-on-close="true" v-dialogDrag append-to-body>
<emisSmsSendRecordForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisSmsSendRecordForm>
</el-dialog>
<!--
<el-dialog :title="titleView" :visible.sync="openView" width="60%" :close-on-click-modal="false" v-dialogDrag append-to-body>
<emisSmsSendRecordView :id="id" ></EmisSmsSendRecordView>
</el-dialog>
-->
</div>
</template>
<script>
import { listEmisSmsSendRecord, getEmisSmsSendRecord, delEmisSmsSendRecord, addEmisSmsSendRecord, updateEmisSmsSendRecord } from "@/api/emis/emisSmsSendRecord";
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
// import emisSmsSendRecordView from '@/views/emis/emisSmsSendRecord/emisSmsSendRecordView';
import emisSmsSendRecordForm from '@/views/emis/emisSmsSendRecord/emisSmsSendRecordForm';
import EmisSiteSimplePicker1 from '@/views/emis/EmisBaseTools/EmisSiteSimplePicker.vue';
import EmisUserSimplePicker0 from '@/views/emis/EmisBaseTools/EmisUserSimplePicker.vue';
import elDateAdvPicker from '@/components/DatePickerAdv/elDateAdvPicker';
export default {
name: "emisSmsSendRecord",
components: { elDateSimplePicker,emisSmsSendRecordForm,EmisSiteSimplePicker1,EmisUserSimplePicker0 },
dicts: [
],
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 创建时间搜索
dateTimeRange:[],
queryOrderType:null,
// 总条数
total: 0,
// 短信发送记录表表格数据
emisSmsSendRecordList: [],
currentId:null,
openForm: false,
titleForm: "",
// 弹出展示层
id:null,
titleView:"",
openView: false,
// 更新网点时间范围
daterangeSendDate: [],
// 更新网点时间范围
daterangeTaskDate: [],
// 更新网点时间范围
daterangeCreateTime: [],
// 更新网点时间范围
daterangeUpdateTime: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 20,
billCode: null,
sendSiteCode: null,
sendManCode: null,
},
};
},
created() {
this.queryOrderType=1;
this.getList();
},
methods: {
/** 查询短信发送记录表列表 */
getList() {
this.loading = true;
this.queryParams.params = {};
if(this.queryOrderType==0){
this.queryParams.phone=this.queryParams.billCode;
this.queryParams.billCode=null;
}
listEmisSmsSendRecord(this.addDateRange(this.queryParams, this.dateTimeRange,"createTime")).then(response => {
this.emisSmsSendRecordList = 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
},
// 排序 查询字段是表格中字段名字 动态取值排序顺序
handleSortChange(column) {
this.queryParams.orderByColumn = column.prop;
this.queryParams.isAsc = column.order;
this.getList();
},
/** 新增按钮操作 */
handleAdd(row) {
this.currentId=null;
this.openForm= true;
this.titleForm = "新增";
},
handleShowMoreInput(){
this.moreInputVisible = !this.moreInputVisible;
},
/** 修改按钮操作 */
handleUpdate(row) {
this.currentId= row.id;
this.openForm = true;
this.titleForm = "修改";
},
handleView(row) {
this.id=row.id;
this.titleView="查看";
this.openView=true;
// this.router.push({ path: '/emis/emisSmsSendRecord/viewDetail', query: { id: row.id }})
},
handleFormChanged(){
this.openForm = false;
this.getList();
},
cancelForm(){
this.openForm = false;
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除').then(function() {
return delEmisSmsSendRecord(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
// this.download('emis/emisSmsSendRecord/export', {
// ...this.queryParams
// }, `emisSmsSendRecord_${new Date().getTime()}.xlsx`)
const loadingInstance = this.$loading({
text: '正在导出...'
})
var qParam = {...this.queryParams};
qParam.pageNum=1;
qParam.pageSize=5000;
listEmisSmsSendRecord(this.addDateRange(qParam, this.dateTimeRange)).then(response => {
this.downloadLoading = false
if (response.code === 200) {
const curList = response.rows
import('@/vendor/Export2Excel').then(excel => {
const tHeader = ['id','运单号','发送站点编码','站点名称','发件人名称','发送人编码','短信类型','目标号码','短信内容','单条发送费用','发送渠道','发送时间','渠道发送状态','渠道错误代码','渠道错误信息','任务处理时间','备注','租户ID','删除标志(0代表存在','创建者','创建时间','更新者','更新时间','创建网点','更新网点',];
const filterVal = ['id','billCode','sendSiteCode','sendSiteName','sendManName','sendManCode','smsType','phone','content','fee','smsChannel','sendDate','sendStatus','errCode','errMsg','taskDate','remark','tenantId','delFlag','createBy','createTime','updateBy','updateTime','createSite','updateSite',];
const data = this.formatJson(filterVal, curList, response.rows)
excel.export_json_to_excel({
header: tHeader,
data,
filename: '短信发送记录表',
autoWidth: true
})
loadingInstance.close()
})
}
});
},
formatJson(filterVal, jsonData, resData) {
let index = 0
return jsonData.map(v => filterVal.map(j => {
if (j === 'index') {
return ++index
}
if (j === 'status') {
var statusStr='xxx'
if(v[j] == 10){
statusStr='xxx'
}
return statusStr;
}
return v[j]
}))
},
/** 列索引函数 */
getIndex($index) {
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
},
/** 时间搜索响应函数 */
dateTimeChange(value){
this.dateTimeRange=value;
},
}
};
</script>
<style scoped>
.el-divider{
margin-top: 0px;
background: 0 0;
border-top: 1px solid #E6EBF5;
}
.el-divider__text {
color: #0955ee;
cursor: pointer;
}
</style>