From 8f1650e614e82369702070c811d053c93690286a Mon Sep 17 00:00:00 2001 From: xuyiming Date: Wed, 15 Jul 2020 10:26:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=94=E7=94=A8=E7=AE=A1=E7=90=86=E5=88=97?= =?UTF-8?q?=E8=A1=A8fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/table/table-filter.vue | 19 ++++++++++++++----- src/pages/workbench/yygl/yyglList.vue | 21 +++++++++++++++++++-- 2 files changed, 33 insertions(+), 7 deletions(-) diff --git a/src/components/table/table-filter.vue b/src/components/table/table-filter.vue index fd56236..2a04fdd 100644 --- a/src/components/table/table-filter.vue +++ b/src/components/table/table-filter.vue @@ -18,11 +18,19 @@ 'margin-top': i < filterLength ? '0' : '10px', }" > - + + +
({ - name: v.text, + name: v.value, value: v.value, })) ); @@ -1136,8 +1148,13 @@ export default { this.dialogInfo.cancelText = ""; this.dialogInfo.sunbmitText = ""; this.dialogInfo.submit = () => { + debugger; this.$http - .delete(`/apaas/hubApi/market/del/${item.app_id}`) + .delete(`/apaas/hubApi/market/del/${item.app_id}`, { + params: { + apply_id: item.apply_id, + }, + }) .then(({ data }) => { if (data.success) { this.$message({ -- 2.26.0