Commit 4a82f45d authored by zhengke's avatar zhengke

修改

parent f268857f
...@@ -459,7 +459,7 @@ ...@@ -459,7 +459,7 @@
</template> </template>
<template v-slot:body-cell-optioned="props"> <template v-slot:body-cell-optioned="props">
<q-td :props="props" style="width:15%;"> <q-td :props="props" style="width:15%;">
<el-input v-model="props.row.StudyNum" size="small" @keyup.native="checkInteger(props.row,'StudyNum')"></el-input> <el-input v-model="props.row.StudyNum" size="small" maxlength="4" @keyup.native="checkInteger(props.row,'StudyNum')"></el-input>
</q-td> </q-td>
</template> </template>
</q-table> </q-table>
...@@ -618,7 +618,7 @@ ...@@ -618,7 +618,7 @@
}, },
{ {
name: 'optioned', name: 'optioned',
label: '学习时间', label: '分钟数',
field: 'QuestionId', field: 'QuestionId',
align: 'center' align: 'center'
} }
...@@ -860,7 +860,7 @@ ...@@ -860,7 +860,7 @@
TeacherId: this.comChecked.TeacherId, TeacherId: this.comChecked.TeacherId,
OrderGuestId: x.Id, OrderGuestId: x.Id,
CheckStatus: x.IsCheck, CheckStatus: x.IsCheck,
StudyNum:x.StudyNum StudyNum:x.StudyNum==''?0:x.StudyNum
} }
signMsg.push(obj); signMsg.push(obj);
}) })
......
...@@ -110,9 +110,11 @@ ...@@ -110,9 +110,11 @@
<span style="color:green;" :class="{'underLine':props.row.CheckList.length>0}"> <span style="color:green;" :class="{'underLine':props.row.CheckList.length>0}">
{{props.row.CheckNum}} {{props.row.CheckNum}}
<q-popup-proxy v-if="props.row.CheckList.length>0"> <q-popup-proxy v-if="props.row.CheckList.length>0">
<div style="max-width:360px;">
<q-banner> <q-banner>
<q-chip dense v-for="(subItem,subindex) in props.row.CheckList" :key="subindex">{{subItem.GuestName}}</q-chip> <q-chip dense v-for="(subItem,subindex) in props.row.CheckList" :key="subindex">{{subItem.GuestName}}</q-chip>
</q-banner> </q-banner>
</div>
</q-popup-proxy> </q-popup-proxy>
</span> </span>
</q-td> </q-td>
...@@ -122,9 +124,11 @@ ...@@ -122,9 +124,11 @@
<span style="color:red;" :class="{'underLine':props.row.NoCheckList.length>0}"> <span style="color:red;" :class="{'underLine':props.row.NoCheckList.length>0}">
{{props.row.NoCheckNum}} {{props.row.NoCheckNum}}
<q-popup-proxy v-if="props.row.NoCheckList.length>0"> <q-popup-proxy v-if="props.row.NoCheckList.length>0">
<div style="min-width:360px;max-width:360px;">
<q-banner> <q-banner>
<q-chip dense v-for="(subItem,subindex) in props.row.NoCheckList" :key="subindex">{{subItem.GuestName}}</q-chip> <q-chip dense v-for="(subItem,subindex) in props.row.NoCheckList" :key="subindex">{{subItem.GuestName}}</q-chip>
</q-banner> </q-banner>
</div>
</q-popup-proxy> </q-popup-proxy>
</span> </span>
</q-td> </q-td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment