|
|
|
@ -1,85 +1,306 @@
|
|
|
|
|
<template> |
|
|
|
|
<cs-page> |
|
|
|
|
<view class="detail-container"> |
|
|
|
|
<view class="detail-container" :style="{ paddingBottom: isSelect.length > 0 ? '70px' : '20px' }"> |
|
|
|
|
<view class="box detail"> |
|
|
|
|
<text class="wd-font-800 wd-text-16" style="margin-bottom: 4px">xxxx</text> |
|
|
|
|
<text class="wd-font-800 wd-text-16" style="margin-bottom: 4px">{{ detail.title }}</text> |
|
|
|
|
<view class="tagList"> |
|
|
|
|
<view v-for="(item, index) in 3" :key="index" class="tag">标签{{ index }}</view> |
|
|
|
|
<view v-for="(tag, index) in detail.tagList" :key="index" class="tag">{{ tag }}</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="wd-flex wd-text-13" style="justify-content: space-between"> |
|
|
|
|
<view class="wd-flex" style="align-items: center; gap: 4px"> |
|
|
|
|
<u-icon name="calendar" color="#17C653" /> |
|
|
|
|
<text class="wd-text-13 wd-ml-4px">2024/12/15~2025/12/15</text> |
|
|
|
|
<text class="wd-text-13 wd-ml-4px"> |
|
|
|
|
{{ $util.formatDate(detail.startDate, 'YYYY/M/D') }} ~ {{ $util.formatDate(detail.endDate, 'YYYY/M/D') }} |
|
|
|
|
</text> |
|
|
|
|
</view> |
|
|
|
|
<view class="wd-flex" style="align-items: center; gap: 4px"> |
|
|
|
|
<u-icon name="account" color="#17C653" /> |
|
|
|
|
<text class="wd-text-13 wd-font-800">姓名</text> |
|
|
|
|
<text class="wd-text-13">部门</text> |
|
|
|
|
</view> |
|
|
|
|
<view |
|
|
|
|
style="font-size: 13px; line-height: 160%; position: relative; transform: 0.2s all" |
|
|
|
|
v-if="detail.description.length < 20" |
|
|
|
|
> |
|
|
|
|
{{ detail.description }} |
|
|
|
|
</view> |
|
|
|
|
<view |
|
|
|
|
v-else |
|
|
|
|
style="font-size: 13px; line-height: 160%; position: relative; transform: 0.2s all" |
|
|
|
|
@tap="isShowAllText = !isShowAllText" |
|
|
|
|
> |
|
|
|
|
{{ isShowAllText ? detail.description : `${detail.description.slice(1, 20)}...` }} |
|
|
|
|
<text style="color: #17c653; padding-left: 4px">{{ isShowAllText ? '收起' : '展开' }}</text> |
|
|
|
|
</view> |
|
|
|
|
<view class="audit"> |
|
|
|
|
<cs-dict-tag :dict="dictMap.task_state" :value="detail.status"></cs-dict-tag> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="" style="font-size: 13px; line-height: 160%"> |
|
|
|
|
任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求任务要求 |
|
|
|
|
<u-sticky> |
|
|
|
|
<view :class="['options-container', OptionsOffset.isTop ? 'isTop' : '']" ref="optionRef" id="options"> |
|
|
|
|
<van-dropdown-menu safe-area-tab-bar active-color="#17C653" style="flex: 1"> |
|
|
|
|
<van-dropdown-item |
|
|
|
|
:value="queryParams.dept" |
|
|
|
|
:options="getDropdownOption('dept')" |
|
|
|
|
@change=" |
|
|
|
|
v => { |
|
|
|
|
querySelect(v, 'dept') |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
/> |
|
|
|
|
<van-dropdown-item |
|
|
|
|
:value="queryParams.Inspections_status" |
|
|
|
|
:options="getDropdownOption('Inspections_status')" |
|
|
|
|
@change=" |
|
|
|
|
v => { |
|
|
|
|
querySelect(v, 'Inspections_status') |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
/> |
|
|
|
|
</van-dropdown-menu> |
|
|
|
|
<view class="wd-font-600"> |
|
|
|
|
(当前 |
|
|
|
|
<text style="color: #17c653">{{ list.length }}</text> |
|
|
|
|
条记录) |
|
|
|
|
</view> |
|
|
|
|
<view class="audit">111</view> |
|
|
|
|
</view> |
|
|
|
|
<scroll-view scroll-y="true" class="list"> |
|
|
|
|
<view class="record" v-for="record in 10" :key="record.id"> |
|
|
|
|
<view :class="{ select: true, isSelect: false }" @tap="select()"> |
|
|
|
|
</u-sticky> |
|
|
|
|
<view class="record" v-for="record in list" :key="record.id"> |
|
|
|
|
<view |
|
|
|
|
:class="{ select: true, isSelect: isSelect.includes(record.id) }" |
|
|
|
|
@tap.self="select(record.id)" |
|
|
|
|
v-if="[3, null].includes(record.inspectionStatus)" |
|
|
|
|
> |
|
|
|
|
<u-icon name="checkbox-mark" size="16px" color="#fff"></u-icon> |
|
|
|
|
</view> |
|
|
|
|
<view class="disable" v-else></view> |
|
|
|
|
<view class="info"> |
|
|
|
|
<view class="name">义县某某环保企业名称</view> |
|
|
|
|
<view style="font-size: 13px">某某区工业产业园5-182号</view> |
|
|
|
|
<view class="name">{{ record.enterpriseAddress }}</view> |
|
|
|
|
<view style="font-size: 1 3px">{{ record.enterpriseAddress }}</view> |
|
|
|
|
<view class="tagList" style="margin-top: 8px"> |
|
|
|
|
<view v-for="(item, index) in 3" :key="index" class="tag">标签{{ index }}</view> |
|
|
|
|
<view v-for="(item, index) in record.tagList" :key="index" class="tag">{{ item }}</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="audit" v-show="record.inspectionStatus"> |
|
|
|
|
<cs-dict-tag :dict="dictMap.Inspections_status" :value="record.inspectionStatus"></cs-dict-tag> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<u-loadmore :status="load" marginTop="12" marginBottom="12" /> |
|
|
|
|
<view class="btn-box" v-if="isSelect.length > 0"> |
|
|
|
|
<view class="confirm-btn" @tap="replay">已选择({{ isSelect.length }})</view> |
|
|
|
|
</view> |
|
|
|
|
<u-modal :show="model.show" closeOnClickOverlay @close="closeModel"> |
|
|
|
|
<view class="wd-flex wd-flex-col" style="gap: 20px"> |
|
|
|
|
<view class="header"> |
|
|
|
|
<view class="row-1"> |
|
|
|
|
已选择 |
|
|
|
|
<text class="num">{{ isSelect.length }}项记录</text> |
|
|
|
|
转移给 |
|
|
|
|
</view> |
|
|
|
|
<view class="row-2">每次只能选择一人</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="staff-list"> |
|
|
|
|
<view |
|
|
|
|
class="staff" |
|
|
|
|
v-for="(staff, index) in 10" |
|
|
|
|
:key="staff.id" |
|
|
|
|
:style="{ '--select-color': index == 0 ? '#17c653' : '#f1f1f4' }" |
|
|
|
|
> |
|
|
|
|
<u-avatar size="40" shape="circle"></u-avatar> |
|
|
|
|
<view class="info"> |
|
|
|
|
<view class="name">姓名</view> |
|
|
|
|
<view class="dept">部门</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="isSelect"> |
|
|
|
|
<u-icon name="checkbox-mark" size="16px" color="#fff"></u-icon> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="audit">111</view> |
|
|
|
|
</view> |
|
|
|
|
<u-loadmore :status="load" marginTop="20" /> |
|
|
|
|
</scroll-view> |
|
|
|
|
</view> |
|
|
|
|
<template #confirmButton> |
|
|
|
|
<view class="wd-flex wd-flex-center"> |
|
|
|
|
<view class="confirm-btn">转移给TA</view> |
|
|
|
|
</view> |
|
|
|
|
</template> |
|
|
|
|
</u-modal> |
|
|
|
|
</view> |
|
|
|
|
</cs-page> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { getEnterPrise } from '@/api/enterprise/index.js' |
|
|
|
|
import { getDictBatchByType } from '@/api/system/dict.js' |
|
|
|
|
import { getDeptTree, getDictBatchByType } from '@/api/system/dict.js' |
|
|
|
|
import { TaskApi } from '@/api/task/index.js' |
|
|
|
|
import { InspectionsApi } from '@/api/inspections/index.js' |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
// 任务详情 |
|
|
|
|
detail: { |
|
|
|
|
id: '' |
|
|
|
|
id: '', |
|
|
|
|
description: '' |
|
|
|
|
}, |
|
|
|
|
list: [], |
|
|
|
|
// 是否展开文本 |
|
|
|
|
isShowAllText: false, |
|
|
|
|
// 已选中 |
|
|
|
|
isSelect: [], |
|
|
|
|
dictMap: {}, |
|
|
|
|
//u-sticky 样式开关 |
|
|
|
|
OptionsOffset: { |
|
|
|
|
top: 0, |
|
|
|
|
isTop: false |
|
|
|
|
}, |
|
|
|
|
// 查询条件 |
|
|
|
|
queryParams: { |
|
|
|
|
dept: '', |
|
|
|
|
Inspections_status: '', |
|
|
|
|
pageSize: 8, |
|
|
|
|
pageNo: 1, |
|
|
|
|
taskId: '' |
|
|
|
|
}, |
|
|
|
|
isSelect: false, |
|
|
|
|
dictMap: {} |
|
|
|
|
load: 'loadmore', |
|
|
|
|
model: { |
|
|
|
|
show: false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onLoad(res) { |
|
|
|
|
if (res.id) { |
|
|
|
|
this.detail.id = res.id |
|
|
|
|
} |
|
|
|
|
// this.getDict() |
|
|
|
|
this.queryParams.taskId = res.id |
|
|
|
|
this.getDict() |
|
|
|
|
this.init() |
|
|
|
|
}, |
|
|
|
|
onPageScroll(e) { |
|
|
|
|
this.OptionsOffset.isTop = e.scrollTop + 10 > this.OptionsOffset.top |
|
|
|
|
}, |
|
|
|
|
onReady() { |
|
|
|
|
this.getOptionOffset() |
|
|
|
|
}, |
|
|
|
|
onReachBottom() { |
|
|
|
|
this.loadMore() |
|
|
|
|
}, |
|
|
|
|
onPullDownRefresh() { |
|
|
|
|
this.reset() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
getOptionOffset() { |
|
|
|
|
const query = uni.createSelectorQuery().in(this) |
|
|
|
|
query |
|
|
|
|
.select('#options') |
|
|
|
|
.boundingClientRect(data => { |
|
|
|
|
this.OptionsOffset.top = data.top |
|
|
|
|
}) |
|
|
|
|
.exec() |
|
|
|
|
}, |
|
|
|
|
/** |
|
|
|
|
* 获取字典 |
|
|
|
|
*/ |
|
|
|
|
async getDict() { |
|
|
|
|
const dict = await getDictBatchByType({ type: ['enterprises_type', 'enterprise_qua'].join(',') }) |
|
|
|
|
const dict = await getDictBatchByType({ type: ['task_state', 'Inspections_status'].join(',') }) |
|
|
|
|
const dept = await getDeptTree() |
|
|
|
|
this.dictMap = { |
|
|
|
|
...dict.data |
|
|
|
|
...dict.data, |
|
|
|
|
dept: dept.data |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
async init() {}, |
|
|
|
|
getDropdownOption(key) { |
|
|
|
|
const keyMap = { |
|
|
|
|
dept: '按部门', |
|
|
|
|
Inspections_status: '按状态' |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!this.dictMap[key]) return [] |
|
|
|
|
|
|
|
|
|
if (key == 'dept') { |
|
|
|
|
return [ |
|
|
|
|
...this.dictMap[key].map(d => { |
|
|
|
|
return { |
|
|
|
|
...d, |
|
|
|
|
value: d.id, |
|
|
|
|
text: d.name |
|
|
|
|
} |
|
|
|
|
}), |
|
|
|
|
{ |
|
|
|
|
value: '', |
|
|
|
|
text: keyMap[key] |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return [ |
|
|
|
|
...this.dictMap[key].map(d => { |
|
|
|
|
return { |
|
|
|
|
value: d.value, |
|
|
|
|
text: d.label |
|
|
|
|
} |
|
|
|
|
}), |
|
|
|
|
{ value: '', text: keyMap[key] } |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
querySelect(v, key) { |
|
|
|
|
this.queryParams[key] = v.detail |
|
|
|
|
// this.queryEnterprise() |
|
|
|
|
}, |
|
|
|
|
async init() { |
|
|
|
|
const res = await TaskApi.getDetail(this.queryParams.taskId) |
|
|
|
|
this.detail = res.data |
|
|
|
|
this.getList() |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
async getList() { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '加载中', |
|
|
|
|
mask: true, |
|
|
|
|
icon: 'loading' |
|
|
|
|
}) |
|
|
|
|
this.load = 'loading' |
|
|
|
|
const { data } = await InspectionsApi.getList(this.queryParams) |
|
|
|
|
this.list.push(...data.list) |
|
|
|
|
this.load = 'loadmore' |
|
|
|
|
if (this.list.length == data.total) { |
|
|
|
|
this.load = 'nomore' |
|
|
|
|
} |
|
|
|
|
uni.hideToast() |
|
|
|
|
}, |
|
|
|
|
goBack() { |
|
|
|
|
uni.switchTab({ |
|
|
|
|
url: '/pages/task' |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
select() { |
|
|
|
|
this.isSelect = !this.isSelect |
|
|
|
|
loadMore() { |
|
|
|
|
if (this.load == 'nomore') { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '没有更多了', |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.queryParams.pageNo++ |
|
|
|
|
this.getList() |
|
|
|
|
}, |
|
|
|
|
select(id) { |
|
|
|
|
if (this.isSelect.includes(id)) { |
|
|
|
|
this.isSelect = this.isSelect.filter(i => i != id) |
|
|
|
|
} else { |
|
|
|
|
this.isSelect.push(id) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
async reset() { |
|
|
|
|
this.queryParams = { |
|
|
|
|
dept: '', |
|
|
|
|
Inspections_status: '', |
|
|
|
|
pageSize: 8, |
|
|
|
|
pageNo: 1, |
|
|
|
|
taskId: '' |
|
|
|
|
} |
|
|
|
|
await this.queryList() |
|
|
|
|
}, |
|
|
|
|
queryList() { |
|
|
|
|
this.queryParams.pageNo = 1 |
|
|
|
|
this.load = 'loadmore' |
|
|
|
|
this.list = [] |
|
|
|
|
this.getList() |
|
|
|
|
}, |
|
|
|
|
replay() { |
|
|
|
|
this.model.show = true |
|
|
|
|
}, |
|
|
|
|
closeModel() { |
|
|
|
|
this.model.show = false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -87,11 +308,10 @@ export default {
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
.detail-container { |
|
|
|
|
padding: 12px; |
|
|
|
|
position: relative; |
|
|
|
|
color: $cs-color-grey; |
|
|
|
|
.box { |
|
|
|
|
margin-bottom: 12px; |
|
|
|
|
margin: 12px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
border-radius: $cs-border-radius; |
|
|
|
|
padding: 16px; |
|
|
|
@ -101,6 +321,14 @@ export default {
|
|
|
|
|
flex-flow: column nowrap; |
|
|
|
|
gap: 12px; |
|
|
|
|
position: relative; |
|
|
|
|
overflow: hidden; |
|
|
|
|
.audit { |
|
|
|
|
position: absolute; |
|
|
|
|
right: 0; |
|
|
|
|
top: 0; |
|
|
|
|
transform: translateX(23px) translateY(16px) rotateZ(45deg); |
|
|
|
|
transform-origin: 50% 50%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.tagList { |
|
|
|
|
display: flex; |
|
|
|
@ -122,18 +350,24 @@ export default {
|
|
|
|
|
line-height: normal; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.list { |
|
|
|
|
height: 65vh; |
|
|
|
|
padding-bottom: 30px; |
|
|
|
|
.record { |
|
|
|
|
background-color: #fff; |
|
|
|
|
display: flex; |
|
|
|
|
padding: var(--Number-12px, 12px); |
|
|
|
|
padding: 12px 16px; |
|
|
|
|
align-items: center; |
|
|
|
|
border-radius: var(--Number-8px, 8px); |
|
|
|
|
border: 1px solid var(--LightMode-Grey-Grey-100, #f9f9f9); |
|
|
|
|
margin-bottom: 12px; |
|
|
|
|
margin: 12px; |
|
|
|
|
margin-top: 0; |
|
|
|
|
position: relative; |
|
|
|
|
overflow: hidden; |
|
|
|
|
.audit { |
|
|
|
|
position: absolute; |
|
|
|
|
right: 0; |
|
|
|
|
top: 0; |
|
|
|
|
transform-origin: 50% 50%; |
|
|
|
|
transform: translateX(30px) translateY(10px) rotateZ(45deg); |
|
|
|
|
} |
|
|
|
|
.select { |
|
|
|
|
width: 24px; |
|
|
|
|
height: 24px; |
|
|
|
@ -145,6 +379,22 @@ export default {
|
|
|
|
|
transition: 0.2s all; |
|
|
|
|
margin-right: 16px; |
|
|
|
|
} |
|
|
|
|
.disable { |
|
|
|
|
width: 24px; |
|
|
|
|
height: 24px; |
|
|
|
|
border: 2px solid #dbdfe9; |
|
|
|
|
margin-right: 16px; |
|
|
|
|
border-radius: 100%; |
|
|
|
|
position: relative; |
|
|
|
|
&::after { |
|
|
|
|
content: ''; |
|
|
|
|
position: absolute; |
|
|
|
|
inset: 0; |
|
|
|
|
border-left: 2px solid #dbdfe9; |
|
|
|
|
transform-origin: 0 50%; |
|
|
|
|
transform: translateX(calc(50% - 1px)) rotateZ(45deg); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.isSelect { |
|
|
|
|
background-color: $cs-color-main; |
|
|
|
|
} |
|
|
|
@ -157,17 +407,108 @@ export default {
|
|
|
|
|
margin-bottom: 4px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
&:active { |
|
|
|
|
background-color: $cs-color-touch; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.audit { |
|
|
|
|
|
|
|
|
|
.btn-box { |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
justify-content: center; |
|
|
|
|
padding-bottom: 30px; |
|
|
|
|
position: fixed; |
|
|
|
|
bottom: 0; |
|
|
|
|
left: 0; |
|
|
|
|
} |
|
|
|
|
.confirm-btn { |
|
|
|
|
background-color: $cs-color-main; |
|
|
|
|
padding: 12px 40px; |
|
|
|
|
color: #fff; |
|
|
|
|
font-size: 16px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
border-radius: 120px; |
|
|
|
|
} |
|
|
|
|
.header { |
|
|
|
|
display: flex; |
|
|
|
|
flex-flow: column nowrap; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
gap: 4px; |
|
|
|
|
.row-1 { |
|
|
|
|
font-size: 16px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
color: #071437; |
|
|
|
|
.num { |
|
|
|
|
color: $cs-color-main; |
|
|
|
|
padding: 0 4px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.row-2 { |
|
|
|
|
color: $cs-color-grey; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.staff-list { |
|
|
|
|
width: 70vw; |
|
|
|
|
display: flex; |
|
|
|
|
flex-flow: row wrap; |
|
|
|
|
gap: 12px; |
|
|
|
|
max-height: 30vh; |
|
|
|
|
overflow-y: scroll; |
|
|
|
|
.staff { |
|
|
|
|
width: calc(50% - 6px); |
|
|
|
|
padding: 12px; |
|
|
|
|
border-radius: 6px; |
|
|
|
|
border: 1px solid var(--select-color, #dbdfe9); |
|
|
|
|
position: relative; |
|
|
|
|
gap: 8px; |
|
|
|
|
display: flex; |
|
|
|
|
.info { |
|
|
|
|
.name { |
|
|
|
|
font-size: 16px; |
|
|
|
|
font-weight: bold; |
|
|
|
|
} |
|
|
|
|
.dept { |
|
|
|
|
color: $cs-color-grey; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.isSelect { |
|
|
|
|
position: absolute; |
|
|
|
|
right: -10px; |
|
|
|
|
top: 6px; |
|
|
|
|
transform: rotateZ(45deg); |
|
|
|
|
transform-origin: 50% 50%; |
|
|
|
|
padding: 4px 20px; |
|
|
|
|
font-size: 12px; |
|
|
|
|
text-align: center; |
|
|
|
|
right: 0; |
|
|
|
|
top: 0; |
|
|
|
|
width: 30px; |
|
|
|
|
height: 30px; |
|
|
|
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 50%, var(--select-color, #f1f1f4) 50%); |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: flex-end; |
|
|
|
|
align-items: flex-start; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.options-container { |
|
|
|
|
overflow: hidden; |
|
|
|
|
margin: 12px; |
|
|
|
|
border-radius: 8px; |
|
|
|
|
transition: 0.1s all; |
|
|
|
|
display: flex; |
|
|
|
|
padding: 0 12px; |
|
|
|
|
flex-flow: row nowrap; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
background-color: #fff; |
|
|
|
|
border-bottom: 1px solid #f1f1f4; |
|
|
|
|
color: #071437; |
|
|
|
|
::v-deep .van-dropdown-menu { |
|
|
|
|
background-color: transparent; |
|
|
|
|
box-shadow: none; |
|
|
|
|
--dropdown-menu-title-font-size: 13px; |
|
|
|
|
--dropdown-menu-title-text-color: #071437; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.isTop { |
|
|
|
|
margin: 12px 0; |
|
|
|
|
border-radius: 0px; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|