|
@@ -186,11 +186,14 @@
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr
|
|
|
- v-for="item in tablejlData"
|
|
|
+ v-for="(item, index) in tablejlData"
|
|
|
+ :key="index"
|
|
|
v-show="item.xdbsp_lx_option_k == '2'"
|
|
|
>
|
|
|
<td>
|
|
|
- <h3 class="font-size-14">{{ item.xdbs_jcxm }}</h3>
|
|
|
+ <h3 class="font-size-14">
|
|
|
+ {{ item.xdbs_jcxm }}
|
|
|
+ </h3>
|
|
|
</td>
|
|
|
<td>
|
|
|
<h3 class="font-size-14">{{ item.xdbsp_fz }}</h3>
|
|
@@ -344,15 +347,11 @@
|
|
|
<script>
|
|
|
import {
|
|
|
cggl_list,
|
|
|
- cggl_export,
|
|
|
cggl_detail,
|
|
|
cggl_add,
|
|
|
grade_search,
|
|
|
class_search,
|
|
|
- fzxq_detail,
|
|
|
- fzxq_edit,
|
|
|
fzxq_add,
|
|
|
- pf_detail,
|
|
|
xjk_list,
|
|
|
fzxq_list,
|
|
|
} from "./api";
|
|
@@ -492,6 +491,7 @@ export default {
|
|
|
let obj = {
|
|
|
grade_id: item.grade_id,
|
|
|
class_id: item.class_id,
|
|
|
+ xdbs_jclx: "2",
|
|
|
};
|
|
|
fzxq_list(obj).then((res) => {
|
|
|
this.loading = false;
|
|
@@ -542,6 +542,7 @@ export default {
|
|
|
if (valid) {
|
|
|
this.isButton = true;
|
|
|
let data = {
|
|
|
+ xdbs_jclx: "2",
|
|
|
grade_id: this.addDialogForm.grade_id,
|
|
|
grade_name: this.addDialogForm.grade_name,
|
|
|
class_name: this.addDialogForm.class_name,
|
|
@@ -578,6 +579,7 @@ export default {
|
|
|
if (valid) {
|
|
|
this.isButton = true;
|
|
|
let data = {
|
|
|
+ xdbs_jclx: "2",
|
|
|
xdbs_jcxm: this.dialogForm.pfx,
|
|
|
xdbsp_lx: this.dialogForm.lx,
|
|
|
xdbsp_fz: this.dialogForm.fz,
|