yrik 3 年之前
父節點
當前提交
76ebe14dca
共有 1 個文件被更改,包括 4 次插入11 次删除
  1. 4 11
      ruoyi-ui/src/views/phone/smsstee/index.vue

+ 4 - 11
ruoyi-ui/src/views/phone/smsstee/index.vue

@@ -93,7 +93,7 @@
           size="mini"
           @click="handleExport"
           v-hasPermi="['system:sendMessage:export']"
-        >导出</el-button>
+        >跳转</el-button>
       </el-col>
       <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
     </el-row>
@@ -312,16 +312,9 @@ export default {
     },
     /** 导出按钮操作 */
     handleExport() {
-      const queryParams = this.queryParams;
-      this.$confirm('是否确认导出所有短信设置数据项?', "警告", {
-          confirmButtonText: "确定",
-          cancelButtonText: "取消",
-          type: "warning"
-        }).then(function() {
-          return exportSendMessage(queryParams);
-        }).then(response => {
-          this.download(response.msg);
-        })
+     this.$router.push({
+       path: '../../phone/ecord',
+     })
     }
   }
 };