Browse Source

优化录制计划关联全部通道提示

648540858 10 months ago
parent
commit
b2469e131c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      web_src/src/components/dialog/linkChannelRecord.vue

+ 4 - 4
web_src/src/components/dialog/linkChannelRecord.vue

@@ -37,8 +37,8 @@
                 </el-button>
                 <el-button size="mini" v-if="hasLink !=='true'" @click="addByDevice()">按设备添加</el-button>
                 <el-button size="mini" v-if="hasLink ==='true'" @click="removeByDevice()">按设备移除</el-button>
-                <el-button size="mini" v-if="hasLink !=='true'" @click="addAll()">全部添加</el-button>
-                <el-button size="mini" v-if="hasLink ==='true'" @click="removeAll()">全部移除</el-button>
+                <el-button size="mini" v-if="hasLink !=='true'" @click="addAll()">添加所有通道</el-button>
+                <el-button size="mini" v-if="hasLink ==='true'" @click="removeAll()">移除所有通道</el-button>
                 <el-button size="mini" @click="getChannelList()">刷新</el-button>
               </div>
             </div>
@@ -218,7 +218,7 @@ export default {
       })
     },
     addAll: function (row) {
-      this.$confirm("确定全部添加?", '提示', {
+      this.$confirm("添加所有通道将包括已经添加到其他计划的通道,确定添加所有通道?", '提示', {
         dangerouslyUseHTMLString: true,
         confirmButtonText: '确定',
         cancelButtonText: '取消',
@@ -275,7 +275,7 @@ export default {
     },
     removeAll: function (row) {
 
-      this.$confirm("确定全部移除?", '提示', {
+      this.$confirm("确定移除所有通道?", '提示', {
         dangerouslyUseHTMLString: true,
         confirmButtonText: '确定',
         cancelButtonText: '取消',