|
@@ -1,36 +1,17 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="prescription-page">
|
|
<div class="prescription-page">
|
|
|
- <!-- <div class="filter-wrap">
|
|
|
|
|
- <div class="farm-list">
|
|
|
|
|
- <el-select
|
|
|
|
|
- @change="changeFarm"
|
|
|
|
|
- class="select-item"
|
|
|
|
|
- v-model="farmItem"
|
|
|
|
|
- placeholder="作物类型"
|
|
|
|
|
- style="width: 100px"
|
|
|
|
|
- >
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="(item, index) in farmList"
|
|
|
|
|
- :key="index"
|
|
|
|
|
- :label="item.name"
|
|
|
|
|
- :value="{ value: item.organId, ...item }"
|
|
|
|
|
- />
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="plan-box">
|
|
|
|
|
- <div
|
|
|
|
|
- class="plan-item"
|
|
|
|
|
- v-for="(item, index) in planList"
|
|
|
|
|
- :key="index"
|
|
|
|
|
- @click="handlePlanClick(item.id, index)"
|
|
|
|
|
- :class="{ active: activePlanIndex === index }"
|
|
|
|
|
- >
|
|
|
|
|
- {{ item.name }}
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="filter-list">
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="filter-item"
|
|
|
|
|
+ v-for="(label, i) in filterTabs"
|
|
|
|
|
+ :key="i"
|
|
|
|
|
+ :class="{ active: i === activeFilterIndex }"
|
|
|
|
|
+ @click="activeFilterIndex = i"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ label }}
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="plan-add" @click="newPlan">新增方案</div>
|
|
|
|
|
- </div> -->
|
|
|
|
|
- <div class="expert-prescription" :class="{'isSubPage': isSubPage}">
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="expert-prescription" :class="{ isSubPage: isSubPage }">
|
|
|
<div class="plan-menu">
|
|
<div class="plan-menu">
|
|
|
<el-anchor :container="containerRef" direction="vertical" type="default" @click="handleClick">
|
|
<el-anchor :container="containerRef" direction="vertical" type="default" @click="handleClick">
|
|
|
<el-menu :default-active="defaultActive" class="el-menu-vertical-demo">
|
|
<el-menu :default-active="defaultActive" class="el-menu-vertical-demo">
|
|
@@ -39,8 +20,15 @@
|
|
|
<img class="menu-icon" :src="require(`@/assets/img/gallery/icon-${index}.png`)" />
|
|
<img class="menu-icon" :src="require(`@/assets/img/gallery/icon-${index}.png`)" />
|
|
|
<span class="menu-text">{{ menu.name }}</span>
|
|
<span class="menu-text">{{ menu.name }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
- <el-menu-item v-for="item in menu.farmWorkArrangeList" :key="item.id" :index="`${menu.id}-${item.id}`">
|
|
|
|
|
- <el-anchor-link :href="'#'+menu.name+item.farmWorkDetail?.name" :title="item.farmWorkDetail?.name" />
|
|
|
|
|
|
|
+ <el-menu-item
|
|
|
|
|
+ v-for="item in menu.farmWorkArrangeList"
|
|
|
|
|
+ :key="item.id"
|
|
|
|
|
+ :index="`${menu.id}-${item.id}`"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-anchor-link
|
|
|
|
|
+ :href="'#' + menu.name + item.farmWorkDetail?.name"
|
|
|
|
|
+ :title="item.farmWorkDetail?.name"
|
|
|
|
|
+ />
|
|
|
</el-menu-item>
|
|
</el-menu-item>
|
|
|
</el-sub-menu>
|
|
</el-sub-menu>
|
|
|
</el-menu>
|
|
</el-menu>
|
|
@@ -48,8 +36,12 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="expert-content" ref="containerRef">
|
|
<div class="expert-content" ref="containerRef">
|
|
|
<div v-for="(section, index) in menuData" :key="index" class="content-section">
|
|
<div v-for="(section, index) in menuData" :key="index" class="content-section">
|
|
|
- <div class="section-item" v-for="(sub, subI) in section.farmWorkArrangeList" :key="index+'-'+subI">
|
|
|
|
|
- <div class="section-id" :id="section.name+sub.farmWorkDetail?.name"></div>
|
|
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="section-item"
|
|
|
|
|
+ v-for="(sub, subI) in section.farmWorkArrangeList"
|
|
|
|
|
+ :key="index + '-' + subI"
|
|
|
|
|
+ >
|
|
|
|
|
+ <div class="section-id" :id="section.name + sub.farmWorkDetail?.name"></div>
|
|
|
<record-item :record-item-data="sub">
|
|
<record-item :record-item-data="sub">
|
|
|
<template #title>
|
|
<template #title>
|
|
|
<div class="box-title">
|
|
<div class="box-title">
|
|
@@ -74,46 +66,34 @@
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 底部 -->
|
|
<!-- 底部 -->
|
|
|
- <!-- <div class="fixed-bottom">
|
|
|
|
|
- <div class="bottom-l">
|
|
|
|
|
- <div class="l-btn">
|
|
|
|
|
- <el-icon color="#666666" class="btn-icon" size="16"><Download /></el-icon>
|
|
|
|
|
- 下载处方
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="bottom-r" @click="addWork">新增农事</div>
|
|
|
|
|
- </div> -->
|
|
|
|
|
|
|
+ <div class="fixed-bottom" :style="{ color: activeFilterIndex === defaultFilterIndex ? 'rgba(0, 0, 0, 0.5)' : '#2199F8' }" @click="handleSetDefault">{{activeFilterIndex === defaultFilterIndex ? '当前已是 默认方案' : '设置为 默认方案'}}</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <add-group ref="addGroupRef" @updateGroupList="getPlan" />
|
|
|
|
|
|
|
+ <!-- <add-group ref="addGroupRef" @updateGroupList="getPlan" /> -->
|
|
|
<action-sheet :style="{ bottom: tabBarHeight + 'px' }" v-model:show="showAction" title="选择农事类型(可多选)">
|
|
<action-sheet :style="{ bottom: tabBarHeight + 'px' }" v-model:show="showAction" title="选择农事类型(可多选)">
|
|
|
- <div class="content">
|
|
|
|
|
- <checkbox-group v-model="checkedType">
|
|
|
|
|
- <div class="action-content">
|
|
|
|
|
- <div
|
|
|
|
|
- class="action-item"
|
|
|
|
|
- :class="{ active: checkedType.includes(item) }"
|
|
|
|
|
- v-for="(item, index) in actionTypeList"
|
|
|
|
|
- :key="index"
|
|
|
|
|
- @click="toggleActionType(index)"
|
|
|
|
|
- >
|
|
|
|
|
- <div class="type-name">{{ item }}</div>
|
|
|
|
|
- <div>
|
|
|
|
|
- <checkbox :name="item" :ref="(el) => (checkboxRefs[index] = el)" @click.stop />
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="content">
|
|
|
|
|
+ <checkbox-group v-model="checkedType">
|
|
|
|
|
+ <div class="action-content">
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="action-item"
|
|
|
|
|
+ :class="{ active: checkedType.includes(item) }"
|
|
|
|
|
+ v-for="(item, index) in actionTypeList"
|
|
|
|
|
+ :key="index"
|
|
|
|
|
+ @click="toggleActionType(index)"
|
|
|
|
|
+ >
|
|
|
|
|
+ <div class="type-name">{{ item }}</div>
|
|
|
|
|
+ <div>
|
|
|
|
|
+ <checkbox :name="item" :ref="(el) => (checkboxRefs[index] = el)" @click.stop />
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="action-btn">
|
|
|
|
|
- <el-button
|
|
|
|
|
- @click="toNewFarming"
|
|
|
|
|
- :disabled="checkedType.length === 0"
|
|
|
|
|
- class="btn-one"
|
|
|
|
|
- type="primary"
|
|
|
|
|
- >确定</el-button
|
|
|
|
|
- >
|
|
|
|
|
- </div>
|
|
|
|
|
- </checkbox-group>
|
|
|
|
|
- </div>
|
|
|
|
|
- </action-sheet>
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="action-btn">
|
|
|
|
|
+ <el-button @click="toNewFarming" :disabled="checkedType.length === 0" class="btn-one" type="primary"
|
|
|
|
|
+ >确定</el-button
|
|
|
|
|
+ >
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </checkbox-group>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </action-sheet>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
@@ -127,11 +107,29 @@ import { ElMessage, ElMessageBox } from "element-plus";
|
|
|
const props = defineProps({
|
|
const props = defineProps({
|
|
|
isSubPage: {
|
|
isSubPage: {
|
|
|
type: Boolean,
|
|
type: Boolean,
|
|
|
- default: false
|
|
|
|
|
- }
|
|
|
|
|
-})
|
|
|
|
|
|
|
+ default: false,
|
|
|
|
|
+ },
|
|
|
|
|
+});
|
|
|
const store = useStore();
|
|
const store = useStore();
|
|
|
const router = useRouter();
|
|
const router = useRouter();
|
|
|
|
|
+// 顶部筛选标签
|
|
|
|
|
+const filterTabs = ref(["韦帮稳", "某某某", "某某某", "某某某"]);
|
|
|
|
|
+const activeFilterIndex = ref(0);
|
|
|
|
|
+const defaultFilterIndex = ref(0);
|
|
|
|
|
+const handleSetDefault = () => {
|
|
|
|
|
+ if (activeFilterIndex.value === defaultFilterIndex.value) {
|
|
|
|
|
+ ElMessage.warning('当前已是 默认方案');
|
|
|
|
|
+ } else {
|
|
|
|
|
+ ElMessageBox.confirm('确定要将当前方案设置为默认方案吗?', '提示', {
|
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
|
+ type: 'warning'
|
|
|
|
|
+ }).then(() => {
|
|
|
|
|
+ defaultFilterIndex.value = activeFilterIndex.value;
|
|
|
|
|
+ ElMessage.success('设置成功');
|
|
|
|
|
+ }).catch(() => {});
|
|
|
|
|
+ }
|
|
|
|
|
+};
|
|
|
|
|
|
|
|
const tabBarHeight = computed(() => store.state.home.tabBarHeight);
|
|
const tabBarHeight = computed(() => store.state.home.tabBarHeight);
|
|
|
// 菜单
|
|
// 菜单
|
|
@@ -139,15 +137,6 @@ const defaultActive = ref("1-1");
|
|
|
|
|
|
|
|
const menuData = ref([]);
|
|
const menuData = ref([]);
|
|
|
|
|
|
|
|
-const activePlanIndex = ref(null);
|
|
|
|
|
-const schemeId = ref(null);
|
|
|
|
|
-const planList = ref([]);
|
|
|
|
|
-const handlePlanClick = (id, index) => {
|
|
|
|
|
- schemeId.value = id
|
|
|
|
|
- activePlanIndex.value = index;
|
|
|
|
|
- getWorkList()
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
function deletePlan() {
|
|
function deletePlan() {
|
|
|
ElMessageBox.confirm("是否确认删除该农事?", "提示", {
|
|
ElMessageBox.confirm("是否确认删除该农事?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
confirmButtonText: "确定",
|
|
@@ -168,10 +157,9 @@ const handleClick = (e) => {
|
|
|
const addGroupRef = ref(null);
|
|
const addGroupRef = ref(null);
|
|
|
// 新增方案
|
|
// 新增方案
|
|
|
function newPlan() {
|
|
function newPlan() {
|
|
|
- addGroupRef.value.openClientPopup({params: {farmIds: [farmId.value], containerId: containerId.value}});
|
|
|
|
|
|
|
+ addGroupRef.value.openClientPopup({ params: { farmIds: [farmId.value], containerId: containerId.value } });
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
// -------新增农事-----
|
|
// -------新增农事-----
|
|
|
const showAction = ref(false);
|
|
const showAction = ref(false);
|
|
|
const addWork = () => {
|
|
const addWork = () => {
|
|
@@ -198,117 +186,56 @@ const containerRef = ref(null);
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
|
getFarmList(() => {
|
|
getFarmList(() => {
|
|
|
- getPlan()
|
|
|
|
|
- getWorkList()
|
|
|
|
|
- })
|
|
|
|
|
-
|
|
|
|
|
-})
|
|
|
|
|
|
|
+ getWorkList();
|
|
|
|
|
+ });
|
|
|
|
|
+});
|
|
|
|
|
|
|
|
const miniUserId = store.state.home.miniUserId;
|
|
const miniUserId = store.state.home.miniUserId;
|
|
|
|
|
|
|
|
-const farmItem = ref(null)
|
|
|
|
|
-const farmId = ref(null)
|
|
|
|
|
-const containerId = ref(null)
|
|
|
|
|
-const farmList = ref([])
|
|
|
|
|
|
|
+const farmItem = ref(null);
|
|
|
|
|
+const farmId = ref(null);
|
|
|
|
|
+const containerId = ref(null);
|
|
|
|
|
+const farmList = ref([]);
|
|
|
function getFarmList(callback) {
|
|
function getFarmList(callback) {
|
|
|
- VE_API.farm.fetchFarmList({userId: miniUserId, show3dFarm: false}).then(({data}) => {
|
|
|
|
|
- farmList.value = data || []
|
|
|
|
|
|
|
+ VE_API.farm.fetchFarmList({ userId: miniUserId, show3dFarm: false }).then(({ data }) => {
|
|
|
|
|
+ farmList.value = data || [];
|
|
|
if (data && data.length) {
|
|
if (data && data.length) {
|
|
|
- console.log('ddd', data);
|
|
|
|
|
- farmItem.value = {...data[0], value: data[0].organId}
|
|
|
|
|
- farmId.value = data[0].organId
|
|
|
|
|
- containerId.value = data[0].containerId
|
|
|
|
|
- callback && callback()
|
|
|
|
|
|
|
+ farmItem.value = { ...data[0], value: data[0].organId };
|
|
|
|
|
+ farmId.value = data[0].organId;
|
|
|
|
|
+ containerId.value = data[0].containerId;
|
|
|
|
|
+ callback && callback();
|
|
|
}
|
|
}
|
|
|
- })
|
|
|
|
|
|
|
+ });
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function getWorkList() {
|
|
function getWorkList() {
|
|
|
- console.log('farmId', farmId.value, containerId.value);
|
|
|
|
|
- VE_API.home.getPhenologyFarmWorkList({farmId: farmId.value, containerId: containerId.value, schemeId: schemeId.value}).then(({data}) => {
|
|
|
|
|
- // contentData.value = data
|
|
|
|
|
- menuData.value = data
|
|
|
|
|
- })
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-function getPlan() {
|
|
|
|
|
- VE_API.home.listByFarmIdAndContainerId({farmId: farmId.value, containerId: containerId.value}).then(({data}) => {
|
|
|
|
|
- planList.value = data
|
|
|
|
|
- })
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-function changeFarm(v) {
|
|
|
|
|
- containerId.value = v.containerId
|
|
|
|
|
- getPlan()
|
|
|
|
|
|
|
+ VE_API.home
|
|
|
|
|
+ .getPhenologyFarmWorkList({ farmId: farmId.value, containerId: containerId.value })
|
|
|
|
|
+ .then(({ data }) => {
|
|
|
|
|
+ menuData.value = data;
|
|
|
|
|
+ });
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
.prescription-page {
|
|
.prescription-page {
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
- background: #F5F7FB;
|
|
|
|
|
|
|
+ background: #f5f7fb;
|
|
|
position: relative;
|
|
position: relative;
|
|
|
- .filter-wrap {
|
|
|
|
|
- padding: 10px 0;
|
|
|
|
|
- width: 100%;
|
|
|
|
|
|
|
+ .filter-list {
|
|
|
|
|
+ padding: 10px 12px;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
|
|
- .farm-list {
|
|
|
|
|
- padding-left: 12px;
|
|
|
|
|
- ::v-deep {
|
|
|
|
|
- .el-select__wrapper {
|
|
|
|
|
- box-shadow: 0 0 0 1px rgba(33, 153, 248, 0.3) inset;
|
|
|
|
|
- }
|
|
|
|
|
- .el-input__inner, .el-select__placeholder {
|
|
|
|
|
- color: #2199f8;
|
|
|
|
|
- }
|
|
|
|
|
- .el-input__prefix {
|
|
|
|
|
- color: #2199f8;
|
|
|
|
|
- }
|
|
|
|
|
- .el-select__caret {
|
|
|
|
|
- color: #2199f8;
|
|
|
|
|
- }
|
|
|
|
|
- .el-input {
|
|
|
|
|
- --el-input-placeholder-color: #2199f8;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- .plan-box {
|
|
|
|
|
- flex: 1;
|
|
|
|
|
- padding-left: 10px;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- overflow: auto;
|
|
|
|
|
- white-space: nowrap;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- .plan-item {
|
|
|
|
|
- color: #000000;
|
|
|
|
|
- background: #f1f1f1;
|
|
|
|
|
- padding: 0 12px;
|
|
|
|
|
- height: 32px;
|
|
|
|
|
- line-height: 32px;
|
|
|
|
|
- border-radius: 20px;
|
|
|
|
|
- &.active {
|
|
|
|
|
- background: rgba(33, 153, 248, 0.2);
|
|
|
|
|
- color: #2199f8;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- .plan-item + .plan-item {
|
|
|
|
|
- margin-left: 10px;
|
|
|
|
|
|
|
+ gap: 12px;
|
|
|
|
|
+ .filter-item {
|
|
|
|
|
+ color: #8a8f94;
|
|
|
|
|
+ padding: 6px 12px;
|
|
|
|
|
+ &.active {
|
|
|
|
|
+ color: #2199f8;
|
|
|
|
|
+ background: rgba(33, 153, 248, 0.12);
|
|
|
|
|
+ border-radius: 28px;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- .plan-add {
|
|
|
|
|
- width: 80px;
|
|
|
|
|
- height: 30px;
|
|
|
|
|
- border: 1px solid #2199f8;
|
|
|
|
|
- border-radius: 20px;
|
|
|
|
|
- flex: none;
|
|
|
|
|
- line-height: 32px;
|
|
|
|
|
- text-align: center;
|
|
|
|
|
- margin: 0 12px;
|
|
|
|
|
- color: #2199f8;
|
|
|
|
|
- font-size: 14px;
|
|
|
|
|
- }
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.expert-prescription {
|
|
.expert-prescription {
|
|
@@ -317,7 +244,6 @@ function changeFarm(v) {
|
|
|
height: calc(100vh - 52px - 48px);
|
|
height: calc(100vh - 52px - 48px);
|
|
|
&.isSubPage {
|
|
&.isSubPage {
|
|
|
height: calc(100vh - 52px - 48px);
|
|
height: calc(100vh - 52px - 48px);
|
|
|
- padding-top: 10px;
|
|
|
|
|
}
|
|
}
|
|
|
.plan-menu {
|
|
.plan-menu {
|
|
|
width: 100px;
|
|
width: 100px;
|
|
@@ -464,53 +390,17 @@ function changeFarm(v) {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
.fixed-bottom {
|
|
.fixed-bottom {
|
|
|
- position: absolute;
|
|
|
|
|
- bottom: 12px;
|
|
|
|
|
- left: 12px;
|
|
|
|
|
- width: calc(100% - 24px);
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- justify-content: space-between;
|
|
|
|
|
- padding: 14px 12px;
|
|
|
|
|
- background: linear-gradient(180deg, #f0f8ff 6px, #FFFFFF 20px);
|
|
|
|
|
- border-radius: 14px;
|
|
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ bottom: 0;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ padding: 20px;
|
|
|
|
|
+ background: #fff;
|
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
- box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
|
|
|
|
|
- .bottom-l {
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- .l-btn {
|
|
|
|
|
- border: 1px solid rgba(153, 153, 153, 0.5);
|
|
|
|
|
- border-radius: 30px;
|
|
|
|
|
- padding: 0 8px 0 12px;
|
|
|
|
|
- height: 32px;
|
|
|
|
|
- line-height: 32px;
|
|
|
|
|
- box-sizing: border-box;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- justify-content: center;
|
|
|
|
|
- color: #666666;
|
|
|
|
|
- .btn-icon {
|
|
|
|
|
- padding-right: 3px;
|
|
|
|
|
- }
|
|
|
|
|
- .calculator-icon {
|
|
|
|
|
- width: 12px;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- .l-btn + .l-btn {
|
|
|
|
|
- margin-left: 10px;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- .bottom-r {
|
|
|
|
|
- height: 32px;
|
|
|
|
|
- line-height: 32px;
|
|
|
|
|
- background: linear-gradient(180deg, #70bffe, #2199f8);
|
|
|
|
|
- border-radius: 20px;
|
|
|
|
|
- color: #fff;
|
|
|
|
|
- padding: 0 12px;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ border-top: 1px solid rgba(153, 153, 153, 0.2);
|
|
|
|
|
+ color: rgba(0, 0, 0, 0.5);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|