|
|
@@ -40,7 +40,7 @@ |
|
|
|
{{ displayListItem(item, 'RId') }} |
|
|
|
</view> |
|
|
|
<view class="customlist-item-field"> |
|
|
|
<text class="customlist-item-field-title">学生姓名:</text> |
|
|
|
<text class="customlist-item-field-title">用户姓名:</text> |
|
|
|
{{ displayListItem(item, 'F_CreateAccount') }} |
|
|
|
</view> |
|
|
|
|
|
|
@@ -102,7 +102,7 @@ |
|
|
|
<l-input |
|
|
|
v-model="queryData.StuName" |
|
|
|
@change="searchChange" |
|
|
|
title ="学生姓名" |
|
|
|
title ="上报人" |
|
|
|
/> |
|
|
|
|
|
|
|
<!-- 重置查询条件按钮 --> |
|
|
@@ -153,7 +153,7 @@ export default { |
|
|
|
Unit: { type: 'select', dataSource: '1', dataSourceId: 'Acc_UnitData,name,id' }, |
|
|
|
Floor: { type: 'select', dataSource: '1', dataSourceId: 'Acc_FloorData,name,id' }, |
|
|
|
RId: { type: 'select', dataSource: '1', dataSourceId: 'Acc_RoomData,name,id' }, |
|
|
|
F_CreateAccount: { type: 'select', dataSource: '1', dataSourceId: 'StuInfoBasic,stuname,stuno' }, |
|
|
|
F_CreateAccount: { type: 'select', dataSource: '1', dataSourceId: 'BaseUser,f_realname,f_account' }, |
|
|
|
F_CreateDate: { type: 'datetime', dateformat: '0' }, |
|
|
|
DamageDescribe: { type: 'textarea' }, |
|
|
|
}, |
|
|
@@ -231,8 +231,8 @@ export default { |
|
|
|
this.FETCH_DATASOURCE('Acc_RoomData').then(result => { |
|
|
|
this.dataSource.RId = result.data.map(t => ({ text: t.name, value: t.id })) |
|
|
|
}), |
|
|
|
this.FETCH_DATASOURCE('StuInfoBasic').then(result => { |
|
|
|
this.dataSource.F_CreateAccount = result.data.map(t => ({ text: t.stuname, value: t.stuno })) |
|
|
|
this.FETCH_DATASOURCE('BaseUser').then(result => { |
|
|
|
this.dataSource.F_CreateAccount = result.data.map(t => ({ text: t.f_realname, value: t.f_account })) |
|
|
|
}), |
|
|
|
|
|
|
|
|
|
|
|