|
|
@@ -14,40 +14,7 @@
|
|
|
:value="item.value"
|
|
|
>
|
|
|
</el-option> </el-select
|
|
|
- >
|
|
|
- <div style="position: relative;display: inline-block;">
|
|
|
- <span>订单id:</span>
|
|
|
- <el-input
|
|
|
- style="width: 200px;"
|
|
|
- @keydown.enter.native="select"
|
|
|
- placeholder="请输入订单编号"
|
|
|
- v-model="orderId"
|
|
|
- >
|
|
|
- </el-input
|
|
|
- >
|
|
|
- </div>
|
|
|
- <div style="position: relative;display: inline-block;">
|
|
|
- <span>发送商户:</span>
|
|
|
- <el-input
|
|
|
- style="width: 200px;"
|
|
|
- @keydown.enter.native="select"
|
|
|
- placeholder="请输入发送商户手机号"
|
|
|
- v-model="fromTo"
|
|
|
- >
|
|
|
- </el-input
|
|
|
- >
|
|
|
- </div>
|
|
|
- <div style="position: relative;display: inline-block;">
|
|
|
- <span>接收人:</span>
|
|
|
- <el-input
|
|
|
- style="width: 200px;"
|
|
|
- @keydown.enter.native="select"
|
|
|
- placeholder="请输入接收人手机号"
|
|
|
- v-model="sendTo"
|
|
|
- >
|
|
|
- </el-input
|
|
|
- >
|
|
|
- </div>
|
|
|
+ >
|
|
|
<div style="margin:5px;display: inline-block;">
|
|
|
<span>开始时间:</span>
|
|
|
<el-date-picker
|
|
|
@@ -91,69 +58,43 @@
|
|
|
@click="cleans"
|
|
|
>重置
|
|
|
</el-button>
|
|
|
- <!-- <el-button style='margin:0 0 20px 20px;' v-if="isAuth('autonym:tongguo')" size="mini" type="primary"
|
|
|
- icon="document" @click="passClick()" :disabled="checkBoxData.length <= 0">通过</el-button> -->
|
|
|
</div>
|
|
|
<el-table v-loading="tableDataLoading" :data="duanxinData.list">
|
|
|
- <el-table-column fixed prop="complaintId" label="编号" width="80">
|
|
|
+ <el-table-column fixed prop="complaintId" label="编号" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.$index + 1 }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="orderId" label="订单id" width="200" align="center">
|
|
|
+ <el-table-column prop="orderId" label="任务名称" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="goodsCover" label="图片" width="150">
|
|
|
- <template slot-scope="scope">
|
|
|
- <div
|
|
|
- v-for="(item, index) in scope.row.imgs"
|
|
|
- :key="index"
|
|
|
- style="display: inline-block; margin: 3px;"
|
|
|
- >
|
|
|
- <el-popover placement="top-start" title="" trigger="hover">
|
|
|
- <img
|
|
|
- style="width: 50px; height: 50px"
|
|
|
- :src="item"
|
|
|
- alt=""
|
|
|
- slot="reference"
|
|
|
- />
|
|
|
- <img style="width: 300px; height: auto" :src="item" alt="" />
|
|
|
- </el-popover>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="successFlag" label="发送状态" width="150">
|
|
|
- <template slot-scope="scope">
|
|
|
- <div v-if="scope.row.successFlag == 0">发送失败</div>
|
|
|
- <div v-if="scope.row.successFlag == 1">发送成功</div>
|
|
|
- </template>
|
|
|
+ <el-table-column prop="successFlag" label="导出时间" align="center">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="sendContent"
|
|
|
- label="短信内容"
|
|
|
- width="180"
|
|
|
+ label="导出id"
|
|
|
+ align="center"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
prop="sendResult"
|
|
|
- label="发送结果"
|
|
|
- width="120"
|
|
|
+ label="导出条件"
|
|
|
align="center"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="sendTo"
|
|
|
- label="接受人"
|
|
|
- width="180"
|
|
|
+ label="文件大小"
|
|
|
+ align="center"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
prop="sendFromShopName"
|
|
|
- label="发送商户"
|
|
|
- width="180"
|
|
|
- ></el-table-column>
|
|
|
- <el-table-column
|
|
|
- prop="sendTime"
|
|
|
- label="发送时间"
|
|
|
- width="100"
|
|
|
+ label="状态"
|
|
|
+ align="center"
|
|
|
></el-table-column>
|
|
|
+ <el-table-column label="操作" width="150" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>下载</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
<div style="text-align: center;margin-top: 10px;">
|
|
|
<el-pagination
|
|
|
@@ -223,19 +164,6 @@ export default {
|
|
|
// },
|
|
|
};
|
|
|
},
|
|
|
- watch: {
|
|
|
- // 监听路由参数的变化
|
|
|
- '$route.query.indentId': {
|
|
|
- immediate: true, // 如果需要在组件创建时立即触发,设置为true
|
|
|
- handler(newVal, oldVal) {
|
|
|
- // 当路由参数变化时,这里会被调用
|
|
|
- // 你可以在这里根据新的参数执行你的逻辑
|
|
|
- console.log(newVal,oldVal);
|
|
|
- this.orderId = newVal
|
|
|
- // this.dataSelect();
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
methods: {
|
|
|
handleSizeChange(val) {
|
|
|
this.limit = val;
|