|
@@ -176,6 +176,17 @@
|
|
|
label="备注">
|
|
|
<template slot-scope="scope">{{ scope.row.memo ? scope.row.memo : '-' }}</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center"
|
|
|
+ fixed="right"
|
|
|
+ width="150px"
|
|
|
+ label="操作">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.groupType == 'OUTORDER'">
|
|
|
+ <el-button type="text">查看</el-button>
|
|
|
+ <el-button type="text">删除</el-button>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
<pagination :total="pageInfo.total"
|
|
|
:page.sync="pageInfo.page"
|
|
@@ -206,9 +217,9 @@
|
|
|
<el-form-item label="所属学校"
|
|
|
prop="schoolId"
|
|
|
:label-width="formLabelWidth">
|
|
|
- <el-select v-model.trim="form.schoolId"
|
|
|
+ <el-select v-model="form.schoolId"
|
|
|
style="width: 100% !important;">
|
|
|
- <el-option v-for="(item,index) in cooperationList"
|
|
|
+ <el-option v-for="(item,index) in cooperationList"`
|
|
|
:key="index"
|
|
|
:label="item.name"
|
|
|
:value="item.id"></el-option>
|