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 = $('');