Commit e95a4d59 authored by zhengke's avatar zhengke

修改

parent 97f19795
......@@ -33,7 +33,7 @@
</style>
<template>
<div>
<q-btn label="新增" color="accent q-mb-lg" size="sm" @click="isShowAdd=true" />
<q-btn label="新增" color="accent q-mb-lg" size="sm" v-if="BelongType!=3" @click="isShowAdd=true" />
<q-btn label="取消" style="margin-left:20px;" v-if="isShowAdd" flat color="grey-10 q-mb-lg" size="sm"
@click="isShowAdd=false" />
<template v-if="isShowAdd">
......@@ -57,12 +57,12 @@
<tr>
<th style="width:180px;">角色</th>
<th style="width:180px;">人员</th>
<th>操作</th>
<th v-if="BelongType!=3">操作</th>
</tr>
<tr v-for="(item,index) in dataList" :key="index">
<td>{{item.AssistTypeName}}</td>
<td>{{item.AssistName}}</td>
<td>
<td v-if="BelongType!=3">
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="修改"
@click="getEditInfo(item)"></q-btn>
<q-btn flat size="xs" icon="delete" color="negative" style="font-weight:400" label="删除"
......@@ -95,6 +95,10 @@
saveObj: {
type: Object,
default: null
},
BelongType: {
type: Number,
default: null
}
},
data() {
......
......@@ -73,7 +73,7 @@
<student-hetong :save-obj="baseObj" @success="refreshStudentPage"></student-hetong>
</template>
<template v-if="ckedTab==5">
<student-Assit :save-obj="baseObj" @success="refreshStudentPage"></student-Assit>
<student-Assit :save-obj="baseObj" :BelongType="BelongType" @success="refreshStudentPage"></student-Assit>
</template>
</div>
</div>
......
......@@ -380,9 +380,13 @@
<p>4、本合同及其附件内,空格部分填写的文字与印刷文字具有同等法律效力。</p>
<p>5、本合同正本一式两份,甲乙双方各持一份,具有同等法律效力。</p>
<p>6、本合同自乙方缴纳全额课程学费及签订协议之日起正式生效。</p>
<p>7、本合同协议部分到此为止,以下为空白。</p>
<div class="contractTitle comTop">十、合同补充协议</div>
<p>{{dataList.CourseContracrInfo}}</p>
<template v-if="dataList.CourseContracrInfo">
<div class="contractTitle comTop">十、合同补充协议</div>
<p>{{dataList.CourseContracrInfo}}</p>
</template>
<p>
<template v-if="dataList.CourseContracrInfo==''||dataList.CourseContracrInfo==null">7、</template>
本合同协议部分到此为止,以下为空白。</p>
<div style="margin:50px 0;position:relative;">
甲方签字(盖章):<img v-if="dataList.IsCompanySeal==1&&dataList.GroupSealImg" :src="dataList.GroupSealImg" style="width:100px;position:absolute;top:-30px;" />
</div>
......
......@@ -679,9 +679,13 @@
<div class="contractContent">6、本合同自乙方缴纳全额课程学费及签订协议之日起正式生效。</div>
</div>
<div class="conTractInner ConTract_Line" style="margin-left:5px;">
<div class="contractContent" style="margin:20px 0 20px 0;">7、本合同协议部分到此为止,以下为空白。</div>
<div class="comFirstTitle">十、合同补充协议</div>
<div class="contractContent" style="margin-bottom:100px;">{{dataList.CourseContracrInfo}}</div>
<template v-if="dataList.CourseContracrInfo">
<div class="comFirstTitle">十、合同补充协议</div>
<div class="contractContent" style="margin-bottom:20px;">{{dataList.CourseContracrInfo}}</div>
</template>
<div class="contractContent" style="margin:20px 0 100px 0;">
<span v-if="dataList.CourseContracrInfo==''||dataList.CourseContracrInfo==null">7、</span>本合同协议部分到此为止,以下为空白。
</div>
<div class="contractContent" style="position:relative;">
甲方签字(盖章):<img v-if="dataList.IsCompanySeal==1&&dataList.GroupSealImg" style="width:100px;position:absolute;top:-40px;" :src="dataList.GroupSealImg" />
</div>
......
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