修改归因字段名

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

View File

@@ -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',

View File

@@ -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/>');