Browse Source

样式修改

master
parent
commit
df53ea3259
  1. 80
      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. 107
      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. 172
      uni_modules/uview-ui/components/u-modal/props.js
  16. 427
      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. 198
      wxcomponents/vant/search/index.js
  20. 54
      wxcomponents/vant/search/index.wxss

80
api/jobinfo/index.js

@ -3,36 +3,56 @@ import request from '@/utils/request'
// 工作汇报 API // 工作汇报 API
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) => {
return request({ url: `/system/job-info/get?id=` + id, method: 'get' }) },
}, // 查询工作汇报详情
getJobInfo: (id) => {
// 模板信息 return request({
jobDetail: (id) => { url: `/system/job-info/get?id=` + id,
return request({ url: `/system/job-info/jobDetail?id=` + id,method: 'get' }) method: 'get'
}, })
},
// 新增工作汇报
createJobInfo: (data) => { // 模板信息
return request({ url: `/system/job-info/create`, data, method: 'post' }) jobDetail: (id) => {
}, return request({
url: `/system/job-info/jobDetail?id=` + id,
// 修改工作汇报 method: 'get'
updateJobInfo: (data) => { })
return request({ url: `/system/job-info/update`, data , method: 'put'}) },
},
// 新增工作汇报
// 删除工作汇报 createJobInfo: (data) => {
deleteJobInfo: (id) => { return request({
return request({ url: `/system/job-info/delete?id=` + id , method: 'delete' }) url: `/system/job-info/create`,
} data,
method: 'post'
})
},
// 修改工作汇报
updateJobInfo: (data) => {
return request({
url: `/system/job-info/update`,
data,
method: 'put'
})
},
// 删除工作汇报
deleteJobInfo: (id) => {
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;

107
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 {
@ -46,8 +65,10 @@ export default {
pageNum: 1, // pageNum: 1, //
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,14 +189,14 @@ 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(() => {
this.isRefreshing = false this.isRefreshing = false
}, 300) // }, 300) //
} }
}, },
// //
@ -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;

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

@ -1,89 +1,93 @@
export default { export default {
props: { props: {
// 是否展示modal // 是否展示modal
show: { show: {
type: Boolean, type: Boolean,
default: uni.$u.props.modal.show default: uni.$u.props.modal.show
}, },
// 标题 // 标题
title: { title: {
type: [String], type: [String],
default: uni.$u.props.modal.title default: uni.$u.props.modal.title
}, },
// 弹窗内容 // 弹窗内容
content: { content: {
type: String, type: String,
default: uni.$u.props.modal.content default: uni.$u.props.modal.content
}, },
// 确认文案 // 确认文案
confirmText: { confirmText: {
type: String, type: String,
default: uni.$u.props.modal.confirmText default: uni.$u.props.modal.confirmText
}, },
// 取消文案 // 取消文案
cancelText: { cancelText: {
type: String, type: String,
default: uni.$u.props.modal.cancelText default: uni.$u.props.modal.cancelText
}, },
// 是否显示确认按钮 // 是否显示确认按钮
showConfirmButton: { showConfirmButton: {
type: Boolean, type: Boolean,
default: uni.$u.props.modal.showConfirmButton default: uni.$u.props.modal.showConfirmButton
}, },
// 是否显示取消按钮 // 是否显示取消按钮
showCancelButton: { showCancelButton: {
type: Boolean, type: Boolean,
default: uni.$u.props.modal.showCancelButton default: uni.$u.props.modal.showCancelButton
}, },
// 确认按钮颜色 // 确认按钮颜色
confirmColor: { confirmColor: {
type: String, type: String,
default: uni.$u.props.modal.confirmColor default: uni.$u.props.modal.confirmColor
}, },
// 取消文字颜色 // 取消文字颜色
cancelColor: { cancelColor: {
type: String, type: String,
default: uni.$u.props.modal.cancelColor default: uni.$u.props.modal.cancelColor
}, },
// 对调确认和取消的位置 // 对调确认和取消的位置
buttonReverse: { buttonReverse: {
type: Boolean, type: Boolean,
default: uni.$u.props.modal.buttonReverse default: uni.$u.props.modal.buttonReverse
}, },
// 是否开启缩放效果 // 是否开启缩放效果
zoom: { zoom: {
type: Boolean, type: Boolean,
default: uni.$u.props.modal.zoom default: uni.$u.props.modal.zoom
}, },
// 是否异步关闭,只对确定按钮有效 // 是否异步关闭,只对确定按钮有效
asyncClose: { asyncClose: {
type: Boolean, type: Boolean,
default: uni.$u.props.modal.asyncClose default: uni.$u.props.modal.asyncClose
}, },
// 是否允许点击遮罩关闭modal // 是否允许点击遮罩关闭modal
closeOnClickOverlay: { closeOnClickOverlay: {
type: Boolean, type: Boolean,
default: uni.$u.props.modal.closeOnClickOverlay default: uni.$u.props.modal.closeOnClickOverlay
}, },
// 给一个负的margin-top,往上偏移,避免和键盘重合的情况 // 给一个负的margin-top,往上偏移,避免和键盘重合的情况
negativeTop: { negativeTop: {
type: [String, Number], type: [String, Number],
default: uni.$u.props.modal.negativeTop default: uni.$u.props.modal.negativeTop
}, },
// modal宽度,不支持百分比,可以数值,px,rpx单位 // modal宽度,不支持百分比,可以数值,px,rpx单位
width: { width: {
type: [String, Number], type: [String, Number],
default: uni.$u.props.modal.width default: uni.$u.props.modal.width
}, },
// 确认按钮的样式,circle-圆形,square-方形,如设置,将不会显示取消按钮 // 确认按钮的样式,circle-圆形,square-方形,如设置,将不会显示取消按钮
confirmButtonShape: { confirmButtonShape: {
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,
default: uni.$u.props.modal.duration default: uni.$u.props.modal.duration
} }
} }
} }

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

@ -1,228 +1,237 @@
<template> <template>
<u-popup <u-popup
mode="center" mode="center"
: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)}`
}" }"
:closeOnClickOverlay="closeOnClickOverlay" :closeOnClickOverlay="closeOnClickOverlay"
:safeAreaInsetBottom="false" :safeAreaInsetBottom="false"
:duration="duration" :duration="duration"
@click="clickHandler" @click="clickHandler"
> >
<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" <view
v-if="title" class="u-modal__content"
>{{ title }}</text> :style="{
<view paddingTop: `${title ? 12 : 25}px`
class="u-modal__content" }"
:style="{ >
paddingTop: `${title ? 12 : 25}px` <slot>
}" <text class="u-modal__content__text">{{ content }}</text>
> </slot>
<slot> </view>
<text class="u-modal__content__text">{{ content }}</text> <view
</slot> class="u-modal__button-group--confirm-button"
</view> v-if="$slots.confirmButton"
<view >
class="u-modal__button-group--confirm-button" <slot name="confirmButton"></slot>
v-if="$slots.confirmButton" </view>
> <template v-else>
<slot name="confirmButton"></slot> <u-line></u-line>
</view> <view
<template v-else> class="u-modal__button-group"
<u-line></u-line> :style="{
<view flexDirection: buttonReverse ? 'row-reverse' : 'row'
class="u-modal__button-group" }"
:style="{ >
flexDirection: buttonReverse ? 'row-reverse' : 'row' <view
}" class="u-modal__button-group__wrapper u-modal__button-group__wrapper--cancel"
> :hover-stay-time="150"
<view hover-class="u-modal__button-group__wrapper--hover"
class="u-modal__button-group__wrapper u-modal__button-group__wrapper--cancel" :class="[
:hover-stay-time="150" showCancelButton &&
hover-class="u-modal__button-group__wrapper--hover" !showConfirmButton &&
:class="[showCancelButton && !showConfirmButton && 'u-modal__button-group__wrapper--only-cancel']" 'u-modal__button-group__wrapper--only-cancel'
v-if="showCancelButton" ]"
@tap="cancelHandler" v-if="showCancelButton"
> @tap="cancelHandler"
<text >
class="u-modal__button-group__wrapper__text" <text
:style="{ class="u-modal__button-group__wrapper__text"
color: cancelColor :style="{
}" color: cancelColor
>{{ cancelText }}</text> }"
</view> >
<u-line {{ cancelText }}
direction="column" </text>
v-if="showConfirmButton && showCancelButton" </view>
></u-line> <u-line
<view direction="column"
class="u-modal__button-group__wrapper u-modal__button-group__wrapper--confirm" v-if="showConfirmButton && showCancelButton"
:hover-stay-time="150" ></u-line>
hover-class="u-modal__button-group__wrapper--hover" <view
:class="[!showCancelButton && showConfirmButton && 'u-modal__button-group__wrapper--only-confirm']" class="u-modal__button-group__wrapper u-modal__button-group__wrapper--confirm"
v-if="showConfirmButton" :hover-stay-time="150"
@tap="confirmHandler" hover-class="u-modal__button-group__wrapper--hover"
> :class="[
<u-loading-icon v-if="loading"></u-loading-icon> !showCancelButton &&
<text showConfirmButton &&
v-else 'u-modal__button-group__wrapper--only-confirm'
class="u-modal__button-group__wrapper__text" ]"
:style="{ v-if="showConfirmButton"
color: confirmColor @tap="confirmHandler"
}" >
>{{ confirmText }}</text> <u-loading-icon v-if="loading"></u-loading-icon>
</view> <text
</view> v-else
</template> class="u-modal__button-group__wrapper__text"
</view> :style="{
</u-popup> color: confirmColor
}"
>
{{ confirmText }}
</text>
</view>
</view>
</template>
</view>
</u-popup>
</template> </template>
<script> <script>
import props from './props.js'; import props from './props.js'
/** /**
* Modal 模态框 * Modal 模态框
* @description 弹出模态框常用于消息提示消息确认在当前页面内完成特定的交互操作 * @description 弹出模态框常用于消息提示消息确认在当前页面内完成特定的交互操作
* @tutorial https://www.uviewui.com/components/modul.html * @tutorial https://www.uviewui.com/components/modul.html
* @property {Boolean} show 是否显示模态框请赋值给show 默认 false * @property {Boolean} show 是否显示模态框请赋值给show 默认 false
* @property {String} title 标题内容 * @property {String} title 标题内容
* @property {String} content 模态框内容如传入slot内容则此参数无效 * @property {String} content 模态框内容如传入slot内容则此参数无效
* @property {String} confirmText 确认按钮的文字 默认 '确认' * @property {String} confirmText 确认按钮的文字 默认 '确认'
* @property {String} cancelText 取消按钮的文字 默认 '取消' * @property {String} cancelText 取消按钮的文字 默认 '取消'
* @property {Boolean} showConfirmButton 是否显示确认按钮 默认 true * @property {Boolean} showConfirmButton 是否显示确认按钮 默认 true
* @property {Boolean} showCancelButton 是否显示取消按钮 默认 false * @property {Boolean} showCancelButton 是否显示取消按钮 默认 false
* @property {String} confirmColor 确认按钮的颜色 默认 '#2979ff' * @property {String} confirmColor 确认按钮的颜色 默认 '#2979ff'
* @property {String} cancelColor 取消按钮的颜色 默认 '#606266' * @property {String} cancelColor 取消按钮的颜色 默认 '#606266'
* @property {Number} duration 弹窗动画过度时间 默认 400 * @property {Number} duration 弹窗动画过度时间 默认 400
* @property {Boolean} buttonReverse 对调确认和取消的位置 默认 false * @property {Boolean} buttonReverse 对调确认和取消的位置 默认 false
* @property {Boolean} zoom 是否开启缩放模式 默认 true * @property {Boolean} zoom 是否开启缩放模式 默认 true
* @property {Boolean} asyncClose 是否异步关闭只对确定按钮有效见上方说明 默认 false * @property {Boolean} asyncClose 是否异步关闭只对确定按钮有效见上方说明 默认 false
* @property {Boolean} closeOnClickOverlay 是否允许点击遮罩关闭Modal 默认 false * @property {Boolean} closeOnClickOverlay 是否允许点击遮罩关闭Modal 默认 false
* @property {String | Number} negativeTop 往上偏移的值给一个负的margin-top往上偏移避免和键盘重合的情况单位任意数值则默认为px单位 默认 0 * @property {String | Number} negativeTop 往上偏移的值给一个负的margin-top往上偏移避免和键盘重合的情况单位任意数值则默认为px单位 默认 0
* @property {String | Number} width modal宽度不支持百分比可以数值pxrpx单位 默认 '650rpx' * @property {String | Number} width modal宽度不支持百分比可以数值pxrpx单位 默认 '650rpx'
* @property {String} confirmButtonShape 确认按钮的样式,如设置将不会显示取消按钮 * @property {String} confirmButtonShape 确认按钮的样式,如设置将不会显示取消按钮
* @event {Function} confirm 点击确认按钮时触发 * @event {Function} confirm 点击确认按钮时触发
* @event {Function} cancel 点击取消按钮时触发 * @event {Function} cancel 点击取消按钮时触发
* @event {Function} close 点击遮罩关闭出发closeOnClickOverlay为true有效 * @event {Function} close 点击遮罩关闭出发closeOnClickOverlay为true有效
* @example <u-modal :show="true" title="title" content="content"></u-modal> * @example <u-modal :show="true" title="title" content="content"></u-modal>
*/ */
export default { export default {
name: 'u-modal', name: 'u-modal',
mixins: [uni.$u.mpMixin, uni.$u.mixin, props], mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
data() { data() {
return { return {
loading: false loading: false
} }
}, },
watch: { watch: {
show(n) { show(n) {
// modal使loading // modal使loading
// modalloading // modalloading
if (n && this.loading) this.loading = false if (n && this.loading) this.loading = false
} }
}, },
methods: { methods: {
// //
confirmHandler() { confirmHandler() {
// loading // loading
if (this.asyncClose) { if (this.asyncClose) {
this.loading = true; this.loading = true
} }
this.$emit('confirm') this.$emit('confirm')
}, },
// //
cancelHandler() { cancelHandler() {
this.$emit('cancel') this.$emit('cancel')
}, },
// //
// modal // modal
// modalpopupflex // modalpopupflex
// popup // popup
// .stop // .stop
clickHandler() { clickHandler() {
if (this.closeOnClickOverlay) { if (this.closeOnClickOverlay) {
this.$emit('close') this.$emit('close')
} }
} }
} }
} }
</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 {
width: 650rpx; width: 650rpx;
border-radius: $u-modal-border-radius; border-radius: $u-modal-border-radius;
overflow: hidden; overflow: hidden;
&__title { &__title {
font-size: 16px; font-size: 16px;
font-weight: bold; font-weight: bold;
color: $u-content-color; color: $u-content-color;
text-align: center; text-align: center;
padding-top: 25px; padding-top: 25px;
} }
&__content { &__content {
padding: 12px 25px 25px 25px; padding: 12px 25px 25px 25px;
@include flex; @include flex;
justify-content: center; justify-content: center;
&__text { &__text {
font-size: 15px; font-size: 15px;
color: $u-content-color; color: $u-content-color;
flex: 1; flex: 1;
} }
} }
&__button-group { &__button-group {
@include flex; @include flex;
&--confirm-button { &--confirm-button {
flex-direction: column; flex-direction: column;
padding: 0px 25px 15px 25px; padding: 0px 25px 15px 25px;
} }
&__wrapper { &__wrapper {
flex: 1; flex: 1;
@include flex; @include flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 48px; height: 48px;
&--confirm, &--confirm,
&--only-cancel { &--only-cancel {
border-bottom-right-radius: $u-modal-border-radius; border-bottom-right-radius: $u-modal-border-radius;
} }
&--cancel, &--cancel,
&--only-confirm { &--only-confirm {
border-bottom-left-radius: $u-modal-border-radius; border-bottom-left-radius: $u-modal-border-radius;
} }
&--hover { &--hover {
background-color: $u-bg-color; background-color: $u-bg-color;
} }
&__text { &__text {
color: $u-content-color; color: $u-content-color;
font-size: 16px; font-size: 16px;
text-align: center; text-align: center;
} }
} }
} }
} }
</style> </style>

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;
} }

198
wxcomponents/vant/search/index.js

@ -1,97 +1,105 @@
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'],
props: { props: {
value: { value: {
type: String, type: String,
value: '', value: '',
}, },
label: String, label: String,
focus: Boolean, focus: Boolean,
error: Boolean, error: Boolean,
disabled: Boolean, disabled: Boolean,
readonly: Boolean, readonly: Boolean,
inputAlign: String, inputAlign: String,
showAction: Boolean, showAction: Boolean,
useActionSlot: Boolean, useActionSlot: Boolean,
useLeftIconSlot: Boolean, useLeftIconSlot: Boolean,
useRightIconSlot: Boolean, useRightIconSlot: Boolean,
leftIcon: { leftIcon: {
type: String, type: String,
value: 'search', value: 'search',
}, },
rightIcon: String, rightIcon: String,
placeholder: String, placeholder: String,
placeholderStyle: String, placeholderStyle: String,
actionText: { actionText: {
type: String, type: String,
value: '取消', value: '取消',
}, },
background: { background: {
type: String, type: String,
value: '#ffffff', value: '#ffffff',
}, },
maxlength: { maxlength: {
type: Number, type: Number,
value: -1, value: -1,
}, },
shape: { shape: {
type: String, type: String,
value: 'square', value: 'square',
}, },
clearable: { clearable: {
type: Boolean, type: Boolean,
value: true, value: true,
}, },
clearTrigger: { clearTrigger: {
type: String, type: String,
value: 'focus', value: 'focus',
}, },
clearIcon: { clearIcon: {
type: String, type: String,
value: 'clear', value: 'clear',
}, },
cursorSpacing: { cursorSpacing: {
type: Number, type: Number,
value: 0, value: 0,
}, },
}, },
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); });
}, }
onCancel() { this.$emit('change', event.detail);
/** },
* 修复修改输入框值时输入框失焦和赋值同时触发赋值失效 onCancel() {
* https://github.com/youzan/vant-weapp/issues/1768 /**
*/ * 修复修改输入框值时输入框失焦和赋值同时触发赋值失效
setTimeout(() => { * https://github.com/youzan/vant-weapp/issues/1768
if (canIUseModel()) { */
this.setData({ value: '' }); setTimeout(() => {
} if (canIUseModel()) {
this.$emit('cancel'); this.setData({
this.$emit('change', ''); value: ''
}, 200); });
}, }
onSearch(event) { this.$emit('cancel');
this.$emit('search', event.detail); this.$emit('change', '');
}, }, 200);
onFocus(event) { },
this.$emit('focus', event.detail); onSearch(event) {
}, this.$emit('search', event.detail);
onBlur(event) { },
this.$emit('blur', event.detail); onFocus(event) {
}, this.$emit('focus', event.detail);
onClear(event) { },
this.$emit('clear', event.detail); onBlur(event) {
}, this.$emit('blur', event.detail);
onClickInput(event) { },
this.$emit('click-input', event.detail); onClear(event) {
}, this.$emit('clear', event.detail);
}, },
onClickInput(event) {
this.$emit('click-input', event.detail);
},
},
}); });

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