Browse Source

修改登录逻辑

master
parent
commit
3b4d0fd3e0
  1. 116
      App.vue
  2. 11
      api/enterprise/index.js
  3. 2
      api/enterprise/prove.js
  4. 4
      main.js
  5. 38
      pages/enterprise.vue
  6. 896
      pages/index.vue
  7. 115
      pages/login.vue
  8. 54
      pages/owner.vue
  9. 7
      pages/task.vue
  10. 45
      static/echarts.esm.min.mjs
  11. BIN
      static/favicon.png
  12. BIN
      static/images/owner/edit.png
  13. BIN
      static/images/owner/list.png
  14. BIN
      static/images/owner/message.png
  15. BIN
      static/images/owner/phone.png
  16. BIN
      static/images/task/position.png
  17. 1
      static/scss/global.scss
  18. 1
      store/modules/user.js
  19. 44
      sub/common/waiting.vue
  20. 30
      sub/enterprise/detail.vue
  21. 109
      sub/invite/addEnterprise.vue
  22. 4
      sub/invite/enterpriseTags.vue
  23. 59
      sub/invite/index.vue
  24. 60
      sub/invite/prove.vue
  25. 49
      sub/owner/edit.vue
  26. 70
      sub/task/enforce.vue
  27. 45
      sub/task/locate.vue
  28. 2
      uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue
  29. 62
      utils/permission.js
  30. 30
      utils/request.js
  31. 24
      utils/ruoyi.js

116
App.vue

@ -1,41 +1,28 @@
<script> <script>
import config from './config' import config from './config.js'
import store from '@/store'
import { getAccessToken, setOpenId, getOpenId } from '@/utils/auth' import { getAccessToken, setOpenId, getOpenId } from '@/utils/auth'
export default { export default {
data() { data() {
return { return {}
invateId: ''
}
}, },
onLaunch: function (options) { async onLaunch(options) {
if (options.query.invateId) { await this.initApp()
this.invateId = options.query.invateId
}
this.initApp()
}, },
methods: { methods: {
// //
async initApp() { initApp() {
await uni.hideTabBar() uni.hideTabBar()
uni.hideTabBar({
animation: false
})
// //
await this.initConfig() this.initConfig()
if (!getOpenId()) {
this.applogin()
return
}
// //
this.checkLogin() // this.checkLogin()
}, },
async initConfig() { initConfig() {
this.globalData.config = config this.globalData.config = config
uni.requestSubscribeMessage({
//ID
tmplIds: ['E8RK91cPLMios6ZHoKx6FJOV4H2kodx6yPWYp7jpLJY'],
success(res) {
console.log('requestSubscribeMessage', res)
}
})
uni.getSystemInfoAsync({ uni.getSystemInfoAsync({
success: res => { success: res => {
uni.setStorageSync('MOBILE', res.model) uni.setStorageSync('MOBILE', res.model)
@ -49,79 +36,18 @@ export default {
}, },
checkLogin() { checkLogin() {
if (!getAccessToken()) { if (!getAccessToken()) {
this.login() this.$tab.reLaunch('/pages/login')
} else {
this.loginSuccess()
} }
}, },
login() { async applogin() {
console.log('-------' + getOpenId()) uni.login({
if (getOpenId()) { success: res => {
const data = { setOpenId(res.code)
type: 34, },
code: getOpenId(), fail: err => {
state: 'default', console.log('getOpenIdFail', err)
userType: this.getUserType()
} }
//
this.$store.dispatch('Login', data).then(() => {
this.loginSuccess()
})
} else {
uni.login({
success: res => {
const data = {
type: 34,
code: res.code,
state: 'default',
userType: this.getUserType()
}
setOpenId(res.code)
//
this.$store.dispatch('Login', data).then(() => {
this.loginSuccess()
})
}
})
}
},
getUserType() {
//
if (this.invateId) return 2
// if (this.type == 'internal') return 3
// return 1
return 3
},
loginSuccess() {
this.$store.dispatch('GetInfo').then(res => {
this.handlerNavigateTo(res.data.user)
}) })
},
handlerNavigateTo(user) {
//
// if (this.invateId) {
// uni.navigateTo({
// url: `/sub/enterprise/edit?invateId=${this.invateId}`
// })
// return
// }
//
if (user.audit == 1) {
uni.navigateTo({
url: '/sub/common/waiting'
})
return
}
//
if (user.audit == null) {
//
uni.navigateTo({
url: '/sub/owner/edit'
})
return
}
} }
} }
} }

11
api/enterprise/index.js

@ -74,4 +74,15 @@ export function getTaskLog(id) {
url: `/system/inspections-log/appList?inspectionsId=${id}`, url: `/system/inspections-log/appList?inspectionsId=${id}`,
method: 'GET', method: 'GET',
}) })
}
/**
* 更新企业
*/
export function updateEnterprise(data) {
return request({
url: `/system/enterprise/update`,
method: 'PUT',
data
})
} }

2
api/enterprise/prove.js

@ -31,7 +31,7 @@ export function updateProve(data) {
*/ */
export function getProveList(data) { export function getProveList(data) {
return request({ return request({
url: `/system/enterprise-qualification/page`, url: `/system/enterprise-qualification/pageEnterprise`,
method: 'GET', method: 'GET',
data data
}) })

4
main.js

@ -10,9 +10,9 @@ import * as roles from '@/utils/permission.js'
import uView from '@/uni_modules/uview-ui' import uView from '@/uni_modules/uview-ui'
import mpShare from '@/uni_modules/uview-ui/libs/mixin/mpShare.js' import mpShare from '@/uni_modules/uview-ui/libs/mixin/mpShare.js'
import TencentMap from '@/static/js/qqmap-wx-jssdk.min.js' import TencentMap from '@/static/js/qqmap-wx-jssdk.min.js'
Vue.mixin(mpShare) Vue.mixin(mpShare).use(uView)
// 挂载全局对象 // 挂载全局对象
Vue.use(plugins).use(uView) Vue.use(plugins)
Vue.config.productionTip = false Vue.config.productionTip = false
const map = new TencentMap({ const map = new TencentMap({

38
pages/enterprise.vue

@ -4,17 +4,18 @@
<van-search <van-search
:value="queryParams.enterprisesName" :value="queryParams.enterprisesName"
placeholder="输入企业名称或类型查询" placeholder="输入企业名称或类型查询"
@sreach="handleSearch"
@clear="resetQuery('enterpriseName')" @clear="resetQuery('enterpriseName')"
id="sreach" id="sreach"
@change="handleSearch" @change="handleSearch"
/> />
<van-dropdown-menu safe-area-tab-bar active-color="#17C653"> <van-dropdown-menu safe-area-tab-bar active-color="#17C653">
<van-dropdown-item <van-dropdown-item
:value="queryParams.qy" :value="queryParams.region"
:options="getDropdownOption('qy')" :options="getDropdownOption('enterprises_area')"
@change=" @change="
v => { v => {
querySelect(v, 'qy') querySelect(v, 'region')
} }
" "
/> />
@ -111,7 +112,12 @@
待审核 待审核
</view> </view>
</view> </view>
<u-loadmore :status="load" marginTop="12" marginBottom="12" /> <u-loadmore
:status="load"
marginTop="12"
marginBottom="12"
v-if="load == 'nomore'"
/>
</scroll-view> </scroll-view>
</view> </view>
</cs-page> </cs-page>
@ -130,7 +136,7 @@ export default {
queryParams: { queryParams: {
pageSize: 10, pageSize: 10,
pageNo: 1, pageNo: 1,
qy: '', region: '',
hy: '', hy: '',
st: '', st: '',
wr: '', wr: '',
@ -206,11 +212,25 @@ export default {
getDropdownOption(key) { getDropdownOption(key) {
if (!this.dictMap[key]) return [] if (!this.dictMap[key]) return []
const keyMap = { const keyMap = {
qy: '区域', enterprises_area: '区域',
hy: '行业', hy: '行业',
st: '生态', st: '生态',
wr: '污染' wr: '污染'
} }
if (['enterprises_area'].includes(key)) {
return [
...this.dictMap[key].map(i => {
return {
value: i.value,
text: i.label
}
}),
{
value: '',
text: keyMap[key]
}
]
}
const data = this.dictMap[key].map(d => { const data = this.dictMap[key].map(d => {
return { return {
value: d.id, value: d.id,
@ -229,18 +249,16 @@ export default {
this.queryEnterprise() this.queryEnterprise()
}, },
handleSearch(e) { handleSearch(e) {
if(e.detail && e.detail.length > 1){ if (e.detail && e.detail.length > 1) {
this.queryParams.pageNo = 1 // this.queryParams.pageNo = 1 //
this.queryParams.enterprisesName = e.detail // this.queryParams.enterprisesName = e.detail //
this.queryEnterprise() this.queryEnterprise()
} }
}, },
queryEnterprise() { queryEnterprise() {
this.load = 'loadmore' this.load = 'loadmore'
this.list = [] this.list = []
this.queryParams.tagList = [ this.queryParams.tagList = [
this.queryParams.qy,
this.queryParams.hy, this.queryParams.hy,
this.queryParams.st, this.queryParams.st,
this.queryParams.wr this.queryParams.wr
@ -276,7 +294,7 @@ export default {
this.queryParams = { this.queryParams = {
pageSize: 10, pageSize: 10,
pageNo: 1, pageNo: 1,
qy: '', region: '',
hy: '', hy: '',
st: '', st: '',
wr: '', wr: '',

896
pages/index.vue

@ -1,461 +1,451 @@
<template> <template>
<cs-page <cs-page :selected="0" title="智慧生态" isTab>
:selected="0" <view class="view-container">
title="智慧生态" <van-dropdown-menu safe-area-tab-bar active-color="#17C653">
isTab <van-dropdown-item
> :value="queryParams.deptId"
<view class="view-container"> :options="dropOption.dept"
<van-dropdown-menu use-before-toggle
safe-area-tab-bar @before-toggle="dorpToggle"
active-color="#17C653" @change="
> v => {
<van-dropdown-item querySelect(v, 'deptId')
:value="queryParams.deptId" }
:options="dropOption.dept" "
use-before-toggle />
@before-toggle="dorpToggle" <van-dropdown-item
@change=" :value="queryParams.selectWeek"
v => { :options="dropOption.select_week"
querySelect(v, 'deptId') @change="
} v => {
" querySelect(v, 'selectWeek')
/> }
<van-dropdown-item "
:value="queryParams.selectWeek" />
:options="dropOption.select_week" </van-dropdown-menu>
@change=" <scroll-view
v => { :scroll-y="true"
querySelect(v, 'selectWeek') :style="{ maxHeight: `${viewHeigth}px` }"
} class="view"
" :refresher-enabled="true"
/> @refresherrefresh="refresherrefresh"
</van-dropdown-menu> :refresher-triggered="refresherTriggered"
<scroll-view @refresherpulling="refresherpulling"
:scroll-y="true" >
:style="{ maxHeight: `${viewHeigth}px` }" <view class="box row-1">
class="view" <view
:refresher-enabled="true" class="wd-flex"
@refresherrefresh="refresherrefresh" style="justify-content: space-around; padding: 24rpx"
:refresher-triggered="refresherTriggered" >
@refresherpulling="refresherpulling" <view
> class="wd-flex wd-flex-col wd-flex-center"
<view class="box row-1"> style="gap: 4px"
<view >
class="wd-flex" <u-count-to
style="justify-content: space-around" :start-val="0"
> :end-val="detail.taskCount"
<view bold
class="wd-flex wd-flex-col wd-flex-center" font-size="24"
style="gap: 4px" color="#071437"
> ></u-count-to>
<u-count-to <view class="">任务数量</view>
:start-val="0" </view>
:end-val="detail.taskCount" <view
bold class="wd-flex wd-flex-col wd-flex-center"
font-size="24" style="gap: 4px"
color="#071437" >
></u-count-to> <u-count-to
<view class="">任务数量</view> :start-val="0"
</view> :end-val="detail.inspectionsCount"
<view bold
class="wd-flex wd-flex-col wd-flex-center" font-size="24"
style="gap: 4px" color="#071437"
> ></u-count-to>
<u-count-to <view class="">执法记录</view>
:start-val="0" </view>
:end-val="detail.inspectionsCount" <view
bold class="wd-flex wd-flex-col wd-flex-center"
font-size="24" style="gap: 4px"
color="#071437" >
></u-count-to> <u-count-to
<view class="">执法记录</view> :start-val="0"
</view> :end-val="detail.enterpriseCount"
<view bold
class="wd-flex wd-flex-col wd-flex-center" font-size="24"
style="gap: 4px" color="#071437"
> ></u-count-to>
<u-count-to <view class="">企业数量</view>
:start-val="0" </view>
:end-val="detail.enterpriseCount" </view>
bold <qiun-data-charts
font-size="24" type="ring"
color="#071437" :opts="opts"
></u-count-to> :chartData="chartData"
<view class="">企业数量</view> :canvas2d="true"
</view> style="height: 144px"
</view> ></qiun-data-charts>
<qiun-data-charts <view class="wd-flex" style="gap: 12px; flex-wrap: wrap">
type="ring" <view
:opts="opts" class="wd-flex wd-flex-col wd-flex-center"
:chartData="chartData" v-for="item in detail.legendData"
:canvas2d="true" :key="item"
style="height: 144px" style="
></qiun-data-charts> border: 1px solid #f9f9f9;
<view width: calc(100% / 3 - 8px);
class="wd-flex" padding: 12px;
style="gap: 12px; flex-wrap: wrap" gap: 4px;
> border-radius: 4px;
<view "
class="wd-flex wd-flex-col wd-flex-center" >
v-for="item in detail.legendData" <view class="wd-flex wd-flex-col" style="gap: 4px">
:key="item" <view
style=" class="wd-flex"
border: 1px solid #f9f9f9; style="align-items: center; gap: 4px"
width: calc(100% / 3 - 8px); >
padding: 12px; <view
gap: 4px; :style="{
border-radius: 4px; width: '8px',
" height: '4px',
> borderRadius: '4px',
<view backgroundColor: item.color
class="wd-flex wd-flex-col" }"
style="gap: 4px" ></view>
> <view class="people-name">{{ item.name }}</view>
<view </view>
class="wd-flex" <view class="wd-flex wd-flex-center">
style="align-items: center; gap: 4px" <u-count-to
> :start-val="0"
<view :end-val="Number(item.value)"
:style="{ bold
width: '8px', font-size="16"
height: '4px', color="#071437"
borderRadius: '4px', ></u-count-to>
backgroundColor: item.color, %
}" </view>
></view> </view>
<view class="">{{ item.name }}</view> </view>
</view> </view>
<view class="wd-flex wd-flex-center"> </view>
<u-count-to <view class="box row-1">
:start-val="0" <view
:end-val="Number(item.value)" class="wd-flex"
bold style="margin-top: 12px; justify-content: center"
font-size="16" >
color="#071437" <view
></u-count-to> style="
% background-color: #f9f9f9;
</view> display: inline-flex;
</view> padding: 4px;
</view> "
</view> >
</view> <view
<view class="box row-1"> class="tab"
<view v-for="(item, index) in tabs"
class="wd-flex" :key="index"
style="margin-top: 12px; justify-content: center" :style="{
> '--index': tabs.findIndex(
<view i => i.type == queryParams.type
style=" )
background-color: #f9f9f9; }"
display: inline-flex; @tap="changeTab(item.type)"
padding: 4px; >
" <view
> class="name"
<view :style="{
class="tab" color:
v-for="(item, index) in tabs" queryParams.type == item.type ? '#071437' : '#78829d'
:key="index" }"
:style="{ >
'--index': tabs.findIndex(i => i.type == queryParams.type), {{ item.name }}
}" </view>
@tap="changeTab(item.type)" </view>
> </view>
<view </view>
class="name" <view style="min-height: 220px">
:style="{ <view
color: v-for="(item, index) in list"
queryParams.type == item.type ? '#071437' : '#78829d', :key="index"
}" class="wd-flex"
> style="justify-content: space-between; padding: 12px"
{{ item.name }} >
</view> <view class="wd-font-800">{{ item.name }}</view>
</view> <view class="wd-font-800" style="color: #ff6f1e">
</view> <view>
</view> <u-count-to
<view style="min-height: 220px"> :start-val="0"
<view :end-val="item.count"
v-for="(item, index) in list" bold
:key="index" font-size="14"
class="wd-flex" color="#FF6F1E"
style="justify-content: space-between; padding: 12px" ></u-count-to>
> <text>{{ queryParams.type == 1 ? '天' : '次' }}</text>
<view class="wd-font-800">{{ item.name }}</view> </view>
<view </view>
class="wd-font-800" </view>
style="color: #ff6f1e" </view>
> </view>
<view> </scroll-view>
<u-count-to </view>
:start-val="0" </cs-page>
:end-val="item.count"
bold
font-size="14"
color="#FF6F1E"
></u-count-to>
<text>{{ queryParams.type == 1 ? '天' : '次' }}</text>
</view>
</view>
</view>
</view>
</view>
</scroll-view>
</view>
</cs-page>
</template> </template>
<script> <script>
import { getDictBatchByType, getDeptTree } from '@/api/system/dict.js' import { getDictBatchByType, getDeptTree } from '@/api/system/dict.js'
import { HomeApi } from '@/api/common/home.js' import { HomeApi } from '@/api/common/home.js'
export default { export default {
data() { data() {
return { return {
dictMap: {}, dictMap: {},
queryParams: { queryParams: {
selectWeek: '', selectWeek: '',
deptId: '', deptId: '',
type: 1, type: 1
}, },
detail: {}, detail: {},
opts: {}, opts: {},
chartData: {}, chartData: {},
viewHeigth: 0, viewHeigth: 0,
tabs: [ tabs: [
{ {
name: '资质逾期', name: '资质逾期',
type: 1, type: 1
}, },
{ {
name: '整改次数', name: '整改次数',
type: 2, type: 2
}, }
], ],
refresherTriggered: false, refresherTriggered: false,
list: [], list: [],
dropOption: {}, dropOption: {},
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653'], color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653']
} }
}, },
onLoad: async function () { onLoad: async function () {
await uni.hideTabBar() await uni.hideTabBar()
uni.hideTabBar({ uni.hideTabBar({
animation: false, animation: false
}) })
this.getDict() this.getDict()
if (!this.$roles.checkRole(['director'])) { if (!this.$roles.checkRole(['director'])) {
this.queryParams.deptId = this.$store.getters.deptId this.queryParams.deptId = this.$store.getters.deptId
} }
this.init() this.init()
}, },
onReady() { onReady() {
this.$nextTick(() => { this.$nextTick(() => {
this.getPageHeight() this.getPageHeight()
}) })
}, },
onShow() { onShow() {
this.init() this.init()
}, },
methods: { methods: {
getPageHeight() { getPageHeight() {
const query = uni.createSelectorQuery().in(this) const query = uni.createSelectorQuery().in(this)
query query
.select('.view-container') .select('.view-container')
.boundingClientRect(data => { .boundingClientRect(data => {
this.viewHeigth = data.height - 35 - 25 this.viewHeigth = data.height - 35 - 25
}) })
.exec() .exec()
}, },
async getDict() { async getDict() {
const dict = await getDictBatchByType({ const dict = await getDictBatchByType({
type: ['select_week'].join(','), type: ['select_week'].join(',')
}) })
const dept = await getDeptTree() const dept = await getDeptTree()
this.dropOption.dept = [ this.dropOption.dept = [
...dept.data.map(i => { ...dept.data.map(i => {
return { return {
value: i.id, value: i.id,
text: i.name, text: i.name
} }
}), }),
{ {
value: '', value: '',
text: '全部', text: '全部'
}, }
] ]
this.dropOption.select_week = [ this.dropOption.select_week = [
...dict.data.select_week.map(i => { ...dict.data.select_week.map(i => {
return { return {
value: i.value, value: i.value,
text: i.label, text: i.label
} }
}), }),
{ {
value: '', value: '',
text: '全部', text: '全部'
}, }
] ]
}, },
async init() { async init() {
// if (!this.$roles.checkRole(['director'])) { // if (!this.$roles.checkRole(['director'])) {
// this.queryParams.deptId = this.$store.getters.deptId // this.queryParams.deptId = this.$store.getters.deptId
// } // }
const res = await HomeApi.getPieData(this.queryParams) const res = await HomeApi.getPieData(this.queryParams)
this.detail = res.data this.detail = res.data
let curIndex = 0 let curIndex = 0
const data = this.detail.completionRate.map((item, index) => { const data = this.detail.completionRate.map((item, index) => {
const res = { ...item, color: this.color[curIndex] } const res = { ...item, color: this.color[curIndex] }
curIndex > this.color.length ? 0 : curIndex++ curIndex > this.color.length ? 0 : curIndex++
return res return res
}) })
this.detail.legendData = data console.log('init', data)
this.setPieData(data, this.detail.taskCompletionRate) this.detail.legendData = data
this.getList() this.setPieData(data, this.detail.taskCompletionRate)
}, this.getList()
async getList() { },
const res = await HomeApi.getListData(this.queryParams) async getList() {
this.list = res.data const res = await HomeApi.getListData(this.queryParams)
}, this.list = res.data
setPieData(data, max) { },
const pieData = data.map(i => { setPieData(data, max) {
return { const pieData = data.map(i => {
name: i.name, return {
value: Number(i.pieValue), name: i.name,
} value: Number(i.pieValue)
}) }
if (Number(max) < 100) { })
pieData.push({ if (Number(max) < 100) {
name: '', pieData.push({
value: 100 - Number(max), name: '',
color: '#fff', value: 100 - Number(max),
}) color: '#fff'
} })
this.opts = { }
legend: { this.opts = {
show: false, legend: {
}, show: false
color: this.color, },
rotate: false, color: this.color,
rotateLock: false, rotate: false,
padding: [0, 0, 0, 0], rotateLock: false,
dataLabel: false, padding: [0, 0, 0, 0],
enableScroll: false, dataLabel: false,
title: { enableScroll: false,
name: `${max}%`, title: {
fontSize: 24, name: `${max}%`,
color: '#071437', fontSize: 24,
fontWeight: 'bold', color: '#071437',
}, fontWeight: 'bold'
subtitle: { },
name: '完成率', subtitle: {
fontSize: 14, name: '完成率',
color: '#78829D', fontSize: 14,
}, color: '#78829D'
extra: { },
ring: { extra: {
ringWidth: 15, ring: {
activeOpacity: 0.5, ringWidth: 15,
offsetAngle: 90, activeOpacity: 0.5,
labelWidth: 15, offsetAngle: 90,
border: false, labelWidth: 15,
borderColor: '#FFFFFF', border: false,
linearType: 'none', borderColor: '#FFFFFF',
}, linearType: 'none'
}, }
} }
this.chartData = { }
series: [ this.chartData = {
{ series: [
data: pieData, {
}, data: pieData
], }
} ]
}, }
sectionChange(index) { },
this.queryParams.enterprise = index sectionChange(index) {
}, this.queryParams.enterprise = index
querySelect(v, key) { },
this.queryParams[key] = v.detail querySelect(v, key) {
this.init() this.queryParams[key] = v.detail
}, this.init()
changeTab(type) { },
this.queryParams.type = type changeTab(type) {
this.getList() this.queryParams.type = type
}, this.getList()
refresherpulling() { },
const that = this refresherpulling() {
if (!this.refresherTriggered) { const that = this
this.refresherTriggered = true if (!this.refresherTriggered) {
setTimeout(() => { this.refresherTriggered = true
that.refresherTriggered = false setTimeout(() => {
}, 1000) that.refresherTriggered = false
} }, 1000)
}, }
refresherrefresh() { },
this.init() refresherrefresh() {
}, this.init()
dorpToggle(e) { },
if (!this.$roles.checkRole(['director'])) { dorpToggle(e) {
uni.showToast({ if (!this.$roles.checkRole(['director'])) {
icon: 'none', e.detail.callback(false)
title: '暂无权限', } else {
}) e.detail.callback(true)
e.detail.callback(false) }
} else { }
e.detail.callback(true) }
} }
},
},
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.view-container { .view-container {
height: 100%; height: 100%;
} }
.view { .view {
padding: 0 12px; padding: 0 12px;
padding-bottom: 12px; padding-bottom: 12px;
display: flex; display: flex;
gap: 12px; gap: 12px;
flex-flow: column nowrap; flex-flow: column nowrap;
.box { .box {
padding: 12px; padding: 12px;
background-color: #fff; background-color: #fff;
border: 1px solid #f9f9f9; border: 1px solid #f9f9f9;
border-radius: 12px; border-radius: 12px;
margin-top: 12px; margin-top: 12px;
&:last-child { &:last-child {
margin-bottom: 12px; margin-bottom: 12px;
} }
} }
.row-1 { .row-1 {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 12px; gap: 12px;
} }
.tab { .people-name {
position: relative; max-width: 4rem;
padding: 4px 16px; max-height: 1rem;
.name { text-overflow: ellipsis;
z-index: 2; white-space: nowrap;
position: inherit; overflow: hidden;
font-weight: bold; }
} .tab {
&:first-child::before { position: relative;
content: ''; padding: 4px 16px;
position: absolute; .name {
inset: 0; z-index: 2;
background-color: #fff; position: inherit;
border-radius: 2px; font-weight: bold;
transform: translateX(calc(var(--index) * 100%)); }
transition: 0.2s all; &:first-child::before {
z-index: 1; content: '';
} position: absolute;
} inset: 0;
} background-color: #fff;
::v-deep .van-dropdown-menu { border-radius: 2px;
box-shadow: none; transform: translateX(calc(var(--index) * 100%));
height: 35px !important; transition: 0.2s all;
font-size: 13px; z-index: 1;
border-bottom: 1px solid #f1f1f4; }
} }
}
::v-deep .van-dropdown-menu {
box-shadow: none;
height: 35px !important;
font-size: 13px;
border-bottom: 1px solid #f1f1f4;
}
</style> </style>

115
pages/login.vue

@ -2,8 +2,8 @@
<view class="container"> <view class="container">
<u--image <u--image
src="/static/favicon.png" src="/static/favicon.png"
width="180px" width="288rpx"
height="80px" height="288rpx"
mode="aspectFit" mode="aspectFit"
:fade="true" :fade="true"
duration="450" duration="450"
@ -13,40 +13,62 @@
</template> </template>
<script> <script>
import { getAccessToken, setOpenId, getOpenId } from '@/utils/auth'
export default { export default {
name: 'Login', name: 'Login',
data() { data() {
return { return {
invateId: '' inviteId: '',
timer: null
} }
}, },
onLoad(res) { onLoad(options) {
if (res.invateId) { if (options.inviteId) {
this.invateId = res.invateId this.inviteId = options.inviteId
} }
this.init() this.initApp()
}, },
methods: { methods: {
init() { //
uni.login({ async initApp() {
success: res => { await uni.hideTabBar()
const data = { uni.hideTabBar({
type: 34, animation: false
code: res.code,
state: 'default',
userType: this.getUserType()
}
//
this.$store.dispatch('Login', data).then(() => {
this.loginSuccess()
})
}
}) })
//
this.checkLogin()
},
checkLogin() {
console.log('accessToken', getAccessToken())
if (!getAccessToken()) {
this.login()
} else {
this.loginSuccess()
}
},
login() {
console.log('openId', getOpenId())
if (getOpenId()) {
clearTimeout(this.timer)
const data = {
type: 34,
code: getOpenId(),
state: 'default',
userType: this.getUserType()
}
this.$store.dispatch('Login', data).then(() => {
this.loginSuccess()
})
} else {
this.timer && clearTimeout(this.timer)
this.timer = setTimeout(() => {
this.login()
}, 200)
}
}, },
getUserType() { getUserType() {
// //
if (this.invateId) return 2 if (this.inviteId) return 2
// if (this.type == 'internal') return 3 // if (this.type == 'internal') return 3
// return 1 // return 1
return 3 return 3
@ -57,33 +79,39 @@ export default {
}) })
}, },
handlerNavigateTo(user) { handlerNavigateTo(user) {
if (this.redirect) {
uni.reLaunch({
url: this.redirect
})
return
}
// //
if (this.invateId) { if (this.inviteId) {
uni.navigateTo({ uni.reLaunch({
url: `/sub/enterprise/edit?invateId=${this.invateId}` url: `/sub/invite/index?inviteId=${this.inviteId}`
}) })
return return
} }
// //
if (user.audit == 1) { if (user.audit == 1) {
uni.navigateTo({ uni.reLaunch({
url: '/sub/common/waiting' url: '/sub/common/waiting'
}) })
return return
} }
// //
if (user.audit == 2) { if (user.audit == null) {
uni.switchTab({ //
url: '/pages/index' uni.reLaunch({
url: '/sub/owner/edit'
}) })
return return
} }
// uni.switchTab({
uni.navigateTo({ url: '/pages/index'
url: '/sub/owner/edit'
}) })
} }
} }
@ -99,17 +127,18 @@ export default {
align-items: center; align-items: center;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 20px; gap: 20px;
background: linear-gradient(180deg, #02815b 0%, #114636 100%); background: var(--LightMode-Success-Success, #17c653);
.icon {
width: 40vw;
filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.12));
}
.title { .title {
color: #fff; color: var(--LightMode-Light-Light, #fff);
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.12); text-align: center;
font-size: 30px; text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.12);
font-family: ShiShangJianTi;
font-size: 80rpx;
font-style: normal;
font-weight: 400; font-weight: 400;
letter-spacing: 2px; line-height: normal;
letter-spacing: 4rpx;
} }
} }
</style> </style>

54
pages/owner.vue

@ -47,7 +47,7 @@
</view> --> </view> -->
<view <view
class="wd-flex wd-flex-row wd-items-center" class="wd-flex wd-flex-row wd-items-center"
style="gap: 8px" style="gap: 16rpx"
@click="openSubMessage" @click="openSubMessage"
> >
<text>点击开启</text> <text>点击开启</text>
@ -78,7 +78,7 @@
class="section wd-flex wd-flex-row wd-justify-between" class="section wd-flex wd-flex-row wd-justify-between"
@click="btnPolicy" @click="btnPolicy"
> >
<view class="wd-flex wd-flex-row" style="gap: 8px"> <view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u--image <u--image
src="/static/images/owner/list.png" src="/static/images/owner/list.png"
width="20px" width="20px"
@ -87,7 +87,10 @@
></u--image> ></u--image>
<text class="wd-font-800">政策法规</text> <text class="wd-font-800">政策法规</text>
</view> </view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> <view
class="wd-flex wd-flex-row wd-items-center"
style="gap: 16rpx"
>
<u-count-to <u-count-to
:startVal="0" :startVal="0"
:endVal="policyTotal" :endVal="policyTotal"
@ -97,28 +100,32 @@
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
<view <button
class="section wd-flex wd-flex-row wd-justify-between" class="section wd-flex wd-flex-row wd-justify-between"
open-type="share"
@click="invite" @click="invite"
> >
<view class="wd-flex wd-flex-row" style="gap: 8px"> <view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u--image <u--image
src="/static/images/owner/list.png" src="/static/images/owner/edit.png"
width="20px" width="20px"
height="20px" height="20px"
mode="aspectFit" mode="aspectFit"
></u--image> ></u--image>
<text class="wd-font-800">企业入驻</text> <text class="wd-font-800">企业入驻</text>
</view> </view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> <view
class="wd-flex wd-flex-row wd-items-center"
style="gap: 16rpx"
>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </button>
<view <view
class="section wd-flex wd-flex-row wd-justify-between" class="section wd-flex wd-flex-row wd-justify-between"
@click="callPhone" @click="callPhone"
> >
<view class="wd-flex wd-flex-row" style="gap: 8px"> <view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u--image <u--image
src="/static/images/owner/phone.png" src="/static/images/owner/phone.png"
width="20px" width="20px"
@ -127,7 +134,10 @@
></u--image> ></u--image>
<text class="wd-font-800">内部专线</text> <text class="wd-font-800">内部专线</text>
</view> </view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> <view
class="wd-flex wd-flex-row wd-items-center"
style="gap: 16rpx"
>
<text>点击呼叫</text> <text>点击呼叫</text>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
@ -145,13 +155,20 @@ export default {
data() { data() {
return { return {
user: {}, user: {},
policyTotal: 0 policyTotal: 0,
share: {}
} }
}, },
computed: {}, computed: {},
onShow() { onShow() {
this.init() this.init()
}, },
onShareAppMessage() {
return this.share
},
onShareTimeline() {
return this.share
},
methods: { methods: {
btnPolicy() { btnPolicy() {
uni.navigateTo({ uni.navigateTo({
@ -184,14 +201,16 @@ export default {
}) })
}, },
invite() { invite() {
uni.navigateTo({ this.share = {
url: '/sub/owner/invite' title: '邀请企业入驻', //
// url: '/sub/enterprise/edit' path: `/pages/login?inviteId=${this.$store.getters.userId}`,
}) imageUrl:
'http://82.156.141.150:9001/api/v1/download-shared-object/aHR0cDovL2xvY2FsaG9zdDo5MDAwL2h1YW5iYW8vbWluaWFwcC9pbnZhdGUucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUQxODY1RVA2NEczMEdEUUhDVTglMkYyMDI1MDIxOCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMThUMDcyMDI0WiZYLUFtei1FeHBpcmVzPTQzMTk5JlgtQW16LVNlY3VyaXR5LVRva2VuPWV5SmhiR2NpT2lKSVV6VXhNaUlzSW5SNWNDSTZJa3BYVkNKOS5leUpoWTJObGMzTkxaWGtpT2lKQlJERTROalZGVURZMFJ6TXdSMFJSU0VOVk9DSXNJbVY0Y0NJNk1UY3pPVGt3TmpJME55d2ljR0Z5Wlc1MElqb2lZV1J0YVc0aWZRLmp6djBhdEY5QVBYXzVjYWg4c18yeXhVV3oxek9BekFzSVdzemVrUmZwcXlHd0RPWkptazlUSGJRUnBDdVNmLVMyU0otWTI1cldUd2hpNUlrY0xBSThRJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCZ2ZXJzaW9uSWQ9bnVsbCZYLUFtei1TaWduYXR1cmU9MjcxZTkzOTE1MDkwYzUzYmRjYTg0MjQ1MTJhYjk3ZWQxZWMyN2QzM2MwM2U3NGUwYmRhNTBmYjQyNWI0N2MyOQ'
}
}, },
callPhone() { callPhone() {
uni.makePhoneCall({ uni.makePhoneCall({
phoneNumber: '' phoneNumber: '04167230123'
}) })
} }
} }
@ -215,7 +234,8 @@ export default {
border-radius: $cs-border-radius; border-radius: $cs-border-radius;
background: #fff; background: #fff;
margin-bottom: $cs-gap; margin-bottom: $cs-gap;
padding: 24px; padding: 48rpx;
font-size: 28rpx;
} }
.moblie { .moblie {
color: $uni-text-color-grey; color: $uni-text-color-grey;

7
pages/task.vue

@ -124,7 +124,12 @@
></cs-dict-tag> ></cs-dict-tag>
</view> </view>
</view> </view>
<u-loadmore :status="load" marginTop="12" marginBottom="12" /> <u-loadmore
:status="load"
marginTop="12"
marginBottom="12"
v-if="load == 'nomore'"
/>
</scroll-view> </scroll-view>
</view> </view>
</cs-page> </cs-page>

45
static/echarts.esm.min.mjs

File diff suppressed because one or more lines are too long

BIN
static/favicon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 21 KiB

BIN
static/images/owner/edit.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 882 B

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
static/images/owner/list.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 989 B

BIN
static/images/owner/message.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 985 B

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
static/images/owner/phone.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 705 B

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
static/images/task/position.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 69 KiB

1
static/scss/global.scss

@ -2,7 +2,6 @@ page {
background-color: #f9f9f9; background-color: #f9f9f9;
position: relative; position: relative;
color: #071437; color: #071437;
overflow: hidden;
} }
button { button {

1
store/modules/user.js

@ -42,6 +42,7 @@ const user = {
}, },
SET_ROLES: (state, roles) => { SET_ROLES: (state, roles) => {
state.roles = roles state.roles = roles
storage.remove(constant.roles)
storage.set(constant.roles, roles) storage.set(constant.roles, roles)
}, },
SET_DEPTID: (state, deptId) => { SET_DEPTID: (state, deptId) => {

44
sub/common/waiting.vue

@ -1,23 +1,14 @@
<template> <template>
<view class="waiting" > <view class="waiting">
<u--image <u--image
src="/static/favicon.png" src="/static/favicon.png"
width="144px" width="288rpx"
height="144px" height="288rpx"
mode="aspectFit" mode="aspectFit"
:fade="true" :fade="true"
duration="200" duration="200"
></u--image> ></u--image>
<button <button class="login" @click="login">授权登录</button>
class="login"
@click="login"
:loading="loading"
loadingText="授权中..."
v-if="!isLogin"
>
授权登录
</button>
<text v-else class="title">登录成功</text>
</view> </view>
</template> </template>
@ -28,9 +19,7 @@ import { qrLogin } from '@/api/login'
export default { export default {
data() { data() {
return { return {
scene: '', scene: ''
loading: false,
isLogin: false
} }
}, },
methods: { methods: {
@ -49,14 +38,19 @@ export default {
}) })
}) })
} else { } else {
this.loading = true uni.showLoading({
title: '登陆中。。。'
})
qrLogin({ qrLogin({
code: this.scene, code: this.scene,
openid: getAccessToken() openid: getAccessToken()
}).then(res => { }).then(res => {
this.loading = false setTimeout(() => {
this.isLogin = true uni.hideLoading()
uni.exitMiniProgram() uni.switchTab({
url: '/pages/index'
})
}, 3000)
}) })
} }
} }
@ -79,22 +73,22 @@ export default {
gap: 40px; gap: 40px;
.login { .login {
display: flex; display: flex;
padding: var(--Number-12px, 12px) var(--Number-40px, 40px); padding: var(--Number-12px, 24rpx) var(--Number-40px, 80rpx);
justify-content: center; justify-content: center;
align-items: center; align-items: center;
border-radius: var(--Number-120px, 120px); border-radius: var(--Number-120px, 240rpx);
background: var(--LightMode-Light-Light, #fff); background: var(--LightMode-Light-Light, #fff);
box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03); box-shadow: 0px 6rpx 8rpx 0px rgba(0, 0, 0, 0.03);
color: var(--LightMode-Success-Success, #17c653); color: var(--LightMode-Success-Success, #17c653);
font-family: 'PingFang SC'; font-family: 'PingFang SC';
font-size: 16px; font-size: 32rpx;
font-style: normal; font-style: normal;
font-weight: 500; font-weight: 500;
line-height: normal; line-height: normal;
} }
.title { .title {
font-family: 'PingFang SC'; font-family: 'PingFang SC';
font-size: 16px; font-size: 32rpx;
font-style: normal; font-style: normal;
font-weight: 500; font-weight: 500;
line-height: normal; line-height: normal;

30
sub/enterprise/detail.vue

@ -50,12 +50,12 @@
color="#4B5675" color="#4B5675"
:value="detail.introduction" :value="detail.introduction"
></cs-text-more> ></cs-text-more>
<view class="status"> <!-- <view class="status">
<cs-dict-tag <cs-dict-tag
:dict="dictMap.enterprises_status" :dict="dictMap.enterprises_status"
:value="detail.enterprisesStatus" :value="detail.enterprisesStatus"
></cs-dict-tag> ></cs-dict-tag>
</view> </view> -->
</view> </view>
<view <view
@ -107,7 +107,7 @@
</view> </view>
</view> </view>
<cs-bottom-wrapper> <cs-bottom-wrapper v-if="isView">
<view class="operation"> <view class="operation">
<view <view
class="btn green" class="btn green"
@ -127,6 +127,13 @@
</view> </view>
</cs-bottom-wrapper> </cs-bottom-wrapper>
<cs-bottom-wrapper v-else>
<view class="operation">
<view class="btn green" v-if="isChange">认领该企业</view>
<view class="btn red" v-else>删除该企业</view>
</view>
</cs-bottom-wrapper>
<u-modal <u-modal
:show="showModel" :show="showModel"
confirmText="返回" confirmText="返回"
@ -164,13 +171,22 @@ export default {
}, },
showModel: false, showModel: false,
dictMap: {}, dictMap: {},
total: 0 total: 0,
isView: true,
isChange: false
} }
}, },
onLoad(res) { onLoad(res) {
if (res.id) { if (res.id) {
this.detail.id = res.id this.detail.id = res.id
} }
if (res.view) {
this.isView = false
}
if (res.change) {
this.isView = false
this.isChange = true
}
this.getDict() this.getDict()
this.init() this.init()
}, },
@ -332,6 +348,10 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
gap: 12px; gap: 12px;
.red {
background: var(--LightMode-Danger-Danger-Light, #ffeef3);
color: var(--LightMode-Danger-Danger, #f8285a);
}
.btn { .btn {
flex: 1; flex: 1;
border-radius: 8px; border-radius: 8px;
@ -349,4 +369,4 @@ export default {
color: #99a1b7; color: #99a1b7;
} }
} }
</style> </style>

109
sub/invite/addEnterprise.vue

@ -15,6 +15,8 @@
@blur="proofName" @blur="proofName"
:clearable="false" :clearable="false"
:autoHeight="true" :autoHeight="true"
:adjust-position="true"
cursorSpacing="32"
ref="nameRef" ref="nameRef"
></uni-easyinput> ></uni-easyinput>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
@ -82,12 +84,12 @@
</view> </view>
<view class="block"> <view class="block">
<view style=""> <view class="label">
<text style="color: #f8285a; margin-right: 4px">*</text> <text style="color: #f8285a; margin-right: 4px">*</text>
企业标签 企业标签
</view> </view>
<view class="value" @tap="goTags"> <view class="value" style="width: 50%" @tap="goTags">
<view class="input-textarea" v-if="Object.keys(form.tags).length"> <view class="input-value" v-if="Object.keys(form.tags).length">
{{ {{
Object.values(form.tags) Object.values(form.tags)
.map(tag => tag.name) .map(tag => tag.name)
@ -114,6 +116,8 @@
v-model="form.contactName" v-model="form.contactName"
:clearable="false" :clearable="false"
:autoHeight="true" :autoHeight="true"
:adjust-position="true"
cursorSpacing="32"
></uni-easyinput> ></uni-easyinput>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
@ -134,6 +138,9 @@
@blur="proofphone" @blur="proofphone"
:clearable="false" :clearable="false"
:autoHeight="true" :autoHeight="true"
:adjust-position="true"
cursorSpacing="32"
ref="phoneRef"
></uni-easyinput> ></uni-easyinput>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
@ -170,8 +177,13 @@
> >
<image <image
:src="p.photo[0].url" :src="p.photo[0].url"
style="width: 90px; height: 70px" style="
mode="widthFix" width: 180rpx;
height: 144rpx;
flex-shrink: 0;
border-radius: 8rpx;
"
mode="aspectFill"
></image> ></image>
<view class="info"> <view class="info">
<view class="wd-flex" style="gap: 8px; align-items: center"> <view class="wd-flex" style="gap: 8px; align-items: center">
@ -187,7 +199,15 @@
</view> </view>
<view class="wd-flex" style="gap: 8px; align-items: center"> <view class="wd-flex" style="gap: 8px; align-items: center">
<text class="label">资质编号</text> <text class="label">资质编号</text>
<view class="wd-font-800"> <view
class="wd-font-800"
style="
white-space: nowrap;
text-overflow: ellipsis;
max-width: 8rem;
overflow: hidden;
"
>
{{ p.enterpriseAuth }} {{ p.enterpriseAuth }}
</view> </view>
</view> </view>
@ -215,8 +235,10 @@ import { getDictBatchByType } from '@/api/system/dict.js'
import { import {
createEnterPrise, createEnterPrise,
vertifyName, vertifyName,
getEnterPrise getEnterPrise,
updateEnterprise
} from '@/api/enterprise/index.js' } from '@/api/enterprise/index.js'
import { getProveList } from '@/api/enterprise/prove.js'
export default { export default {
data() { data() {
return { return {
@ -237,12 +259,12 @@ export default {
} }
}, },
onLoad(res) { onLoad(res) {
this.getDict()
this.inviteId = res.inviteId this.inviteId = res.inviteId
if (res.id) { if (res.id) {
this.form.id = res.id this.form.id = res.id
this.init() this.init()
} }
this.getDict()
}, },
onShow() { onShow() {
uni.$on('enterpriseIntroduce', data => { uni.$on('enterpriseIntroduce', data => {
@ -252,7 +274,11 @@ export default {
this.form.tags = data this.form.tags = data
}) })
uni.$on('prove', data => { uni.$on('prove', data => {
this.prove.push(data) if (this.form.id) {
this.getProve()
} else {
this.prove.push(data)
}
}) })
}, },
methods: { methods: {
@ -264,7 +290,8 @@ export default {
vertifyName({ vertifyName({
pageSize: -1, pageSize: -1,
pageNo: 1, pageNo: 1,
onlyEnterprisesName: v.detail.value onlyEnterprisesName: v.detail.value,
excludeEnterpriseId: this.form.id
}).then(res => { }).then(res => {
if (res.data.total > 0) { if (res.data.total > 0) {
uni.showToast({ uni.showToast({
@ -272,6 +299,7 @@ export default {
icon: 'none' icon: 'none'
}) })
this.form.enterprisesName = '' this.form.enterprisesName = ''
this.$refs.nameRef.onClear()
} else { } else {
this.form.enterprisesName = v.detail.value this.form.enterprisesName = v.detail.value
} }
@ -287,13 +315,42 @@ export default {
icon: 'none' icon: 'none'
}) })
this.form.environmentalContactPhone = '' this.form.environmentalContactPhone = ''
this.$refs.phoneRef.onClear()
} else { } else {
this.form.environmentalContactPhone = v.detail.value this.form.environmentalContactPhone = v.detail.value
} }
}, },
init() { async init() {
getEnterPrise(this.form.id).then(res => { const enterprise = await getEnterPrise(this.form.id)
console.log(res) this.form = enterprise.data
this.form.photo = enterprise.data.files
const tag = {}
enterprise.data.tagObjList.forEach(t => {
tag[t.tagCode] = {
name: t.tagName,
value: t.id
}
})
tag.qy = {
name: this.$dict.echoDicValue(
this.dictMap.enterprises_area,
enterprise.data.region
),
value: enterprise.data.region
}
this.form.tags = tag
this.getProve()
},
async getProve() {
const load = this.$util.loading()
const prove = await getProveList({ enterpriseId: this.form.id })
load.close()
this.prove = prove.data.list.map(p => {
return {
...p,
photo: p.files,
expiryDate: this.$util.formatDate(p.expiryDate, 'YYYY-MM-DD')
}
}) })
}, },
/** /**
@ -301,7 +358,7 @@ export default {
*/ */
async getDict() { async getDict() {
const dict = await getDictBatchByType({ const dict = await getDictBatchByType({
type: ['enterprise_qua'].join(',') type: ['enterprise_qua', 'enterprises_area'].join(',')
}) })
this.dictMap = { this.dictMap = {
...dict.data ...dict.data
@ -369,7 +426,7 @@ export default {
}, },
addProve() { addProve() {
uni.navigateTo({ uni.navigateTo({
url: '/sub/invite/prove' url: `/sub/invite/prove?enterpriseId=${this.form.id}`
}) })
}, },
editProve(prove) { editProve(prove) {
@ -382,7 +439,6 @@ export default {
if (!valide) return if (!valide) return
const data = { ...this.form } const data = { ...this.form }
data.region = data.tags.qy.id data.region = data.tags.qy.id
// data.type = data.tags.qy.id
data.tagIds = [data.tags.hy.id, data.tags.st.id, data.tags.wr.id] data.tagIds = [data.tags.hy.id, data.tags.st.id, data.tags.wr.id]
data.fileIds = data.photo.map(i => i.id) data.fileIds = data.photo.map(i => i.id)
data.userId = this.inviteId data.userId = this.inviteId
@ -393,10 +449,19 @@ export default {
files: i.photo.map(f => f.id) files: i.photo.map(f => f.id)
} }
}) })
const load = this.$util.loading('上传中...')
if (this.form.id) { if (this.form.id) {
updateEnterprise(data).then(res => {
load.close()
uni.showToast({
icon: 'none',
title: '操作成功'
})
uni.navigateBack()
})
} else { } else {
console.log(data)
createEnterPrise(data).then(res => { createEnterPrise(data).then(res => {
load.close()
uni.showToast({ uni.showToast({
icon: 'none', icon: 'none',
title: '操作成功' title: '操作成功'
@ -419,7 +484,10 @@ export default {
} }
const msg = [] const msg = []
Object.keys(this.form).forEach(i => { Object.keys(this.form).forEach(i => {
if (!this.form[i] && i != 'id') { if (!Object.hasOwn(msgMap, i)) {
return false
}
if (!this.form[i]) {
msg.push(msgMap[i]) msg.push(msgMap[i])
} }
if (typeof this.form[i] == 'Object' && this.form[i].length == 0) { if (typeof this.form[i] == 'Object' && this.form[i].length == 0) {
@ -462,6 +530,11 @@ export default {
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
gap: 12px; gap: 12px;
.label {
font-family: UICTFontTextStyleBody;
height: 1.4rem;
min-height: 1.4rem;
}
.value { .value {
flex: 1; flex: 1;
display: flex; display: flex;

4
sub/invite/enterpriseTags.vue

@ -108,10 +108,10 @@ export default {
} }
}, },
onLoad(res) { onLoad(res) {
this.getDict()
if (res.tags) { if (res.tags) {
this.form = JSON.parse(res.tags) this.form = JSON.parse(res.tags)
} }
this.getDict()
}, },
methods: { methods: {
async getDict() { async getDict() {
@ -126,7 +126,7 @@ export default {
// //
const children = t.children.map(child => ({ const children = t.children.map(child => ({
name: child.tagName, name: child.tagName,
value: child.id value: child.id.toString()
})) }))
tagMap[t.tagCode] = children tagMap[t.tagCode] = children
}) })

59
sub/invite/index.vue

@ -1,5 +1,9 @@
<template> <template>
<view class="view"> <scroll-view
class="view-container"
direction="vertical"
:show-scrollbar="false"
>
<view class="emty" v-if="list.length == 0"> <view class="emty" v-if="list.length == 0">
<image <image
src="/static/images/emty.png" src="/static/images/emty.png"
@ -14,14 +18,14 @@
v-for="enterprise in list" v-for="enterprise in list"
:key="enterprise.id" :key="enterprise.id"
> >
<view class="info"> <view class="info" @tap="goDetail(enterprise.id)">
<view> <view>
{{ enterprise.enterprisesName }} {{ enterprise.enterprisesName }}
</view> </view>
<view class="wd-flex" style="gap: 8px"> <view class="wd-flex" style="gap: 8px">
<u-avatar <u-avatar
:src="enterprise.files[0].url" :src="enterprise.files[0].url"
shape="cricle" shape="square"
style="width: 53px; height: 53px" style="width: 53px; height: 53px"
></u-avatar> ></u-avatar>
<view class=""> <view class="">
@ -68,7 +72,13 @@
</view> </view>
</view> </view>
<view class="opera"> <view class="opera">
<view class="box-btn red">变更管理人</view> <button
class="box-btn red"
open-type="share"
@tap="shareEntprise(enterprise.id)"
>
变更管理人
</button>
<view class="box-btn green" @tap="editEnterprise(enterprise.id)"> <view class="box-btn green" @tap="editEnterprise(enterprise.id)">
编辑该企业 编辑该企业
</view> </view>
@ -87,7 +97,7 @@
<button class="btn green" @tap="addEnterprise">新增企业</button> <button class="btn green" @tap="addEnterprise">新增企业</button>
</view> </view>
</cs-bottom-wrapper> </cs-bottom-wrapper>
</view> </scroll-view>
</template> </template>
<script> <script>
@ -98,7 +108,12 @@ export default {
return { return {
inviteId: '', inviteId: '',
list: [], list: [],
dictMap: {} dictMap: {},
share: {
title: '企业变更管理', //
path: `/sub/invite/index?inviteId=${this.$store.getters.userId}`,
imageUrl: ''
}
} }
}, },
onLoad(res) { onLoad(res) {
@ -108,6 +123,9 @@ export default {
this.getDict() this.getDict()
this.getList() this.getList()
}, },
onShareAppMessage() {
return this.share
},
methods: { methods: {
getList() { getList() {
uni.showLoading({ uni.showLoading({
@ -143,21 +161,32 @@ export default {
uni.navigateTo({ uni.navigateTo({
url: `/sub/invite/addEnterprise?inviteId=${this.inviteId}&id=${id}` url: `/sub/invite/addEnterprise?inviteId=${this.inviteId}&id=${id}`
}) })
},
goDetail(id) {
uni.navigateTo({
url: `/sub/enterprise/detail?id=${id}&view=true`
})
},
shareEntprise(id) {
this.share = {
title: '企业变更管理', //
path: `/sub/enterprise/detail?id=${id}&view=true&change=true`,
imageUrl: ''
}
} }
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.view { .view-container {
padding: 12px; padding: 0 24rpx;
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 12px; padding-bottom: 13vh;
overflow: hidden; &::-webkit-scrollbar {
overflow-y: scroll; display: none;
max-height: 100vh; }
padding-bottom: 12vh;
} }
.emty { .emty {
border-radius: 8px; border-radius: 8px;
@ -190,7 +219,6 @@ export default {
} }
} }
.enterprise { .enterprise {
padding: 12px;
border-radius: var(--Number-12px, 12px); border-radius: var(--Number-12px, 12px);
border: 1px solid var(--LightMode-Grey-Grey-200, #f1f1f4); border: 1px solid var(--LightMode-Grey-Grey-200, #f1f1f4);
background: #fff; background: #fff;
@ -199,9 +227,9 @@ export default {
flex-direction: column; flex-direction: column;
align-items: flex-start; align-items: flex-start;
gap: var(--Number-16px, 16px); gap: var(--Number-16px, 16px);
align-self: stretch;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
margin-top: 24rpx;
.audit { .audit {
position: absolute; position: absolute;
right: -19px; right: -19px;
@ -249,6 +277,7 @@ export default {
align-items: center; align-items: center;
gap: var(--Number-12px, 12px); gap: var(--Number-12px, 12px);
flex: 1 0 0; flex: 1 0 0;
font-size: 14px;
} }
.red { .red {
background: var(--LightMode-Orange-Orange-Light, #fff5ef); background: var(--LightMode-Orange-Orange-Light, #fff5ef);

60
sub/invite/prove.vue

@ -33,6 +33,8 @@
<input <input
class="input-value" class="input-value"
type="text" type="text"
:adjust-position="true"
cursorSpacing="32"
placeholder-class="txt" placeholder-class="txt"
placeholder="请输入资质编号" placeholder="请输入资质编号"
v-model="prove.enterpriseAuth" v-model="prove.enterpriseAuth"
@ -124,9 +126,11 @@
<script> <script>
import { uploadFile } from '@/api/system/file.js' import { uploadFile } from '@/api/system/file.js'
import { getDictBatchByType } from '@/api/system/dict.js' import { getDictBatchByType } from '@/api/system/dict.js'
import { updateProve, createProve } from '@/api/enterprise/prove.js'
export default { export default {
data() { data() {
return { return {
enterpriseId: '',
prove: { prove: {
id: '', id: '',
qualificationName: '', qualificationName: '',
@ -150,15 +154,17 @@ export default {
} }
}, },
onLoad(res) { onLoad(res) {
this.getDict()
uni.setNavigationBarTitle({ uni.setNavigationBarTitle({
title: res.prove ? '编辑资质' : '新增资质' title: res.prove ? '编辑资质' : '新增资质'
}) })
if (res.enterpriseId) {
this.enterpriseId = res.enterpriseId
}
if (res.prove) { if (res.prove) {
this.prove = JSON.parse(res.prove) this.prove = JSON.parse(res.prove)
} }
this.getDict()
}, },
onShow() {},
methods: { methods: {
/** /**
* 获取字典 * 获取字典
@ -241,7 +247,6 @@ export default {
*/ */
confirmCalendar(e) { confirmCalendar(e) {
this.prove[this.calendar.key] = e.fulldate this.prove[this.calendar.key] = e.fulldate
this.closeCalendar() this.closeCalendar()
}, },
/** /**
@ -255,8 +260,48 @@ export default {
async submit() { async submit() {
const valide = await this.verifyForm() const valide = await this.verifyForm()
if (!valide) return if (!valide) return
uni.$emit('prove', this.prove) if (this.prove.id) {
uni.navigateBack() uni.showLoading({
title: '更新中...'
})
const data = { ...this.prove }
data.files = this.prove.photo.map(p => p.id)
data.expiryDate = new Date(this.prove.expiryDate).getTime()
updateProve(data).then(res => {
uni.hideLoading()
uni.showToast({
icon: 'none',
title: '操作成功'
})
uni.$emit('prove', this.prove)
uni.navigateBack()
})
} else if (this.enterpriseId) {
uni.showLoading({
title: '更新中...'
})
const data = { ...this.prove }
data.files = this.prove.photo.map(p => p.id)
data.expiryDate = new Date(this.prove.expiryDate).getTime()
data.enterpriseId = this.enterpriseId
createProve(data).then(res => {
uni.hideLoading()
uni.showToast({
icon: 'none',
title: '操作成功'
})
uni.$emit('prove', this.prove)
uni.navigateBack()
})
} else {
uni.$emit('prove', this.prove)
uni.navigateBack()
}
},
async hanlderApi() {
if (this.prove.id) {
} else {
}
}, },
async verifyForm() { async verifyForm() {
const msgMap = { const msgMap = {
@ -266,7 +311,10 @@ export default {
photo: '请上传资质照片' photo: '请上传资质照片'
} }
const keys = Object.keys(this.prove).filter(i => { const keys = Object.keys(this.prove).filter(i => {
if (!this.prove[i] && i != 'id') return i if (!Object.hasOwn(msgMap, i)) {
return false
}
if (!this.prove[i] && i) return i
if (typeof this.prove[i] == 'object' && this.prove[i].length == 0) if (typeof this.prove[i] == 'object' && this.prove[i].length == 0)
return i return i
}) })

49
sub/owner/edit.vue

@ -1,7 +1,11 @@
<template> <template>
<cs-page isCustom> <cs-page isCustom>
<template #header> <template #header>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px" @click="goBack"> <view
class="wd-flex wd-flex-row wd-items-center"
style="gap: 8px"
@click="goBack"
>
<view class="icon-box" v-if="form.audit"> <view class="icon-box" v-if="form.audit">
<u-icon name="arrow-left" size="12"></u-icon> <u-icon name="arrow-left" size="12"></u-icon>
</view> </view>
@ -10,7 +14,9 @@
</template> </template>
<view class="container"> <view class="container">
<!-- 我的头像 --> <!-- 我的头像 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center"> <view
class="section wd-flex wd-flex-row wd-justify-between wd-items-center"
>
<text class="wd-font-800">我的头像</text> <text class="wd-font-800">我的头像</text>
<button <button
class="wd-flex wd-flex-row wd-items-center avatarBtn" class="wd-flex wd-flex-row wd-items-center avatarBtn"
@ -24,7 +30,9 @@
</button> </button>
</view> </view>
<!-- 真实姓名 --> <!-- 真实姓名 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center"> <view
class="section wd-flex wd-flex-row wd-justify-between wd-items-center"
>
<text class="wd-font-800">姓名</text> <text class="wd-font-800">姓名</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> <view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<input <input
@ -44,13 +52,22 @@
> >
<text class="wd-font-800">性别</text> <text class="wd-font-800">性别</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> <view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<text v-if="form.sex">{{ $dict.echoDicValue(dictMap.system_user_sex, form.sex.toString()) }}</text> <text v-if="form.sex">
{{
$dict.echoDicValue(
dictMap.system_user_sex,
form.sex.toString()
)
}}
</text>
<text class="placeholder" v-else>请选择性别</text> <text class="placeholder" v-else>请选择性别</text>
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon> <u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view> </view>
</view> </view>
<!-- 手机号码 --> <!-- 手机号码 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center"> <view
class="section wd-flex wd-flex-row wd-justify-between wd-items-center"
>
<text class="wd-font-800">手机号码</text> <text class="wd-font-800">手机号码</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> <view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<input <input
@ -64,17 +81,19 @@
</view> </view>
</view> </view>
<!-- 所属部门 --> <!-- 所属部门 -->
<view <!-- <view
class="section wd-flex wd-flex-row wd-justify-between wd-items-center" class="section wd-flex wd-flex-row wd-justify-between wd-items-center"
@click="showPicker('dept', 'deptId')" @click="showPicker('dept', 'deptId')"
> >
<text class="wd-font-800">部门</text> <text class="wd-font-800">部门</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> <view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<text v-if="form.deptId">{{ $dict.echoDicValue(dictMap.dept, form.deptId) }}</text> <text v-if="form.deptId">
{{ $dict.echoDicValue(dictMap.dept, form.deptId) }}
</text>
<text class="placeholder" v-else>请选择部门</text> <text class="placeholder" v-else>请选择部门</text>
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon> <u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view> </view>
</view> </view> -->
<view class="button-box"> <view class="button-box">
<button class="button audit" v-if="form.audit == 1"> <button class="button audit" v-if="form.audit == 1">
{{ $dict.echoDicValue(dictMap.user_audit_type, form.audit) }} {{ $dict.echoDicValue(dictMap.user_audit_type, form.audit) }}
@ -143,7 +162,9 @@ export default {
}) })
}, },
async getDict() { async getDict() {
const dict = await getDictBatchByType({ type: ['system_user_sex', 'user_audit_type'].join(',') }) const dict = await getDictBatchByType({
type: ['system_user_sex', 'user_audit_type'].join(',')
})
const dept = await getDeptTree() const dept = await getDeptTree()
this.dictMap = { this.dictMap = {
@ -183,11 +204,11 @@ export default {
{ {
key: 'mobile', key: 'mobile',
message: '手机号码不能为空' message: '手机号码不能为空'
},
{
key: 'deptId',
message: '请选择所属部门'
} }
// {
// key: 'deptId',
// message: ''
// }
] ]
for (const field of requiredFields) { for (const field of requiredFields) {
@ -251,7 +272,6 @@ export default {
.section { .section {
border-radius: 16rpx; border-radius: 16rpx;
background: #fff; background: #fff;
box-shadow: 0 0 4px 2px $cs-shadow-color;
margin-bottom: 32rpx; margin-bottom: 32rpx;
padding: 24px; padding: 24px;
height: 140rpx; height: 140rpx;
@ -270,7 +290,6 @@ export default {
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
box-sizing: border-box; box-sizing: border-box;
box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.1);
} }
.submit { .submit {
color: #fff; color: #fff;

70
sub/task/enforce.vue

@ -11,17 +11,35 @@
</view> </view>
<text style="color: #78829d">最多500字符</text> <text style="color: #78829d">最多500字符</text>
</view> </view>
<uni-easyinput <view
type="textarea" class=""
v-model="form.advice" style="
placeholder="请输入..." background-color: #f9f9f9;
:maxlength="500" border: 1px solid #f1f1f4;
:autoHeight="true" border-radius: 24rpx;
:styles="{ padding: 16rpx;
backgroundColor: '#F9F9F9', "
borderColor: '#F1F1F4' >
}" <uni-easyinput
></uni-easyinput> type="textarea"
v-model="form.advice"
placeholder="请输入..."
placeholderStyle="font-size:28rpx"
:maxlength="500"
:input-border="false"
:adjust-position="true"
:autoHeight="true"
cursorSpacing="32"
:styles="{
backgroundColor: 'transparent',
borderColor: 'none'
}"
></uni-easyinput>
<view style="color: #78829d; text-align: right">
{{ form.advice.length }}/500
</view>
</view>
<view <view
class="wd-flex" class="wd-flex"
style="justify-content: space-between; align-items: center" style="justify-content: space-between; align-items: center"
@ -103,9 +121,9 @@ export default {
data() { data() {
return { return {
form: { form: {
state: undefined, state: '',
inspectionsId: undefined, inspectionsId: '',
advice: undefined, advice: '',
photo: [], photo: [],
date: '' date: ''
}, },
@ -215,27 +233,29 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.view-container { .view-container {
padding: 12px; padding: 24rpx;
height: 100vh; height: 100vh;
position: relative; position: relative;
overflow-y: scroll;
padding-bottom: 13vh;
.box { .box {
padding: 12px; padding: 24rpx;
border: 1px solid #f9f9f9; border: 2rpx solid #f9f9f9;
border-radius: 12px; border-radius: 24rpx;
background-color: #fff; background-color: #fff;
margin-bottom: 12px; margin-bottom: 24rpx;
} }
.operation { .operation {
padding: 12px; padding: 24rpx;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
gap: 12px; gap: 12px;
.btn { .btn {
flex: 1; flex: 1;
border-radius: 8px; border-radius: 16rpx;
display: flex; display: flex;
padding: 12px 0; padding: 24rpx 0;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
@ -253,7 +273,7 @@ export default {
min-height: 400rpx; min-height: 400rpx;
} }
::v-deep .u-upload__button { ::v-deep .u-upload__button {
border-radius: 8px !important; border-radius: 16rpx !important;
border: 1px solid #f1f1f4; border: 1px solid #f1f1f4;
background-color: #f9f9f9 !important; background-color: #f9f9f9 !important;
} }
@ -262,10 +282,10 @@ export default {
.u-upload__wrap__preview { .u-upload__wrap__preview {
width: 192rpx; width: 192rpx;
height: 192rpx; height: 192rpx;
border-radius: 8px !important; border-radius: 16rpx !important;
overflow: visible !important; overflow: visible !important;
.u-upload__wrap__preview__image { .u-upload__wrap__preview__image {
border-radius: 8px !important; border-radius: 16rpx !important;
} }
.u-upload__deletable { .u-upload__deletable {
border-radius: 100% !important; border-radius: 100% !important;

45
sub/task/locate.vue

@ -155,7 +155,7 @@ export default {
enterpriseGps: '', enterpriseGps: '',
location: {}, location: {},
distance: 10000, distance: 10000,
radius: 100, // radius: 1000, //
showTip: false, showTip: false,
list: [], list: [],
loading: false, loading: false,
@ -170,7 +170,7 @@ export default {
time: 0 time: 0
} }
}, },
onLoad(res) { async onLoad(res) {
if (res.scene) { if (res.scene) {
const data = decodeURIComponent(res.scene) const data = decodeURIComponent(res.scene)
const obj = {} const obj = {}
@ -190,7 +190,7 @@ export default {
imageUrl: imageUrl:
'http://82.156.141.150:9001/api/v1/download-shared-object/aHR0cDovL2xvY2FsaG9zdDo5MDAwL2h1YW5iYW8vbWluaWFwcC9pbnZhdGUucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUQxODY1RVA2NEczMEdEUUhDVTglMkYyMDI1MDIxOCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMThUMDcyMDI0WiZYLUFtei1FeHBpcmVzPTQzMTk5JlgtQW16LVNlY3VyaXR5LVRva2VuPWV5SmhiR2NpT2lKSVV6VXhNaUlzSW5SNWNDSTZJa3BYVkNKOS5leUpoWTJObGMzTkxaWGtpT2lKQlJERTROalZGVURZMFJ6TXdSMFJSU0VOVk9DSXNJbVY0Y0NJNk1UY3pPVGt3TmpJME55d2ljR0Z5Wlc1MElqb2lZV1J0YVc0aWZRLmp6djBhdEY5QVBYXzVjYWg4c18yeXhVV3oxek9BekFzSVdzemVrUmZwcXlHd0RPWkptazlUSGJRUnBDdVNmLVMyU0otWTI1cldUd2hpNUlrY0xBSThRJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCZ2ZXJzaW9uSWQ9bnVsbCZYLUFtei1TaWduYXR1cmU9MjcxZTkzOTE1MDkwYzUzYmRjYTg0MjQ1MTJhYjk3ZWQxZWMyN2QzM2MwM2U3NGUwYmRhNTBmYjQyNWI0N2MyOQ' 'http://82.156.141.150:9001/api/v1/download-shared-object/aHR0cDovL2xvY2FsaG9zdDo5MDAwL2h1YW5iYW8vbWluaWFwcC9pbnZhdGUucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUQxODY1RVA2NEczMEdEUUhDVTglMkYyMDI1MDIxOCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMThUMDcyMDI0WiZYLUFtei1FeHBpcmVzPTQzMTk5JlgtQW16LVNlY3VyaXR5LVRva2VuPWV5SmhiR2NpT2lKSVV6VXhNaUlzSW5SNWNDSTZJa3BYVkNKOS5leUpoWTJObGMzTkxaWGtpT2lKQlJERTROalZGVURZMFJ6TXdSMFJSU0VOVk9DSXNJbVY0Y0NJNk1UY3pPVGt3TmpJME55d2ljR0Z5Wlc1MElqb2lZV1J0YVc0aWZRLmp6djBhdEY5QVBYXzVjYWg4c18yeXhVV3oxek9BekFzSVdzemVrUmZwcXlHd0RPWkptazlUSGJRUnBDdVNmLVMyU0otWTI1cldUd2hpNUlrY0xBSThRJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCZ2ZXJzaW9uSWQ9bnVsbCZYLUFtei1TaWduYXR1cmU9MjcxZTkzOTE1MDkwYzUzYmRjYTg0MjQ1MTJhYjk3ZWQxZWMyN2QzM2MwM2U3NGUwYmRhNTBmYjQyNWI0N2MyOQ'
} }
this.init() await this.init()
}, },
onShareAppMessage() { onShareAppMessage() {
return this.share return this.share
@ -257,7 +257,6 @@ export default {
} else { } else {
this.isLocate = false this.isLocate = false
} }
console.log(this.isLocate, this.isLeadLocate)
this.list = res.data this.list = res.data
}, },
useAuth() { useAuth() {
@ -295,12 +294,11 @@ export default {
uni.getLocation({ uni.getLocation({
type: 'gcj02', type: 'gcj02',
success: res => { success: res => {
console.log('location', res) console.log('location', res.latitude, res.longitude)
that.location = { that.location = {
latitude: res.latitude, latitude: res.latitude,
longitude: res.longitude longitude: res.longitude
} }
that.getDistance() that.getDistance()
}, },
fail: err => { fail: err => {
@ -322,17 +320,30 @@ export default {
} }
}) })
}, },
getDistance() { async getDistance() {
const that = this if (this.enterpriseGps) {
this.$map.calculateDistance({ uni.showLoading({
mode: 'straight', title: '正在计算位置...'
form: this.location, })
to: this.enterpriseGps, const that = this
success: res => { this.$map.calculateDistance({
that.distance = res.result.elements[0].distance mode: 'straight',
console.log('distance', that.distance) form: this.location,
} to: this.enterpriseGps,
}) success: res => {
that.distance = res.result.elements[0].distance
console.log('distance', that.distance)
uni.hideLoading()
},
fail: err => {
console.log('获取定位失败', err)
uni.hideLoading()
}
})
} else {
await this.init()
this.getDistance()
}
}, },
refresh() { refresh() {
this.getDistance() this.getDistance()

2
uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue

@ -535,7 +535,7 @@ export default {
}, },
_Focus(event) { _Focus(event) {
this.focusShow = true // this.focusShow = true
this.$emit('focus', event) this.$emit('focus', event)
}, },

62
utils/permission.js

@ -6,23 +6,23 @@ import store from '@/store'
* @returns {Boolean} * @returns {Boolean}
*/ */
export function checkPermi(value) { export function checkPermi(value) {
if (value && value instanceof Array && value.length > 0) { if (value && value instanceof Array && value.length > 0) {
const permissions = store.getters && store.getters.permissions const permissions = store.getters && store.getters.permissions
const permissionDatas = value const permissionDatas = value
const all_permission = "*:*:*" const all_permission = "*:*:*"
const hasPermission = permissions.some(permission => { const hasPermission = permissions.some(permission => {
return all_permission === permission || permissionDatas.includes(permission) return all_permission === permission || permissionDatas.includes(permission)
}) })
if (!hasPermission) { if (!hasPermission) {
return false return false
} }
return true return true
} else { } else {
console.error(`need roles! Like checkPermi="['system:user:add','system:user:edit']"`) console.error(`need roles! Like checkPermi="['system:user:add','system:user:edit']"`)
return false return false
} }
} }
/** /**
@ -31,21 +31,21 @@ export function checkPermi(value) {
* @returns {Boolean} * @returns {Boolean}
*/ */
export function checkRole(value) { export function checkRole(value) {
if (value && value instanceof Array && value.length > 0) { if (value && value instanceof Array && value.length > 0) {
const roles = store.getters && store.getters.roles const roles = store.getters && store.getters.roles
const permissionRoles = value console.log(roles);
const super_admin = "admin" const permissionRoles = value
const super_admin = "admin"
const hasRole = roles.some(role => {
return super_admin === role || permissionRoles.includes(role)
})
const hasRole = roles.some(role => { if (!hasRole) {
return super_admin === role || permissionRoles.includes(role) return false
}) }
return true
if (!hasRole) { } else {
return false console.error(`need roles! Like checkRole="['admin','editor']"`)
} return false
return true }
} else {
console.error(`need roles! Like checkRole="['admin','editor']"`)
return false
}
} }

30
utils/request.js

@ -12,7 +12,7 @@ import {
let timeout = 10000 let timeout = 10000
const baseUrl = config.baseUrl + config.baseApi; const baseUrl = config.baseUrl + config.baseApi;
let timer = null
const request = config => { const request = config => {
// 是否需要设置 token // 是否需要设置 token
const isToken = (config.headers || {}).isToken === false const isToken = (config.headers || {}).isToken === false
@ -47,20 +47,20 @@ const request = config => {
const code = res.data.code || 200 const code = res.data.code || 200
const msg = errorCode[code] || res.data.msg || errorCode['default'] const msg = errorCode[code] || res.data.msg || errorCode['default']
if (code === 401) { if (code === 401) {
// showConfirm('登录状态已过期,您可以继续留在该页面,或者重新登录?').then(res => { const curRoute = getCurrentPages()
// if (res.confirm) { if (curRoute[0].$page.fullPath == '/pages/login') {
// store.dispatch('LogOut').then(res => { return
// uni.reLaunch({ } else {
// url: '/pages/login' timer && clearTimeout(timer)
// }) timer = setTimeout(() => {
// }) store.dispatch('LogOut').then(res => {
// } uni.reLaunch({
// }) url: `/pages/login`
store.dispatch('LogOut').then(res => { })
uni.reLaunch({ })
url: '/pages/login' }, 500)
}) }
})
reject('无效的会话,或者会话已过期,请重新登录。') reject('无效的会话,或者会话已过期,请重新登录。')
} else if (code === 500) { } else if (code === 500) {
toast(msg) toast(msg)

24
utils/ruoyi.js

@ -92,16 +92,22 @@ export function viewPosition({
}) })
} }
/** /**
* 打开地图获取位置 * 加载
* @param {number} lat 经度
* @param {number} lng 纬度
* @param {string} name 地址名称
*/ */
export function choosePosition({ export function loading(title = '加载中') {
lat, uni.showLoading({
lng, mask: true,
name = '' title
}) { })
function close() {
uni.hideLoading()
}
return {
close
}
} }
Loading…
Cancel
Save