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