dev-zcx #12

Merged
zcx merged 4 commits from dev-zcx into master 2023-08-16 22:03:51 +08:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 7b1afb53da - Show all commits

View File

@@ -14,7 +14,7 @@
</el-dialog>
</template>
<script>
import { getClassTypeTableList } from '@/api/sch/classType'
import { getAllList } from '@/api/sch/classType'
export default {
data() {
@@ -33,7 +33,7 @@ export default {
status: '0'
});
if (resp.code == 200) {
this.classTypeList = resp.rows
this.getAllList = resp.data
}
this.visible = true
},

View File

@@ -6,7 +6,7 @@
<el-form-item label="场地" prop="newPlaceList">
<span v-if="oldForm.placeNames">{{oldForm.placeNames}}</span>
<el-select v-model="dialogForm.newPlaceList" multiple placeholder="请选择" clearable style="width: 100%;">
<el-select v-model="dialogForm.newPlaceList" filterable multiple placeholder="请选择" clearable style="width: 100%;">
<el-option v-for="dict in placeOptions" :key="dict.placeId" :label="dict.name" :value="dict.placeId" />
</el-select>
</el-form-item>