Commit 4a82f45d authored by zhengke's avatar zhengke

修改

parent f268857f
......@@ -459,7 +459,7 @@
</template>
<template v-slot:body-cell-optioned="props">
<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>
</template>
</q-table>
......@@ -618,7 +618,7 @@
},
{
name: 'optioned',
label: '学习时间',
label: '分钟数',
field: 'QuestionId',
align: 'center'
}
......@@ -860,7 +860,7 @@
TeacherId: this.comChecked.TeacherId,
OrderGuestId: x.Id,
CheckStatus: x.IsCheck,
StudyNum:x.StudyNum
StudyNum:x.StudyNum==''?0:x.StudyNum
}
signMsg.push(obj);
})
......
......@@ -110,9 +110,11 @@
<span style="color:green;" :class="{'underLine':props.row.CheckList.length>0}">
{{props.row.CheckNum}}
<q-popup-proxy v-if="props.row.CheckList.length>0">
<q-banner>
<q-chip dense v-for="(subItem,subindex) in props.row.CheckList" :key="subindex">{{subItem.GuestName}}</q-chip>
</q-banner>
<div style="max-width:360px;">
<q-banner>
<q-chip dense v-for="(subItem,subindex) in props.row.CheckList" :key="subindex">{{subItem.GuestName}}</q-chip>
</q-banner>
</div>
</q-popup-proxy>
</span>
</q-td>
......@@ -122,9 +124,11 @@
<span style="color:red;" :class="{'underLine':props.row.NoCheckList.length>0}">
{{props.row.NoCheckNum}}
<q-popup-proxy v-if="props.row.NoCheckList.length>0">
<q-banner>
<q-chip dense v-for="(subItem,subindex) in props.row.NoCheckList" :key="subindex">{{subItem.GuestName}}</q-chip>
</q-banner>
<div style="min-width:360px;max-width:360px;">
<q-banner>
<q-chip dense v-for="(subItem,subindex) in props.row.NoCheckList" :key="subindex">{{subItem.GuestName}}</q-chip>
</q-banner>
</div>
</q-popup-proxy>
</span>
</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