瀏覽代碼

修改title

bihuisong 1 年之前
父節點
當前提交
6e5b09574c
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      src/views/highServer/liveBroadcast/index.vue

+ 6 - 6
src/views/highServer/liveBroadcast/index.vue

@@ -100,7 +100,7 @@
       @pagination="getList"
     />
 
-    <!-- 添加或修改高频服务对话框 -->
+    <!-- 添加或修改直播带货对话框 -->
     <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
       <el-form ref="form" :model="form" :rules="rules" label-width="80px">
         <el-form-item label="标题" prop="titleName">
@@ -141,7 +141,7 @@ export default {
       showSearch: true,
       // 总条数
       total: 0,
-      // 高频服务表格数据
+      // 直播带货表格数据
       serverList: [],
       // 弹出层标题
       title: "",
@@ -173,7 +173,7 @@ export default {
     this.getList();
   },
   methods: {
-    /** 查询高频服务列表 */
+    /** 查询直播带货列表 */
     getList() {
       this.loading = true;
       listServer(this.queryParams).then(response => {
@@ -222,7 +222,7 @@ export default {
     handleAdd() {
       this.reset();
       this.open = true;
-      this.title = "添加高频服务";
+      this.title = "添加直播带货";
     },
     /** 修改按钮操作 */
     handleUpdate(row) {
@@ -231,7 +231,7 @@ export default {
       getServer(id).then(response => {
         this.form = response.data;
         this.open = true;
-        this.title = "修改高频服务";
+        this.title = "修改直播带货";
       });
     },
     /** 提交按钮 */
@@ -257,7 +257,7 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除高频服务编号为"' + ids + '"的数据项?').then(function () {
+      this.$modal.confirm('是否确认删除直播带货编号为"' + ids + '"的数据项?').then(function () {
         return delServer(ids);
       }).then(() => {
         this.getList();