修改归因字段名
This commit is contained in:
@@ -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',
|
||||
|
@@ -272,6 +272,8 @@ export default {
|
||||
console.log(res);
|
||||
if (res) {
|
||||
let data = res.data;
|
||||
let $div = $('<div/>');
|
||||
$div.attr('class', 'col-sm-9');
|
||||
var $select = $('<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 = $('<label/>');
|
||||
|
Reference in New Issue
Block a user