Commit 0fed9998 authored by 刘怀志's avatar 刘怀志

feat(全局): 样式功能修改

parent fd87dcc8
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
发起时间 发起时间
</view> </view>
<view class="subContent"> <view class="subContent">
{{ parseTimeA(item.createDate,'YYYY/MM/DD {h}:{i}:{s}') }} {{ parseTimeA(item.createDate,'{y}/{m}/{d} {h}:{i}:{s}') }}
</view> </view>
</view> </view>
<view class="subRow"> <view class="subRow">
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
结束时间 结束时间
</view> </view>
<view class="subContent"> <view class="subContent">
{{ parseTimeA(item.endDate,'YYYY/MM/DD {h}:{i}:{s}') }} {{ parseTimeA(item.endDate,'{y}/{m}/{d} {h}:{i}:{s}') }}
</view> </view>
</view> </view>
</view> </view>
...@@ -158,8 +158,8 @@ export default { ...@@ -158,8 +158,8 @@ export default {
computed: { computed: {
// 计算属性 // 计算属性
parseTimeA() { parseTimeA() {
return (time) => { return (time,format) => {
return parseTime(time, '{m}-{d} {h}:{i}:{s}') return parseTime(time, format)
} }
}, },
}, },
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
发起时间 发起时间
</view> </view>
<view class="subContent"> <view class="subContent">
{{ parseTimeA(item.createDate,'YYYY/MM/DD {h}:{i}:{s}') }} {{ parseTimeA(item.createDate,'{y}/{m}/{d} {h}:{i}:{s}') }}
</view> </view>
</view> </view>
<view class="subRow"> <view class="subRow">
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
结束时间 结束时间
</view> </view>
<view class="subContent"> <view class="subContent">
{{ parseTimeA(item.endDate,'YYYY/MM/DD {h}:{i}:{s}') }} {{ parseTimeA(item.endDate,'{y}/{m}/{d} {h}:{i}:{s}') }}
</view> </view>
</view> </view>
</view> </view>
...@@ -139,8 +139,8 @@ export default { ...@@ -139,8 +139,8 @@ export default {
computed: { computed: {
// 计算属性 // 计算属性
parseTimeA() { parseTimeA() {
return (time) => { return (time,format) => {
return parseTime(time, '{m}-{d} {h}:{i}:{s}') return parseTime(time, format)
} }
}, },
}, },
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
发起时间 发起时间
</view> </view>
<view class="subContent"> <view class="subContent">
{{ parseTimeA(item.initiateDate, 'YYYY/MM/DD {h}:{i}:{s}') }} {{ parseTimeA(item.initiateDate, '{y}/{m}/{d} {h}:{i}:{s}') }}
</view> </view>
</view> </view>
<view class="subRow"> <view class="subRow">
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
结束时间 结束时间
</view> </view>
<view class="subContent"> <view class="subContent">
{{ parseTimeA(item.completeDate, 'YYYY/MM/DD {h}:{i}:{s}') }} {{ parseTimeA(item.completeDate, '{y}/{m}/{d} {h}:{i}:{s}') }}
</view> </view>
</view> </view>
</view> </view>
...@@ -137,8 +137,8 @@ export default { ...@@ -137,8 +137,8 @@ export default {
computed: { computed: {
// 计算属性 // 计算属性
parseTimeA() { parseTimeA() {
return (time) => { return (time,format) => {
return parseTime(time, '{m}-{d} {h}:{i}:{s}') return parseTime(time, format)
} }
}, },
}, },
......
...@@ -382,7 +382,7 @@ export default { ...@@ -382,7 +382,7 @@ export default {
font-family: PingFangSC, PingFang SC; font-family: PingFangSC, PingFang SC;
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #9A9A9A; color: #222222;
text-align: left; text-align: left;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;
...@@ -393,10 +393,11 @@ export default { ...@@ -393,10 +393,11 @@ export default {
font-family: PingFangSC, PingFang SC; font-family: PingFangSC, PingFang SC;
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #222222; color: #9A9A9A;
text-align: right; text-align: right;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;
max-width: 300rpx;
} }
} }
...@@ -431,6 +432,7 @@ export default { ...@@ -431,6 +432,7 @@ export default {
color: #F4850E; color: #F4850E;
line-height: 36rpx; line-height: 36rpx;
font-style: normal; font-style: normal;
border-radius: 20rpx;
} }
} }
} }
......
...@@ -821,30 +821,27 @@ ...@@ -821,30 +821,27 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
margin-bottom: 12rpx; margin-bottom: 12rpx;
.subTitle { .subTitle {
font-family: font-family: PingFangSC, PingFang SC;
PingFangSC,
PingFang SC;
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #9a9a9a; color: #222222;
text-align: left; text-align: left;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;
min-width: 120rpx; min-width: 120rpx;
} }
.subContent { .subContent {
font-family: font-family: PingFangSC, PingFang SC;
PingFangSC,
PingFang SC;
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #222222; color: #9A9A9A;
text-align: right; text-align: right;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;
max-width: 300rpx;
} }
} }
...@@ -943,6 +940,8 @@ ...@@ -943,6 +940,8 @@
color: #f4850e; color: #f4850e;
line-height: 36rpx; line-height: 36rpx;
font-style: normal; font-style: normal;
border-radius: 20rpx;
} }
} }
} }
......
...@@ -704,12 +704,10 @@ export default { ...@@ -704,12 +704,10 @@ export default {
margin-bottom: 12rpx; margin-bottom: 12rpx;
.subTitle { .subTitle {
font-family: font-family: PingFangSC, PingFang SC;
PingFangSC,
PingFang SC;
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #9a9a9a; color: #222222;
text-align: left; text-align: left;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;
...@@ -717,15 +715,14 @@ export default { ...@@ -717,15 +715,14 @@ export default {
} }
.subContent { .subContent {
font-family: font-family: PingFangSC, PingFang SC;
PingFangSC,
PingFang SC;
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #222222; color: #9A9A9A;
text-align: right; text-align: right;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;
max-width: 300rpx;
} }
} }
.custom-table-collapse { .custom-table-collapse {
...@@ -897,6 +894,8 @@ export default { ...@@ -897,6 +894,8 @@ export default {
color: #f4850e; color: #f4850e;
line-height: 36rpx; line-height: 36rpx;
font-style: normal; font-style: normal;
border-radius: 20rpx;
} }
} }
::v-deep .u-upload__wrap{ ::v-deep .u-upload__wrap{
......
...@@ -553,12 +553,10 @@ export default { ...@@ -553,12 +553,10 @@ export default {
margin-bottom: 12rpx; margin-bottom: 12rpx;
.subTitle { .subTitle {
font-family: font-family: PingFangSC, PingFang SC;
PingFangSC,
PingFang SC;
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #9a9a9a; color: #222222;
text-align: left; text-align: left;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;
...@@ -566,15 +564,14 @@ export default { ...@@ -566,15 +564,14 @@ export default {
} }
.subContent { .subContent {
font-family: font-family: PingFangSC, PingFang SC;
PingFangSC,
PingFang SC;
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #222222; color: #9A9A9A;
text-align: right; text-align: right;
font-style: normal; font-style: normal;
text-transform: none; text-transform: none;
max-width: 300rpx;
} }
} }
::v-deep .u-collapse-item__content__text{ ::v-deep .u-collapse-item__content__text{
...@@ -702,6 +699,8 @@ export default { ...@@ -702,6 +699,8 @@ export default {
color: #f4850e; color: #f4850e;
line-height: 36rpx; line-height: 36rpx;
font-style: normal; font-style: normal;
border-radius: 20rpx;
} }
} }
::v-deep .u-upload__wrap{ ::v-deep .u-upload__wrap{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment