修改归因字段名

This commit is contained in:
liaozetao
2023-12-20 11:30:07 +08:00
parent ff256b2543
commit 6154603e16
2 changed files with 6 additions and 3 deletions

View File

@@ -173,7 +173,7 @@ export default {
columns: [ columns: [
{ field: 'id', title: '场次ID', align: 'center', width: '5%' }, { field: 'id', title: '场次ID', align: 'center', width: '5%' },
{ field: 'person', title: '负责人', 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: 'name', title: '场次名称', align: 'center', width: '5%' },
{ {
field: 'createTime', field: 'createTime',

View File

@@ -272,6 +272,8 @@ export default {
console.log(res); console.log(res);
if (res) { if (res) {
let data = res.data; let data = res.data;
let $div = $('<div/>');
$div.attr('class', 'col-sm-9');
var $select = $('<select/>'); var $select = $('<select/>');
$select.attr('class', 'form-control validate[required]'); $select.attr('class', 'form-control validate[required]');
$select.attr('id', 'content' + tag); $select.attr('id', 'content' + tag);
@@ -282,11 +284,12 @@ export default {
$option.html(item.name); $option.html(item.name);
$select.append($option); $select.append($option);
} }
$box.append($select); $div.append($select);
$box.show(); $box.append($div);
} }
}, },
}); });
$box.show();
//H5或自定义房间 //H5或自定义房间
} else if (resourceType == 5 || resourceType == 6) { } else if (resourceType == 5 || resourceType == 6) {
let $label = $('<label/>'); let $label = $('<label/>');