//html
<div style="display: flex;justify-content: center;"
ng-repeat="s in typeList track by $index">
<select ng-model="s.type"
ng-options="x.code_val as x.code_desc for x in flowList">
</select>
</div>
//js
$timeout(() => {
$scope.flowList = [
{
code_val: 0,
code_desc: '阳光快富'
},
{
code_val: 1,
code_desc: '现金'
}
]
$scope.typeList = [
{
type: 1
},
{
type: 1
}
]
}, 500)