Przeglądaj źródła

系统管理 短信管理

liuQiang 1 rok temu
rodzic
commit
77e90086ea
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/views/sms/record/index.vue

+ 2 - 2
src/views/sms/record/index.vue

@@ -83,7 +83,7 @@
       <!--      <el-table-column label="返回值" align="center" prop="sendResult"/>-->
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
         <template #default="scope">
-          <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['sms:record:edit']">
+          <el-button link type="primary" icon="View" @click="handleUpdate(scope.row)" v-hasPermi="['sms:record:edit']">
             查看
           </el-button>
           <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)"
@@ -237,7 +237,7 @@ function handleUpdate(row) {
   getRecord(_recordId).then(response => {
     form.value = response.data;
     open.value = true;
-    title.value = "修改短信记录";
+    title.value = "短信记录";
   });
 }