|
@@ -69,6 +69,7 @@
|
|
<el-col :span="24" :xs="24">
|
|
<el-col :span="24" :xs="24">
|
|
<div class="dialog-footer" style="text-align: center; margin-top: 30px;">
|
|
<div class="dialog-footer" style="text-align: center; margin-top: 30px;">
|
|
<el-button type="primary" @click="submitForm">发 送 短 信</el-button>
|
|
<el-button type="primary" @click="submitForm">发 送 短 信</el-button>
|
|
|
|
+ <el-button type="primary" @click="handleExport">短 信 设 置</el-button>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
<!--用户数据-->
|
|
<!--用户数据-->
|
|
@@ -378,8 +379,8 @@ export default {
|
|
this.msgSuccess("请选择短信模板");
|
|
this.msgSuccess("请选择短信模板");
|
|
return false
|
|
return false
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
if(this.form.content == undefined){
|
|
if(this.form.content == undefined){
|
|
this.msgSuccess("请输入短信内容");
|
|
this.msgSuccess("请输入短信内容");
|
|
return false
|
|
return false
|
|
@@ -416,16 +417,9 @@ export default {
|
|
},
|
|
},
|
|
/** 导出按钮操作 */
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
handleExport() {
|
|
- const queryParams = this.queryParams;
|
|
|
|
- this.$confirm('是否确认导出所有用户数据项?', "警告", {
|
|
|
|
- confirmButtonText: "确定",
|
|
|
|
- cancelButtonText: "取消",
|
|
|
|
- type: "warning"
|
|
|
|
- }).then(function() {
|
|
|
|
- return exportUser(queryParams);
|
|
|
|
- }).then(response => {
|
|
|
|
- this.download(response.msg);
|
|
|
|
- })
|
|
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: '../../phone/smsstee',
|
|
|
|
+ })
|
|
},
|
|
},
|
|
/** 导入按钮操作 */
|
|
/** 导入按钮操作 */
|
|
handleImport() {
|
|
handleImport() {
|