From 6154603e1667e8731088c3cf9195d1e2b695b9a9 Mon Sep 17 00:00:00 2001 From: liaozetao <1107136310@qq.com> Date: Wed, 20 Dec 2023 11:30:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BD=92=E5=9B=A0=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/batch/FlowDataBatchSearchView.vue | 2 +- src/views/firstpage/RecommendResourceAdminView.vue | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/views/batch/FlowDataBatchSearchView.vue b/src/views/batch/FlowDataBatchSearchView.vue index a0c26e6..aeb97f8 100644 --- a/src/views/batch/FlowDataBatchSearchView.vue +++ b/src/views/batch/FlowDataBatchSearchView.vue @@ -173,7 +173,7 @@ export default { columns: [ { field: 'id', title: '场次ID', align: 'center', width: '5%' }, { field: 'person', title: '负责人', align: 'center', width: '5%' }, - { field: 'amount', title: '预算USD', align: 'center', width: '5%' }, + { field: 'amount', title: '预算(元)', align: 'center', width: '5%' }, { field: 'name', title: '场次名称', align: 'center', width: '5%' }, { field: 'createTime', diff --git a/src/views/firstpage/RecommendResourceAdminView.vue b/src/views/firstpage/RecommendResourceAdminView.vue index cf2c02b..a8c8b1a 100644 --- a/src/views/firstpage/RecommendResourceAdminView.vue +++ b/src/views/firstpage/RecommendResourceAdminView.vue @@ -272,6 +272,8 @@ export default { console.log(res); if (res) { let data = res.data; + let $div = $('
'); + $div.attr('class', 'col-sm-9'); var $select = $(''); $select.attr('class', 'form-control validate[required]'); $select.attr('id', 'content' + tag); @@ -282,11 +284,12 @@ export default { $option.html(item.name); $select.append($option); } - $box.append($select); - $box.show(); + $div.append($select); + $box.append($div); } }, }); + $box.show(); //H5或自定义房间 } else if (resourceType == 5 || resourceType == 6) { let $label = $('');