瀏覽代碼

fix: #邮件修复

loki 3 年之前
父節點
當前提交
2b21976628
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      src/views/sceneManagement/sceneList/index.vue

+ 4 - 3
src/views/sceneManagement/sceneList/index.vue

@@ -121,7 +121,7 @@ export default {
         {
           key: 'action',
           name: '操作',
-          width: '120',
+          width: '180',
           render: (h, { row }) => {
             const action = [];
             action.push(
@@ -195,9 +195,10 @@ export default {
     handleAdd() {
       this.$SceneItemModal();
     },
-    async handleSend(id) {
+    async handleSend(item) {
+      console.log(item.id);
       const { success, msg } = await sendCode({
-        id
+        id: item.id
       });
       if (success) {
         this.$success('发送成功!');