|
|
@ -394,6 +394,7 @@ import 'element-ui/lib/theme-chalk/image.css' |
|
|
|
import debounce from 'lodash/debounce' |
|
|
|
import Cookies from 'js-cookie' |
|
|
|
import 'quill/dist/quill.snow.css' |
|
|
|
import { gcj02tobd09 } from '../../../utils/gcj02tobd09' |
|
|
|
export default { |
|
|
|
name: 'itemDealDetailView', |
|
|
|
data () { |
|
|
@ -704,11 +705,11 @@ export default { |
|
|
|
getCategoryList () { |
|
|
|
this.disabledCategory = true |
|
|
|
return this.$http.get('/events/category/list', |
|
|
|
{ |
|
|
|
params: { |
|
|
|
infoCode: 'A' |
|
|
|
} |
|
|
|
}).then(({ data: res }) => { |
|
|
|
{ |
|
|
|
params: { |
|
|
|
infoCode: 'A' |
|
|
|
} |
|
|
|
}).then(({ data: res }) => { |
|
|
|
if (res.code !== 0) { |
|
|
|
return this.$message.error(res.msg) |
|
|
|
} |
|
|
@ -1011,10 +1012,9 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
this.initBmap( |
|
|
|
this.dataForm.issueLatitude, |
|
|
|
this.dataForm.issueLongitude |
|
|
|
) |
|
|
|
this.dataForm.issueLongitude = gcj02tobd09(this.dataForm.issueLongitude, this.dataForm.issueLatitude)[0] |
|
|
|
this.dataForm.issueLatitude = gcj02tobd09(this.dataForm.issueLongitude, this.dataForm.issueLatitude)[1] |
|
|
|
this.initBmap(this.dataForm.issueLatitude, this.dataForm.issueLongitude) |
|
|
|
for ( |
|
|
|
let index = 0; |
|
|
|
index < res.data.handleResultDTOS.length; |
|
|
|