Browse Source

修改错误

master
parent
commit
13269bdb4d
  1. 4
      config.js
  2. 0
      pages/index - 副本.vue
  3. 11
      pages/task.vue
  4. 41
      sub/enterprise/edit.vue
  5. 2
      sub/task/locate.vue
  6. 14
      utils/ruoyi.js

4
config.js

@ -1,7 +1,7 @@
// 应用全局配置
module.exports = {
// baseUrl: 'https://hb.jzce.com',
baseUrl: 'http://188.188.3.232:48080',
baseUrl: 'https://hb.jzce.com',
//baseUrl: 'http://188.188.3.232:48080',
baseApi: '/admin-api',
// 应用信息
appInfo: {

0
pages/index.vue → pages/index - 副本.vue

11
pages/task.vue

@ -62,9 +62,7 @@
size="56"
type="2d"
color="#17c653"
:layer-color="
task.status == '2' ? '#EAFFF1' : '#F1F1F4'
"
:layer-color="task.status == '2' ? '#EAFFF1' : '#F1F1F4'"
:canvasId="`canvas-${task.id}`"
>
<template>
@ -107,10 +105,7 @@
</view>
<view class="tag">
{{
$dict.echoDicValue(
dictMap.task_priority,
task.priority
)
$dict.echoDicValue(dictMap.task_priority, task.priority)
}}
</view>
<view
@ -222,7 +217,7 @@ export default {
task_state: '按状态',
select_week: '按周期'
}
if (['zf_qy'].includes(key)) {
if (['zf_lx'].includes(key)) {
return [
...this.dictMap[key].map(d => {
return {

41
sub/enterprise/edit.vue

@ -35,7 +35,13 @@
<u-icon slot="right" name="arrow-right"></u-icon>
</u-form-item>
<!-- 企业地址 -->
<u-form-item label="地址" prop="address" borderBottom>
<u-form-item
label="地址"
prop="address"
borderBottom
@click="chooseView(detail)"
>
<u-icon name="map" size="14" color="#17C653"></u-icon>
<u-input
v-model="info.form.address"
border="none"
@ -281,7 +287,8 @@ export default {
photo: [], //
contactName: '', //
environmentalContactPhone: '', //
establishmentDate: '' //
establishmentDate: '', //
gpsLocation: ''
},
rules: {
enterprisesName: {
@ -310,12 +317,17 @@ export default {
message: '请输入联系方式',
trigger: ['blur']
},
photo: {
require: true,
min: 1,
message: '至少上传一张图片',
trigger: ['blur', 'change']
}
photo: [
{
validator: value => {
return (
Array.isArray(this.info.form.photo) &&
this.info.form.photo.length > 0
)
},
message: '照片数组至少需要有一个元素'
}
]
}
},
//
@ -374,12 +386,24 @@ export default {
this.initProveList()
},
methods: {
async chooseView() {
uni.chooseLocation({
success: res => {
console.log(res)
console.log(this.info)
this.info.form.address = res.address
this.info.form.gpsLocation = res.latitude + ',' + res.longitude
}
})
},
/**
* 选择图片并上传
* @param {Object} e
*/
async addEnterprisePhoto(e) {
this.info.form.photo = e.file.map(p => {
console.log(p.url)
return {
...p,
status: 'uploading',
@ -398,6 +422,7 @@ export default {
})
).then(res => {
this.info.form.photo = res
console.log('pthoto3', this.info.form.photo)
})
},
/**

2
sub/task/locate.vue

@ -155,7 +155,7 @@ export default {
enterpriseGps: '',
location: {},
distance: 10000,
radius: 30, //
radius: 100, //
showTip: false,
list: [],
loading: false,

14
utils/ruoyi.js

@ -90,4 +90,18 @@ export function viewPosition({
console.log(err);
}
})
}
/**
* 打开地图获取位置
* @param {number} lat 经度
* @param {number} lng 纬度
* @param {string} name 地址名称
*/
export function choosePosition({
lat,
lng,
name = ''
}) {
}
Loading…
Cancel
Save