Browse Source

样式修改

master
parent
commit
df53ea3259
  1. 34
      api/jobinfo/index.js
  2. 4
      config.js
  3. 46
      pages/enterprise.vue
  4. 9
      pages/index.vue
  5. 156
      pages/owner.vue
  6. 1
      static/scss/global.scss
  7. 2
      sub/invite/index.vue
  8. 24
      sub/owner/edit.vue
  9. 103
      sub/owner/jobInfo.vue
  10. 0
      sub/owner/notice-detail.vue
  11. 10
      sub/task/detail.vue
  12. 7
      sub/task/locate.vue
  13. 2
      sub/task/record.vue
  14. 2
      uni_modules/s-components/s-tabber/index.vue
  15. 4
      uni_modules/uview-ui/components/u-modal/props.js
  16. 35
      uni_modules/uview-ui/components/u-modal/u-modal.vue
  17. 1
      wxcomponents/vant/dropdown-item/index.wxss
  18. 1
      wxcomponents/vant/dropdown-menu/index.wxss
  19. 16
      wxcomponents/vant/search/index.js
  20. 54
      wxcomponents/vant/search/index.wxss

34
api/jobinfo/index.js

@ -5,33 +5,53 @@ import request from '@/utils/request'
export const JobInfoApi = { export const JobInfoApi = {
// 查询工作汇报分页 // 查询工作汇报分页
getJobInfoPage: (params) => { getJobInfoPage: (params) => {
return request({ url: `/system/job-info/page`, params ,method: 'get'}) return request({
url: `/system/job-info/page`,
params,
method: 'get'
})
}, },
// 查询工作汇报详情 // 查询工作汇报详情
getJobInfo: (id) => { getJobInfo: (id) => {
return request({ url: `/system/job-info/get?id=` + id, method: 'get' }) return request({
url: `/system/job-info/get?id=` + id,
method: 'get'
})
}, },
// 模板信息 // 模板信息
jobDetail: (id) => { jobDetail: (id) => {
return request({ url: `/system/job-info/jobDetail?id=` + id,method: 'get' }) return request({
url: `/system/job-info/jobDetail?id=` + id,
method: 'get'
})
}, },
// 新增工作汇报 // 新增工作汇报
createJobInfo: (data) => { createJobInfo: (data) => {
return request({ url: `/system/job-info/create`, data, method: 'post' }) return request({
url: `/system/job-info/create`,
data,
method: 'post'
})
}, },
// 修改工作汇报 // 修改工作汇报
updateJobInfo: (data) => { updateJobInfo: (data) => {
return request({ url: `/system/job-info/update`, data , method: 'put'}) return request({
url: `/system/job-info/update`,
data,
method: 'put'
})
}, },
// 删除工作汇报 // 删除工作汇报
deleteJobInfo: (id) => { deleteJobInfo: (id) => {
return request({ url: `/system/job-info/delete?id=` + id , method: 'delete' }) return request({
url: `/system/job-info/delete?id=` + id,
method: 'delete'
})
} }

4
config.js

@ -1,8 +1,8 @@
// 应用全局配置 // 应用全局配置
module.exports = { module.exports = {
// baseUrl: 'http://188.188.5.188:48080', // baseUrl: 'http://188.188.5.188:48080',
// baseUrl: 'https://hb.jzce.com', baseUrl: 'https://hb.jzce.com',
baseUrl: 'http://188.188.3.232:48080', // baseUrl: 'http://188.188.3.232:48080',
// baseUrl: 'http://localhost:48080', // baseUrl: 'http://localhost:48080',
baseApi: '/admin-api', baseApi: '/admin-api',
imgUrl: 'https://hb.jzce.com', imgUrl: 'https://hb.jzce.com',

46
pages/enterprise.vue

@ -173,18 +173,29 @@ export default {
methods: { methods: {
getPageHeight() { getPageHeight() {
const query = uni.createSelectorQuery().in(this) const query = uni.createSelectorQuery().in(this)
query // query
.select('#sreach') // .select('#sreach')
.boundingClientRect(data => { // .boundingClientRect(data => {
this.sreachHeight = data.height // this.sreachHeight = data.height
}) // })
.exec() // .exec()
// query
// .select('#page')
// .boundingClientRect(data => {
// this.listHeight = data.height - 35 - 25
// })
// .exec()
query query
.select('#page') .select('#page')
.boundingClientRect(data => { .boundingClientRect()
this.listHeight = data.height - 35 - 25 .select('.drop-box')
.boundingClientRect()
.select('#sreach')
.boundingClientRect()
.exec(data => {
this.listHeight =
data[0].height - data[1].height - data[2].height - 25
}) })
.exec()
}, },
async getList() { async getList() {
uni.showToast({ uni.showToast({
@ -373,7 +384,22 @@ export default {
box-shadow: none; box-shadow: none;
height: fit-content !important; height: fit-content !important;
font-size: 26rpx; font-size: 26rpx;
padding: 12rpx 24rpx; justify-content: space-between;
// padding: 12rpx 24rpx;
}
}
::v-deep .van-search {
padding-bottom: 0;
.van-search__content {
height: 44px;
border-radius: 16rpx;
align-items: center;
.van-icon {
font-size: 40rpx;
}
.van-field__body {
height: 100%;
}
} }
} }
::v-deep .u-list { ::v-deep .u-list {

9
pages/index.vue

@ -203,7 +203,7 @@ export default {
return { return {
dictMap: {}, dictMap: {},
queryParams: { queryParams: {
selectWeek: '3', selectWeek: '',
deptId: '', deptId: '',
type: 1 type: 1
}, },
@ -294,6 +294,10 @@ export default {
} }
this.dropOption.select_week = [ this.dropOption.select_week = [
{
value: '',
text: '全部'
},
...dict.data.select_week.map(i => { ...dict.data.select_week.map(i => {
return { return {
value: i.value, value: i.value,
@ -484,6 +488,9 @@ export default {
height: fit-content !important; height: fit-content !important;
font-size: 26rpx; font-size: 26rpx;
padding: 8rpx 24rpx; padding: 8rpx 24rpx;
.select-title {
color: #17c653;
}
} }
::v-deep .van-dropdown-item { ::v-deep .van-dropdown-item {
margin-bottom: 64rpx; margin-bottom: 64rpx;

156
pages/owner.vue

@ -5,39 +5,39 @@
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"
@tap="edit" @tap="edit"
> >
<view class="wd-flex wd-flex-col" style="gap: 4px"> <view class="wd-flex wd-flex-col" style="gap: 12rpx">
<view <view
class="wd-flex wd-flex-row" class="wd-flex wd-flex-row"
style="gap: 8px; align-items: center" style="gap: 16rpx; align-items: center"
> >
<text class="wd-font-800 wd-text-20">{{ user.realName }}</text> <text
<u-tag class="wd-font-800"
:text="user.dept.name" style="font-size: 40rpx; color: #252f4a"
shape="circle" >
bgColor="#000" {{ user.realName }}
borderColor="#000" </text>
size="mini"
></u-tag> <text class="dept">{{ user.dept.name }}</text>
</view> </view>
<view class="moblie">{{ user.mobile }}</view> <view class="moblie">{{ user.mobile }}</view>
</view> </view>
<view class="wd-flex wd-flex-row" style="gap: 10px"> <view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u-avatar :src="user.avatar"></u-avatar> <u-avatar :src="user.avatar" size="126rpx"></u-avatar>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right" color="#C4CADA"></u-icon>
</view> </view>
</view> </view>
<view <view
class="section wd-flex wd-flex-row wd-justify-between" class="section wd-flex wd-flex-row wd-justify-between"
@click="openSubMessage" @click="openSubMessage"
> >
<view class="wd-flex wd-flex-row" style="gap: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 8rpx">
<u--image <u--image
src="/static/images/owner/message.png" src="/static/images/owner/message.png"
width="40rpx" width="40rpx"
height="40rpx" height="40rpx"
mode="aspectFill" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">消息通知</text> <text style="color: #252f4a">消息通知</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: 8px">
<u-count-to <u-count-to
@ -48,12 +48,18 @@
></u-count-to> ></u-count-to>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> --> </view> -->
<view <view class="row">
class="wd-flex wd-flex-row wd-items-center" <view class="notice-wrapper">
style="gap: 16rpx" <u-count-to
> :startVal="0"
<text></text> :endVal="policyTotal"
<u-icon name="arrow-right"></u-icon> fontSize="14px"
separator=","
color="#fff"
></u-count-to>
</view>
<u-icon name="arrow-right" color="#C4CADA"></u-icon>
</view> </view>
</view> </view>
<!-- <view class="section wd-flex wd-flex-row wd-justify-between"> <!-- <view class="section wd-flex wd-flex-row wd-justify-between">
@ -80,26 +86,17 @@
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: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 8rpx">
<u--image <u--image
src="/static/images/owner/list.png" src="/static/images/owner/list.png"
width="40rpx" width="40rpx"
height="40rpx" height="40rpx"
mode="aspectFill" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">政策法规</text> <text style="color: #252f4a">政策法规</text>
</view> </view>
<view <view class="row">
class="wd-flex wd-flex-row wd-items-center" <u-icon name="arrow-right" color="#C4CADA"></u-icon>
style="gap: 16rpx"
>
<u-count-to
:startVal="0"
:endVal="policyTotal"
fontSize="14px"
separator=","
></u-count-to>
<u-icon name="arrow-right"></u-icon>
</view> </view>
</button> </button>
<button <button
@ -107,61 +104,59 @@
open-type="share" open-type="share"
@click="invite" @click="invite"
> >
<view class="wd-flex wd-flex-row" style="gap: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 8rpx">
<u--image <u--image
src="/static/images/owner/edit.png" src="/static/images/owner/edit.png"
width="40rpx" width="40rpx"
height="40rpx" height="40rpx"
mode="aspectFill" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">企业入驻</text> <text style="color: #252f4a">企业入驻</text>
</view> </view>
<view <view class="row">
class="wd-flex wd-flex-row wd-items-center" <u-icon name="arrow-right" color="#C4CADA"></u-icon>
style="gap: 16rpx"
>
<u-icon name="arrow-right"></u-icon>
</view> </view>
</button> </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: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 8rpx">
<u--image <u--image
src="/static/images/owner/phone.png" src="/static/images/owner/phone.png"
width="40rpx" width="40rpx"
height="40rpx" height="40rpx"
mode="aspectFill" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">内部专线</text> <text style="color: #252f4a">内部专线</text>
</view> </view>
<view <view class="row">
class="wd-flex wd-flex-row wd-items-center" <view style="color: #78829d; line-height: 120%">点击拨打</view>
style="gap: 16rpx" <u-icon name="arrow-right" color="#C4CADA"></u-icon>
>
<text>点击呼叫</text>
<u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
<button <button
class="section wd-flex wd-flex-row wd-justify-between" class="section wd-flex wd-flex-row wd-justify-between"
@click="btnJobInfo" @click="btnJobInfo"
> >
<view class="wd-flex wd-flex-row" style="gap: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 8rpx">
<u--image <u--image
src="/static/images/owner/bill.png" src="/static/images/owner/bill.png"
width="40rpx" width="40rpx"
height="40rpx" height="40rpx"
mode="aspectFill" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">工作汇报</text> <text style="color: #252f4a">工作汇报</text>
</view> </view>
<view <view class="row">
class="wd-flex wd-flex-row wd-items-center" <u-count-to
style="gap: 16rpx" :startVal="0"
> :endVal="jobCount"
<u-icon name="arrow-right"></u-icon> fontSize="28rpx"
separator=","
color="#17C653"
></u-count-to>
<u-icon name="arrow-right" color="#C4CADA"></u-icon>
</view> </view>
</button> </button>
</scroll-view> </scroll-view>
@ -172,12 +167,14 @@
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
import { getUserProfile } from '@/api/system/user.js' import { getUserProfile } from '@/api/system/user.js'
import { PolicyApi, formatPolicyContext } from '@/api/policy/index.js' import { PolicyApi, formatPolicyContext } from '@/api/policy/index.js'
import { JobInfoApi } from '@/api/jobinfo/index.js'
import { NoticApi } from '@/api/common/notic.js'
export default { export default {
data() { data() {
return { return {
user: {}, user: {},
policyTotal: 0, policyTotal: 0,
jobCount: 0,
share: {} share: {}
} }
}, },
@ -202,16 +199,15 @@ export default {
url: '/sub/owner/jobInfo' url: '/sub/owner/jobInfo'
}) })
}, },
init() {
async init() {
getUserProfile().then(res => { getUserProfile().then(res => {
this.user = res.data this.user = res.data
}) })
PolicyApi.getPolicyPage({ const notic = await NoticApi.getListData({ readStatus: false })
pageNum: 1, this.policyTotal = notic.data.total
pageSize: 10 const job = await JobInfoApi.getJobInfoPage()
}).then(res => { this.jobCount = job.data.total
this.policyTotal = res.data.total
})
}, },
openSubMessage() { openSubMessage() {
uni.requestSubscribeMessage({ uni.requestSubscribeMessage({
@ -257,17 +253,43 @@ export default {
} }
} }
.owner-container { .owner-container {
padding: 20rpx; padding: 32rpx;
height: 100%; height: 100%;
.dept {
font-size: 24rpx;
background-color: #17c653;
color: #fff;
padding: 4rpx 16rpx;
border-radius: 240rpx;
}
.section { .section {
border-radius: $cs-border-radius; border-radius: 16rpx;
background: #fff; background: #fff;
margin-bottom: $cs-gap; margin-bottom: 32rpx;
padding: 48rpx; padding: 48rpx;
font-size: 28rpx; font-size: 28rpx;
} }
.moblie { .moblie {
color: $uni-text-color-grey; color: $uni-text-color-grey;
} }
.notice-wrapper {
height: 45rpx;
width: 45rpx;
background-color: #17c653;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.row {
display: flex;
flex-flow: row nowrap;
align-items: center;
gap: 8rpx;
}
}
::v-deep .u-tag--mini {
padding: 4rpx 16rpx;
} }
</style> </style>

1
static/scss/global.scss

@ -30,6 +30,7 @@ button {
.tagList { .tagList {
display: flex; display: flex;
flex-flow: row wrap;
align-items: center; align-items: center;
gap: 16rpx; gap: 16rpx;
.tag { .tag {

2
sub/invite/index.vue

@ -107,7 +107,7 @@ export default {
share: { share: {
title: '企业变更管理', // title: '企业变更管理', //
path: `/sub/invite/index?inviteId=${this.$store.getters.userId}`, path: `/sub/invite/index?inviteId=${this.$store.getters.userId}`,
imageUrl: '' imageUrl: 'https://hb.jzce.com/fx_bggl.png'
} }
} }
}, },

24
sub/owner/edit.vue

@ -17,7 +17,7 @@
<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"
> >
<text class="wd-font-800">我的头像</text> <text style="color: #99a1b7">我的头像</text>
<button <button
class="wd-flex wd-flex-row wd-items-center avatarBtn" class="wd-flex wd-flex-row wd-items-center avatarBtn"
style="gap: 8px" style="gap: 8px"
@ -33,7 +33,7 @@
<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"
> >
<text class="wd-font-800">姓名</text> <text style="color: #99a1b7">姓名</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
class="wd-text-right" class="wd-text-right"
@ -41,8 +41,9 @@
placeholder-class="txt" placeholder-class="txt"
placeholder="请输入姓名" placeholder="请输入姓名"
v-model="form.realName" v-model="form.realName"
placeholder-style="color:#99a1b7"
/> />
<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>
<!-- 用户性别 --> <!-- 用户性别 -->
@ -50,7 +51,7 @@
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('system_user_sex', 'sex')" @click="showPicker('system_user_sex', 'sex')"
> >
<text class="wd-font-800">性别</text> <text style="color: #99a1b7">性别</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"> <text v-if="form.sex">
{{ {{
@ -61,23 +62,27 @@
}} }}
</text> </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 <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"
> >
<text class="wd-font-800">手机号码</text> <text style="color: #99a1b7">手机号码</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: 16rpx"
>
<input <input
class="wd-text-right" class="wd-text-right"
type="number" type="number"
placeholder-class="txt" placeholder-class="txt"
placeholder="请输入手机号码" placeholder="请输入手机号码"
v-model="form.mobile" v-model="form.mobile"
placeholder-style="color:#99a1b7"
/> />
<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>
<!-- 所属部门 --> <!-- 所属部门 -->
@ -160,7 +165,6 @@ export default {
} }
}, },
init() { init() {
console.log('登录信息', this.$store.getters)
if (this.$store.getters.userId) { if (this.$store.getters.userId) {
getUserProfile().then(res => { getUserProfile().then(res => {
this.form = res.data this.form = res.data
@ -313,7 +317,7 @@ export default {
} }
} }
.placeholder { .placeholder {
color: $uni-text-color-grey; color: #99a1b7;
} }
button { button {
padding-left: 0; padding-left: 0;

103
sub/owner/jobInfo.vue

@ -2,21 +2,41 @@
<view class="jobInfo-container"> <view class="jobInfo-container">
<!-- 搜索框区域 --> <!-- 搜索框区域 -->
<view class="search-box"> <view class="search-box">
<van-search :value="abc" placeholder="输入关键字查询" id="sreach" @clear="handleClear" @change="handleSearch" /> <van-search
:value="abc"
placeholder="输入关键字查询"
id="sreach"
@clear="handleClear"
@change="handleSearch"
/>
</view> </view>
<!-- 列表区域 --> <!-- 列表区域 -->
<view class="jobInfo-list"> <view class="jobInfo-list">
<scroll-view class="jobInfo-scroll" scroll-y @scrolltolower="loadNextPage" @refresherrefresh="onRefresh" <scroll-view
refresher-enabled :refresher-triggered="isRefreshing"> class="jobInfo-scroll"
<view class="jobInfo-item" v-for="item in jobInfoList" :key="item.id"> scroll-y
@scrolltolower="loadNextPage"
@refresherrefresh="onRefresh"
refresher-enabled
:refresher-triggered="isRefreshing"
>
<view
class="jobInfo-item"
v-for="item in jobInfoList"
:key="item.id"
>
<view class="item-main" @click="handlejobInfoClick(item)"> <view class="item-main" @click="handlejobInfoClick(item)">
<view class="jobInfo-title">{{ item.title }}</view> <view class="jobInfo-title">{{ item.title }}</view>
<view class="jobInfo-time">汇报日期{{ item.jobDate }}</view> <view class="jobInfo-time">汇报日期{{ item.jobDate }}</view>
</view> </view>
<view class="item-btns"> <view class="item-btns">
<button class="btn-preview" @click.stop="btnView(item)">生成预览</button> <button class="btn-preview" @click.stop="btnView(item)">
<button class="btn-share" @click.stop="btnShare(item)">分享PDF</button> 生成预览
</button>
<button class="btn-share" @click.stop="btnShare(item)">
分享PDF
</button>
</view> </view>
</view> </view>
</scroll-view> </scroll-view>
@ -35,7 +55,6 @@ import { formatDate } from '@/utils/ruoyi.js'
import config from '@/config' import config from '@/config'
import { JobInfoApi } from '@/api/jobinfo/index.js' import { JobInfoApi } from '@/api/jobinfo/index.js'
export default { export default {
data() { data() {
return { return {
@ -47,7 +66,9 @@ export default {
pageSize: 10, // pageSize: 10, //
total: 0, // total: 0, //
loadMoreStatus: 'more', // more- loading- noMore- loadMoreStatus: 'more', // more- loading- noMore-
itemImgUrl: config.imgUrl + '/miniohb/c103c92335bdd30d33ff8a062c219ead0626bf0a1898536bd7590285ca11c9db.png' itemImgUrl:
config.imgUrl +
'/miniohb/c103c92335bdd30d33ff8a062c219ead0626bf0a1898536bd7590285ca11c9db.png'
} }
}, },
// //
@ -56,7 +77,6 @@ export default {
this.getjobInfoList() this.getjobInfoList()
}, },
methods: { methods: {
handleAdd() { handleAdd() {
uni.navigateTo({ uni.navigateTo({
@ -71,27 +91,27 @@ export default {
// PDFURL // PDFURL
url: url, url: url,
success: function (res) { success: function (res) {
const filePath = res.tempFilePath; const filePath = res.tempFilePath
wx.openDocument({ wx.openDocument({
filePath: filePath, filePath: filePath,
fileType: 'pdf', // PDF fileType: 'pdf', // PDF
success: function (res) { success: function (res) {
console.log('打开文档成功'); console.log('打开文档成功')
}, },
fail: function (err) { fail: function (err) {
console.error('打开文档失败', err); console.error('打开文档失败', err)
} }
}); })
}, },
fail: function (err) { fail: function (err) {
console.error('下载文件失败', err); console.error('下载文件失败', err)
} }
}); })
}, },
btnShare(item) { btnShare(item) {
let url = item.pdfUrl let url = item.pdfUrl
let fileName = item.title+".pdf" let fileName = item.title + '.pdf'
// //
wx.downloadFile({ wx.downloadFile({
url: url, // url: url, //
@ -101,19 +121,18 @@ export default {
filePath: res.tempFilePath, // filePath: res.tempFilePath, //
fileName: fileName, // fileName: fileName, //
success() { success() {
console.log('文件分享成功'); console.log('文件分享成功')
}, },
fail(err) { fail(err) {
console.error('文件分享失败', err); console.error('文件分享失败', err)
} }
}); })
} }
}, },
fail(err) { fail(err) {
console.error('文件下载失败', err); console.error('文件下载失败', err)
} }
}); })
}, },
// //
@ -127,7 +146,6 @@ export default {
if (this.jobInfoList.length < this.total) { if (this.jobInfoList.length < this.total) {
this.pageNum++ this.pageNum++
this.getjobInfoList() this.getjobInfoList()
} }
}, },
// //
@ -145,7 +163,10 @@ export default {
// //
const formattedData = res.data.list.map(item => ({ const formattedData = res.data.list.map(item => ({
...item, ...item,
title: item.title.length > 15 ? item.title.slice(0, 15) + '...' : item.title, title:
item.title.length > 15
? item.title.slice(0, 15) + '...'
: item.title,
jobDate: formatDate(item.jobDate, 'YYYY年MM月DD日') jobDate: formatDate(item.jobDate, 'YYYY年MM月DD日')
})) }))
@ -158,7 +179,8 @@ export default {
console.log('列表信息', res) console.log('列表信息', res)
this.total = res.data.total this.total = res.data.total
// //
this.loadMoreStatus = this.jobInfoList.length >= this.total ? 'noMore' : 'more' this.loadMoreStatus =
this.jobInfoList.length >= this.total ? 'noMore' : 'more'
} }
} catch (error) { } catch (error) {
console.error(error) console.error(error)
@ -167,9 +189,9 @@ export default {
title: '获取列表失败', title: '获取列表失败',
icon: 'none' icon: 'none'
}) })
} } finally {
finally { this.loadMoreStatus =
this.loadMoreStatus = this.jobInfoList.length >= this.total ? 'noMore' : 'more' this.jobInfoList.length >= this.total ? 'noMore' : 'more'
// //
// //
setTimeout(() => { setTimeout(() => {
@ -184,7 +206,6 @@ export default {
this.searchValue = e.detail // this.searchValue = e.detail //
this.getjobInfoList() this.getjobInfoList()
} }
}, },
// //
handleClear() { handleClear() {
@ -203,7 +224,7 @@ export default {
</script> </script>
<style lang="scss"> <style lang="scss">
.jobInfo-container { .jobInfo-container {
background: #F9F9F9; background: #f9f9f9;
min-height: 100vh; min-height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -211,7 +232,7 @@ export default {
.search-box { .search-box {
padding: 24rpx; padding: 24rpx;
background: #FFFFFF; background: #ffffff;
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
@ -224,12 +245,14 @@ export default {
margin-top: 120rpx; // + padding margin-top: 120rpx; // + padding
.jobInfo-scroll { .jobInfo-scroll {
height: calc(100vh - 120rpx - 156rpx); // - - height: calc(
100vh - 120rpx - 156rpx
); // - -
box-sizing: border-box; box-sizing: border-box;
} }
.jobInfo-item { .jobInfo-item {
background: #FFFFFF; background: #ffffff;
padding: 24rpx; padding: 24rpx;
margin: 24rpx; margin: 24rpx;
border-radius: 16rpx; border-radius: 16rpx;
@ -267,17 +290,15 @@ export default {
.btn-preview { .btn-preview {
background: rgba(255, 111, 30, 0.1); background: rgba(255, 111, 30, 0.1);
color: #FF6F1E; color: #ff6f1e;
} }
.btn-share { .btn-share {
background: rgba(23, 198, 83, 0.1); background: rgba(23, 198, 83, 0.1);
color: #17C653; color: #17c653;
} }
} }
} }
} }
} }
@ -288,8 +309,8 @@ export default {
right: 24rpx; right: 24rpx;
height: 88rpx; height: 88rpx;
line-height: 88rpx; line-height: 88rpx;
background: #17C653; background: #17c653;
color: #FFFFFF; color: #ffffff;
font-size: 32rpx; font-size: 32rpx;
border-radius: 8rpx; border-radius: 8rpx;
text-align: center; text-align: center;
@ -298,14 +319,14 @@ export default {
.search-box { .search-box {
padding: 24rpx; padding: 24rpx;
background: #FFFFFF; background: #ffffff;
::v-deep .van-search { ::v-deep .van-search {
padding: 0; padding: 0;
background: transparent; background: transparent;
.van-search__content { .van-search__content {
background: #F5F5F5; background: #f5f5f5;
border-radius: 8rpx; border-radius: 8rpx;
} }
} }

0
sub/owner/notice-detail.vue

10
sub/task/detail.vue

@ -169,7 +169,12 @@
已选择({{ isSelect.length }}) 已选择({{ isSelect.length }})
</view> </view>
</view> </view>
<u-modal :show="model.show" closeOnClickOverlay @close="closeModel"> <u-modal
:show="model.show"
closeOnClickOverlay
@close="closeModel"
borderRadius="32rpx"
>
<view class="wd-flex wd-flex-col" style="gap: 20px"> <view class="wd-flex wd-flex-col" style="gap: 20px">
<view class="header"> <view class="header">
<view class="row-1"> <view class="row-1">
@ -714,4 +719,7 @@ export default {
margin: 12px 0; margin: 12px 0;
border-radius: 0px; border-radius: 0px;
} }
::v-deep .u-popup__content {
border-radius: 32rpx;
}
</style> </style>

7
sub/task/locate.vue

@ -187,8 +187,7 @@ export default {
this.share = { this.share = {
title: '', title: '',
path: `/sub/task/locate?inspectionsId=${this.inspectionsId}&enterpriseId=${this.enterpriseId}`, path: `/sub/task/locate?inspectionsId=${this.inspectionsId}&enterpriseId=${this.enterpriseId}`,
imageUrl: imageUrl: 'https://hb.jzce.com/fx_zfqd.png'
'http://82.156.141.150:9001/api/v1/download-shared-object/aHR0cDovL2xvY2FsaG9zdDo5MDAwL2h1YW5iYW8vbWluaWFwcC9pbnZhdGUucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUQxODY1RVA2NEczMEdEUUhDVTglMkYyMDI1MDIxOCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMThUMDcyMDI0WiZYLUFtei1FeHBpcmVzPTQzMTk5JlgtQW16LVNlY3VyaXR5LVRva2VuPWV5SmhiR2NpT2lKSVV6VXhNaUlzSW5SNWNDSTZJa3BYVkNKOS5leUpoWTJObGMzTkxaWGtpT2lKQlJERTROalZGVURZMFJ6TXdSMFJSU0VOVk9DSXNJbVY0Y0NJNk1UY3pPVGt3TmpJME55d2ljR0Z5Wlc1MElqb2lZV1J0YVc0aWZRLmp6djBhdEY5QVBYXzVjYWg4c18yeXhVV3oxek9BekFzSVdzemVrUmZwcXlHd0RPWkptazlUSGJRUnBDdVNmLVMyU0otWTI1cldUd2hpNUlrY0xBSThRJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCZ2ZXJzaW9uSWQ9bnVsbCZYLUFtei1TaWduYXR1cmU9MjcxZTkzOTE1MDkwYzUzYmRjYTg0MjQ1MTJhYjk3ZWQxZWMyN2QzM2MwM2U3NGUwYmRhNTBmYjQyNWI0N2MyOQ'
} }
await this.init() await this.init()
}, },
@ -230,7 +229,9 @@ export default {
scene: `aId=${this.inspectionsId}&bId=${this.enterpriseId}`, scene: `aId=${this.inspectionsId}&bId=${this.enterpriseId}`,
path: 'sub/task/locate', path: 'sub/task/locate',
checkPath: false, checkPath: false,
envVersion: 'develop', // envVersion: 'develop',
// envVersion:'release',
envVersion: 'trial',
isHyaline: true isHyaline: true
}) })
this.miniCode = `data:image/jpeg;base64,${res.data}` this.miniCode = `data:image/jpeg;base64,${res.data}`

2
sub/task/record.vue

@ -364,7 +364,7 @@ export default {
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
transform: translateX(60rpx) translateY(16rpx) rotateZ(45deg); transform: translateX(68rpx) translateY(19rpx) rotateZ(45deg);
transform-origin: 50% 50%; transform-origin: 50% 50%;
} }
} }

2
uni_modules/s-components/s-tabber/index.vue

@ -112,7 +112,7 @@ export default {
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
border-top: 2rpx solid #f1f1f4; border-top: 2rpx solid #f1f1f4;
padding: 24rpx 48rpx 0px 48rpx; padding: 24rpx 32rpx 0px 32rpx;
.tab { .tab {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;

4
uni_modules/uview-ui/components/u-modal/props.js

@ -80,6 +80,10 @@ export default {
type: String, type: String,
default: uni.$u.props.modal.confirmButtonShape default: uni.$u.props.modal.confirmButtonShape
}, },
borderRadius: {
type: String,
default: '6px'
},
// 弹窗动画过度时间 // 弹窗动画过度时间
duration: { duration: {
type: String | Number, type: String | Number,

35
uni_modules/uview-ui/components/u-modal/u-modal.vue

@ -4,7 +4,7 @@
:zoom="zoom" :zoom="zoom"
:show="show" :show="show"
:customStyle="{ :customStyle="{
borderRadius: '6px', borderRadius: borderRadius,
overflow: 'hidden', overflow: 'hidden',
marginTop: `-${$u.addUnit(negativeTop)}` marginTop: `-${$u.addUnit(negativeTop)}`
}" }"
@ -16,13 +16,10 @@
<view <view
class="u-modal" class="u-modal"
:style="{ :style="{
width: $u.addUnit(width), width: $u.addUnit(width)
}" }"
> >
<text <text class="u-modal__title" v-if="title">{{ title }}</text>
class="u-modal__title"
v-if="title"
>{{ title }}</text>
<view <view
class="u-modal__content" class="u-modal__content"
:style="{ :style="{
@ -51,7 +48,11 @@
class="u-modal__button-group__wrapper u-modal__button-group__wrapper--cancel" class="u-modal__button-group__wrapper u-modal__button-group__wrapper--cancel"
:hover-stay-time="150" :hover-stay-time="150"
hover-class="u-modal__button-group__wrapper--hover" hover-class="u-modal__button-group__wrapper--hover"
:class="[showCancelButton && !showConfirmButton && 'u-modal__button-group__wrapper--only-cancel']" :class="[
showCancelButton &&
!showConfirmButton &&
'u-modal__button-group__wrapper--only-cancel'
]"
v-if="showCancelButton" v-if="showCancelButton"
@tap="cancelHandler" @tap="cancelHandler"
> >
@ -60,7 +61,9 @@
:style="{ :style="{
color: cancelColor color: cancelColor
}" }"
>{{ cancelText }}</text> >
{{ cancelText }}
</text>
</view> </view>
<u-line <u-line
direction="column" direction="column"
@ -70,7 +73,11 @@
class="u-modal__button-group__wrapper u-modal__button-group__wrapper--confirm" class="u-modal__button-group__wrapper u-modal__button-group__wrapper--confirm"
:hover-stay-time="150" :hover-stay-time="150"
hover-class="u-modal__button-group__wrapper--hover" hover-class="u-modal__button-group__wrapper--hover"
:class="[!showCancelButton && showConfirmButton && 'u-modal__button-group__wrapper--only-confirm']" :class="[
!showCancelButton &&
showConfirmButton &&
'u-modal__button-group__wrapper--only-confirm'
]"
v-if="showConfirmButton" v-if="showConfirmButton"
@tap="confirmHandler" @tap="confirmHandler"
> >
@ -81,7 +88,9 @@
:style="{ :style="{
color: confirmColor color: confirmColor
}" }"
>{{ confirmText }}</text> >
{{ confirmText }}
</text>
</view> </view>
</view> </view>
</template> </template>
@ -90,7 +99,7 @@
</template> </template>
<script> <script>
import props from './props.js'; import props from './props.js'
/** /**
* Modal 模态框 * Modal 模态框
* @description 弹出模态框常用于消息提示消息确认在当前页面内完成特定的交互操作 * @description 弹出模态框常用于消息提示消息确认在当前页面内完成特定的交互操作
@ -137,7 +146,7 @@
confirmHandler() { confirmHandler() {
// loading // loading
if (this.asyncClose) { if (this.asyncClose) {
this.loading = true; this.loading = true
} }
this.$emit('confirm') this.$emit('confirm')
}, },
@ -160,7 +169,7 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "../../libs/css/components.scss"; @import '../../libs/css/components.scss';
$u-modal-border-radius: 6px; $u-modal-border-radius: 6px;
.u-modal { .u-modal {

1
wxcomponents/vant/dropdown-item/index.wxss

@ -23,6 +23,7 @@
.van-dropdown-item--down { .van-dropdown-item--down {
/* bottom: 48rpx */ /* bottom: 48rpx */
bottom: 0; bottom: 0;
margin-top: 24rpx;
margin-bottom: 48rpx; margin-bottom: 48rpx;
} }

1
wxcomponents/vant/dropdown-menu/index.wxss

@ -63,7 +63,6 @@
} }
.select-title { .select-title {
font-weight: bold;
transition: .2s all; transition: .2s all;
color: #071437; color: #071437;
} }

16
wxcomponents/vant/search/index.js

@ -1,5 +1,9 @@
import { VantComponent } from '../common/component'; import {
import { canIUseModel } from '../common/version'; VantComponent
} from '../common/component';
import {
canIUseModel
} from '../common/version';
VantComponent({ VantComponent({
field: true, field: true,
classes: ['field-class', 'input-class', 'cancel-class'], classes: ['field-class', 'input-class', 'cancel-class'],
@ -61,7 +65,9 @@ VantComponent({
methods: { methods: {
onChange(event) { onChange(event) {
if (canIUseModel()) { if (canIUseModel()) {
this.setData({ value: event.detail }); this.setData({
value: event.detail
});
} }
this.$emit('change', event.detail); this.$emit('change', event.detail);
}, },
@ -72,7 +78,9 @@ VantComponent({
*/ */
setTimeout(() => { setTimeout(() => {
if (canIUseModel()) { if (canIUseModel()) {
this.setData({ value: '' }); this.setData({
value: ''
});
} }
this.$emit('cancel'); this.$emit('cancel');
this.$emit('change', ''); this.$emit('change', '');

54
wxcomponents/vant/search/index.wxss

@ -1 +1,53 @@
@import '../common/index.wxss';.van-search{align-items:center;box-sizing:border-box;display:flex;padding:var(--search-padding,10px 12px)}.van-search__content{background-color:var(--search-background-color,#f7f8fa);border-radius:2px;display:flex;flex:1;padding-left:var(--padding-sm,12px)}.van-search__content--round{border-radius:999px}.van-search__label{color:var(--search-label-color,#323233);font-size:var(--search-label-font-size,14px);line-height:var(--search-input-height,34px);padding:var(--search-label-padding,0 5px)}.van-search__field{flex:1}.van-search__field__left-icon{color:var(--search-left-icon-color,#969799)}.van-search--withaction{padding-right:0}.van-search__action{color:var(--search-action-text-color,#323233);font-size:var(--search-action-font-size,14px);line-height:var(--search-input-height,34px)}.van-search__action--hover{background-color:#f2f3f5}.van-search__action-button{padding:var(--search-action-padding,0 8px)} @import '../common/index.wxss';
.van-search {
align-items: center;
box-sizing: border-box;
display: flex;
padding: var(--search-padding, 10px 12px)
}
.van-search__content {
background-color: var(--search-background-color, #f7f8fa);
border-radius: 2px;
display: flex;
flex: 1;
padding-left: var(--padding-sm, 12px)
}
.van-search__content--round {
border-radius: 999px
}
.van-search__label {
color: var(--search-label-color, #323233);
font-size: var(--search-label-font-size, 14px);
line-height: var(--search-input-height, 34px);
padding: var(--search-label-padding, 0 5px)
}
.van-search__field {
flex: 1
}
.van-search__field__left-icon {
color: var(--search-left-icon-color, #969799)
}
.van-search--withaction {
padding-right: 0
}
.van-search__action {
color: var(--search-action-text-color, #323233);
font-size: var(--search-action-font-size, 14px);
line-height: var(--search-input-height, 34px)
}
.van-search__action--hover {
background-color: #f2f3f5
}
.van-search__action-button {
padding: var(--search-action-padding, 0 8px)
}
Loading…
Cancel
Save