|
|
|
@ -1143,6 +1143,7 @@
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click="senMsgVisible = false">取 消</el-button>
|
|
|
|
|
<el-button type="primary" @click="handlemsgSend">确 定</el-button>
|
|
|
|
|
<el-button type="primary" @click="handlemsgList">查询短信</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
@ -1155,6 +1156,7 @@ import {
|
|
|
|
|
upgradeListApi,
|
|
|
|
|
updCommentApi,
|
|
|
|
|
sendMsgApi,
|
|
|
|
|
msglistApi,
|
|
|
|
|
} from "@/utils/api/index";
|
|
|
|
|
import rowMsgDialog from "./rowMsgDialog.vue";
|
|
|
|
|
import htmlToExcel from "@/utils/htmlToExcel";
|
|
|
|
@ -2126,7 +2128,7 @@ export default {
|
|
|
|
|
this.$message({
|
|
|
|
|
duration: 1500,
|
|
|
|
|
showClose: true,
|
|
|
|
|
message: item.name + "下发成功",
|
|
|
|
|
message: "短信下发成功",
|
|
|
|
|
type: "success",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
@ -2157,6 +2159,18 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {});
|
|
|
|
|
},
|
|
|
|
|
//查询短信
|
|
|
|
|
handlemsgList() {
|
|
|
|
|
msglistApi({
|
|
|
|
|
termId: this.idArray[0],
|
|
|
|
|
})
|
|
|
|
|
.then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {});
|
|
|
|
|
},
|
|
|
|
|
//执行操作
|
|
|
|
|
changeIssue(params) {
|
|
|
|
|
cmdSendApi(params)
|
|
|
|
|