监管端bug修复:13984、12614
parent
4b703c7913
commit
c319ac47a8
|
@ -624,7 +624,14 @@ export default {
|
|||
},
|
||||
// 返回
|
||||
goBack() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$parent.activeName = 'IndexList'
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
// 获取数据字典
|
||||
getDicList(list, DICTIONARIES_ID) {
|
||||
|
|
|
@ -669,8 +669,15 @@ export default {
|
|||
},
|
||||
// 返回列表
|
||||
back() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$parent.activeName = 'List'
|
||||
this.$parent.OUTSOURCED_ID = ''
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
getUnitsList() {
|
||||
requestFN(
|
||||
|
|
|
@ -208,7 +208,7 @@
|
|||
<el-input v-model="LONGITUDE" style="width: 200px" placeholder="请输入内容" disabled />
|
||||
<span>纬度:</span>
|
||||
<el-input v-model="LATITUDE" style="width: 200px" placeholder="请输入内容" disabled />
|
||||
<el-button @click="dialogFormMap = false">取 消</el-button>
|
||||
<el-button @click="goBack">取 消</el-button>
|
||||
<el-button type="primary" @click="setPosition">确 定</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
@ -477,6 +477,16 @@ export default {
|
|||
this.LATITUDE = this.form.LATITUDE
|
||||
this.LONGITUDE = this.form.LONGITUDE
|
||||
},
|
||||
goBack() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.dialogFormMap = false
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
getTreeList() {
|
||||
requestFN(
|
||||
'/department/listTree/',
|
||||
|
@ -548,7 +558,14 @@ export default {
|
|||
})
|
||||
},
|
||||
back() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$parent.activeName = 'CorpInfoList'
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
// 获取数据字典数据
|
||||
getDict: function() {
|
||||
|
|
|
@ -593,7 +593,14 @@ export default {
|
|||
})
|
||||
},
|
||||
back() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$parent.activeName = 'CorpInfoList'
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
// 获取数据字典数据
|
||||
getDict() {
|
||||
|
|
|
@ -872,8 +872,15 @@ export default {
|
|||
},
|
||||
|
||||
goBack() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$parent.INSPECTION_ID = ''
|
||||
this.$parent.activeName = 'List'
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
// 获取整改人列表
|
||||
getUserList(DEPARTMENT_ID) {
|
||||
|
|
|
@ -971,8 +971,15 @@ export default {
|
|||
},
|
||||
|
||||
goBack() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$parent.INSPECTION_ID = ''
|
||||
this.$parent.activeName = 'List'
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
// 获取整改人列表
|
||||
getUserList(DEPARTMENT_ID) {
|
||||
|
|
|
@ -141,7 +141,14 @@ export default {
|
|||
})
|
||||
},
|
||||
goBack() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$parent.activeName = 'List'
|
||||
}).catch(() => {
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -731,7 +731,14 @@ export default {
|
|||
})
|
||||
},
|
||||
goBack() {
|
||||
this.$confirm('确定要退出吗?', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$parent.activeName = 'List'
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
getCoroInfoAll() {
|
||||
requestFN(
|
||||
|
|
Loading…
Reference in New Issue