Ver código fonte

fix: #邮件修复

loki 3 anos atrás
pai
commit
2b21976628
1 arquivos alterados com 4 adições e 3 exclusões
  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('发送成功!');