修改bug
This commit is contained in:
parent
aa24c02143
commit
edfc5f00d3
|
@ -688,7 +688,7 @@ function calcPlayStatus(item){
|
||||||
if(err){
|
if(err){
|
||||||
playStatus.value = false;
|
playStatus.value = false;
|
||||||
isError.value = true;
|
isError.value = true;
|
||||||
openLive(item);
|
// openLive(item);
|
||||||
}else{
|
}else{
|
||||||
playStatus.value = true;
|
playStatus.value = true;
|
||||||
isError.value = false;
|
isError.value = false;
|
||||||
|
|
|
@ -35,10 +35,10 @@
|
||||||
<a-col :span="24" >
|
<a-col :span="24" >
|
||||||
<a-row style="text-align: center;" v-if="!isNow(item)">
|
<a-row style="text-align: center;" v-if="!isNow(item)">
|
||||||
<a-col :span="12" style="text-align: center;">
|
<a-col :span="12" style="text-align: center;">
|
||||||
<a-button type="primary" class="yyyClass" @click="toLivePage(item)" style="color: white;" :disabled="item.sftkb=='1'">听课</a-button>
|
<a-button type="primary" class="yyyClass" @click="toLivePage(item)" style="color: white;" :disabled="item.sftkb=='1'" :title="item.tksy">听课</a-button>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12" style="text-align: center;">
|
<a-col :span="12" style="text-align: center;">
|
||||||
<a-button type="primary" class="yyClass" @click="funpingjia(item)" style="color: white;" :disabled="item.sftkb=='1'">评价</a-button>
|
<a-button type="primary" class="yyClass" @click="funpingjia(item)" style="color: white;" :disabled="item.sftkb=='1'" :title="item.tksy">评价</a-button>
|
||||||
</a-col>
|
</a-col>
|
||||||
<!-- <a-col :span="8">
|
<!-- <a-col :span="8">
|
||||||
<a-button type="primary" class="bcClass" @click="handleBaocuo(item)">报错</a-button>
|
<a-button type="primary" class="bcClass" @click="handleBaocuo(item)">报错</a-button>
|
||||||
|
|
|
@ -1878,7 +1878,12 @@ function ckxzxxFunc(item){
|
||||||
|
|
||||||
//小组形式提交作业选项变更
|
//小组形式提交作业选项变更
|
||||||
function xztjzyxsFunc(val){
|
function xztjzyxsFunc(val){
|
||||||
if(val == 'Y') createMessage.warning('开启小组形式提交作业后,将无法使用查重功能!');
|
if(val == 'Y') {
|
||||||
|
zyInfo.value.xshpkg = '0'
|
||||||
|
zyInfo.value.sfcc = '0'
|
||||||
|
createMessage.warning('开启小组形式提交作业后,将无法使用查重功能!');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const xzxxSaveSuccess = (id,data) => {
|
const xzxxSaveSuccess = (id,data) => {
|
||||||
|
|
|
@ -70,6 +70,7 @@ const { createConfirm } = useMessage();
|
||||||
function edit(record) {
|
function edit(record) {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
resetFields();
|
resetFields();
|
||||||
|
confirmLoading.value = false;
|
||||||
//赋值
|
//赋值
|
||||||
Object.assign(formData, record);
|
Object.assign(formData, record);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue