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