This commit is contained in:
2023-08-15 11:41:00 +08:00
parent 7b1afb53da
commit b27a46f037
5 changed files with 27 additions and 10 deletions

View File

@@ -27,13 +27,13 @@ export default {
methods: {
async init(info) {
this.title = info.schoolName + '-' + info.name + '-班型报价';
const resp = await getClassTypeTableList({
const resp = await getAllList({
schoolId: info.schoolId,
placeId: info.placeId,
status: '0'
});
if (resp.code == 200) {
this.getAllList = resp.data
this.classTypeList = resp.data
}
this.visible = true
},

View File

@@ -165,7 +165,7 @@ export default {
},
// 释放线索操作
handleDiscard(item) {
his.$confirm('是否确认释放该条线索(“' + item.name + '/' + item.phone + '”)到公海?', '警告', {
this.$confirm('是否确认释放该条线索(“' + item.name + '/' + item.phone + '”)到公海?', '警告', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'