Browse Source

修改错误

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

4
config.js

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

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

11
pages/task.vue

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

39
sub/enterprise/edit.vue

@ -35,7 +35,13 @@
<u-icon slot="right" name="arrow-right"></u-icon> <u-icon slot="right" name="arrow-right"></u-icon>
</u-form-item> </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 <u-input
v-model="info.form.address" v-model="info.form.address"
border="none" border="none"
@ -281,7 +287,8 @@ export default {
photo: [], // photo: [], //
contactName: '', // contactName: '', //
environmentalContactPhone: '', // environmentalContactPhone: '', //
establishmentDate: '' // establishmentDate: '', //
gpsLocation: ''
}, },
rules: { rules: {
enterprisesName: { enterprisesName: {
@ -310,12 +317,17 @@ export default {
message: '请输入联系方式', message: '请输入联系方式',
trigger: ['blur'] trigger: ['blur']
}, },
photo: { photo: [
require: true, {
min: 1, validator: value => {
message: '至少上传一张图片', return (
trigger: ['blur', 'change'] Array.isArray(this.info.form.photo) &&
this.info.form.photo.length > 0
)
},
message: '照片数组至少需要有一个元素'
} }
]
} }
}, },
// //
@ -374,12 +386,24 @@ export default {
this.initProveList() this.initProveList()
}, },
methods: { 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 * @param {Object} e
*/ */
async addEnterprisePhoto(e) { async addEnterprisePhoto(e) {
this.info.form.photo = e.file.map(p => { this.info.form.photo = e.file.map(p => {
console.log(p.url)
return { return {
...p, ...p,
status: 'uploading', status: 'uploading',
@ -398,6 +422,7 @@ export default {
}) })
).then(res => { ).then(res => {
this.info.form.photo = 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: '', enterpriseGps: '',
location: {}, location: {},
distance: 10000, distance: 10000,
radius: 30, // radius: 100, //
showTip: false, showTip: false,
list: [], list: [],
loading: false, loading: false,

14
utils/ruoyi.js

@ -91,3 +91,17 @@ export function viewPosition({
} }
}) })
} }
/**
* 打开地图获取位置
* @param {number} lat 经度
* @param {number} lng 纬度
* @param {string} name 地址名称
*/
export function choosePosition({
lat,
lng,
name = ''
}) {
}
Loading…
Cancel
Save