浏览代码

门户管理-运营服务-删除导出按钮,修改删除提示消息

Sanmu8 1 年之前
父节点
当前提交
effc278193
共有 1 个文件被更改,包括 1 次插入12 次删除
  1. 1 12
      src/views/OPSERVICE/index.vue

+ 1 - 12
src/views/OPSERVICE/index.vue

@@ -76,17 +76,6 @@
           >删除</el-button
         >
       </el-col>
-      <el-col :span="1.5">
-        <el-button
-          type="warning"
-          plain
-          icon="el-icon-download"
-          size="mini"
-          @click="handleExport"
-          v-hasPermi="['business:OPSERVICE:export']"
-          >导出</el-button
-        >
-      </el-col>
       <right-toolbar
         :showSearch.sync="showSearch"
         @queryTable="getList"
@@ -411,7 +400,7 @@ export default {
     handleDelete(row) {
       const ids = row.id || this.ids;
       this.$modal
-        .confirm('是否确认删除运营服务编号为"' + ids + '"的数据项?')
+        .confirm('确定删除吗?')
         .then(function () {
           return delOPSERVICE(ids);
         })