Commit 77364ced authored by Zheng Shang Jun's avatar Zheng Shang Jun

修改样式bug3

parent 5f571ba7
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数 // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
"version": "0.0", "version": "0.0",
"configurations": [{ "configurations": [{
"app-plus" :
{
"launchtype" : "local"
},
"default" : "default" :
{ {
"launchtype" : "local" "launchtype" : "local"
......
...@@ -518,5 +518,15 @@ ...@@ -518,5 +518,15 @@
"navigationBarTitleText": "uni-app", "navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8", "navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8" "backgroundColor": "#F8F8F8"
},
"condition" : { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [
{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数,在页面的onLoad函数里面得到
}
]
} }
} }
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
<image <image
v-for="(item, index) in dailyNewStyleList" v-for="(item, index) in dailyNewStyleList"
:key="index" :key="index"
:src="`${imgUrl}${item.originalImageCode}`" :src="`${imgUrl}${item.effectPictureCode}`"
mode="aspectFit" mode="aspectFit"
></image> ></image>
</view> </view>
...@@ -74,7 +74,7 @@ export default { ...@@ -74,7 +74,7 @@ export default {
return { return {
fabricObj: "", fabricObj: "",
dailyNewStyleList: [], //每日上新的数据 dailyNewStyleList: [], //每日上新的数据
hotStylePage: [{ id: 1 }], //款式的数据 hotStylePage: [], //款式的数据
imgUrl: this.$IMG_URL, // 图片前面的url imgUrl: this.$IMG_URL, // 图片前面的url
background: { background: {
backgroundColor: "rgba(245,245,245,0)", backgroundColor: "rgba(245,245,245,0)",
......
...@@ -120,11 +120,11 @@ export default { ...@@ -120,11 +120,11 @@ export default {
// 底部占位符 // 底部占位符
.mask-template1 { .mask-template1 {
width: 100%; width: 100%;
height: 100rpx; height: 150rpx;
} }
.mask-template2 { .mask-template2 {
width: 100%; width: 100%;
height: 200rpx; height: 250rpx;
} }
.collect { .collect {
height: 100%; height: 100%;
......
...@@ -185,7 +185,7 @@ export default { ...@@ -185,7 +185,7 @@ export default {
let idItem = this.selected.map((el) => { let idItem = this.selected.map((el) => {
return el.id; return el.id;
}); });
this.unCollectionFn(...idItem); this.unCollectionFn(idItem);
}, },
// 外部全选按钮 // 外部全选按钮
outsideChecked() { outsideChecked() {
...@@ -207,8 +207,8 @@ export default { ...@@ -207,8 +207,8 @@ export default {
}); });
}, },
//取消款式接口 //取消款式接口
unCollectionFn(item) { unCollectionFn(param) {
let param = [item]; // let param = [item];
this.$http("mobileBrand.cancelCollect", param).then((res) => { this.$http("mobileBrand.cancelCollect", param).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.$emit("update"); this.$emit("update");
...@@ -219,7 +219,7 @@ export default { ...@@ -219,7 +219,7 @@ export default {
browerClick(item) { browerClick(item) {
if (item.isFavorite == true) { if (item.isFavorite == true) {
this.$u.toast(`已取消收藏`); this.$u.toast(`已取消收藏`);
this.unCollectionFn(item.id); this.unCollectionFn([item.id]);
} else { } else {
this.$u.toast(`已收藏款式`); this.$u.toast(`已收藏款式`);
this.collectionFn(item.id); this.collectionFn(item.id);
...@@ -228,7 +228,7 @@ export default { ...@@ -228,7 +228,7 @@ export default {
//滑动删除的东西 //滑动删除的东西
sliderClick(indexs, item) { sliderClick(indexs, item) {
let itemId = item[indexs].id; let itemId = item[indexs].id;
this.unCollectionFn(itemId); this.unCollectionFn([itemId]);
}, },
// 如果打开一个的时候,不需要关闭其他,则无需实现本方法 // 如果打开一个的时候,不需要关闭其他,则无需实现本方法
// 没做目前没用 // 没做目前没用
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<view class="hots" v-for="(item, index) in recordsList" :key="index"> <view class="hots" v-for="(item, index) in recordsList" :key="index">
<image <image
class="indexhot" class="indexhot"
:src="`${imgUrl}${item.originalImageCode}`" :src="`${imgUrl}${item.effectPictureCode}`"
@click="tabdetail(item)" @click="tabdetail(item)"
mode="aspectFill" mode="aspectFill"
></image> ></image>
...@@ -13,8 +13,8 @@ ...@@ -13,8 +13,8 @@
<view class="hotText2"> <view class="hotText2">
<image <image
class="iconhot" class="iconhot"
:src="`${imgUrl}${item.originalImageCode}`" :src="`${imgUrl}${item.effectPictureCode}`"
mode="aspectFill" mode=""
></image> ></image>
<text class="wen">{{ item.materialName }}</text> <text class="wen">{{ item.materialName }}</text>
<image <image
...@@ -67,6 +67,7 @@ export default { ...@@ -67,6 +67,7 @@ export default {
}, },
// 跳转到详情 // 跳转到详情
tabdetail(item) { tabdetail(item) {
console.log(1);
this.$Router.push("/pages/brands/detail?id=" + item.id); this.$Router.push("/pages/brands/detail?id=" + item.id);
}, },
//收藏款式接口 //收藏款式接口
...@@ -101,6 +102,7 @@ export default { ...@@ -101,6 +102,7 @@ export default {
width: 330rpx; width: 330rpx;
margin-bottom: 20rpx; margin-bottom: 20rpx;
// margin-right: 16rpx; // margin-right: 16rpx;
border: 2rpx solid #e3e1e0;
.indexhot { .indexhot {
display: block; display: block;
...@@ -112,7 +114,7 @@ export default { ...@@ -112,7 +114,7 @@ export default {
.hotborder { .hotborder {
height: 144rpx; height: 144rpx;
// width: 193rpx; // width: 193rpx;
border: 2rpx solid #e3e1e0; // border: 2rpx solid #e3e1e0;
// border-top: 0rpx !important; // border-top: 0rpx !important;
border-radius: 0 0 10rpx 10rpx; border-radius: 0 0 10rpx 10rpx;
} }
...@@ -122,7 +124,8 @@ export default { ...@@ -122,7 +124,8 @@ export default {
font-family: PingFangSC, PingFangSC-Regular; font-family: PingFangSC, PingFangSC-Regular;
font-weight: 400; font-weight: 400;
color: rgba(0, 0, 0, 0.8); color: rgba(0, 0, 0, 0.8);
margin: 24rpx 28rpx 0 20rpx; margin: 24rpx 0rpx 0 0rpx;
padding: 0 28rpx 0rpx 28rpx;
width: 100%; width: 100%;
overflow: hidden; overflow: hidden;
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<view> <view>
<u-image <u-image
height="750rpx" height="750rpx"
:src="`${imgUrl}${tabledata.originalImageCode}`" :src="`${imgUrl}${tabledata.effectPictureCode}`"
></u-image> ></u-image>
</view> </view>
<view class="u-p-r-30 u-p-l-30"> <view class="u-p-r-30 u-p-l-30">
...@@ -93,13 +93,13 @@ export default { ...@@ -93,13 +93,13 @@ export default {
smapTelePhone: "", //联系人电话 smapTelePhone: "", //联系人电话
}; };
}, },
watch: { // watch: {
id: { // id: {
handler() { // handler() {
this.detail(); // this.detail();
}, // },
}, // },
}, // },
created() { created() {
this.detail(); this.detail();
......
...@@ -5,7 +5,11 @@ ...@@ -5,7 +5,11 @@
<u-navbar title="" :border-bottom="false" :background="background"> <u-navbar title="" :border-bottom="false" :background="background">
<template slot="right"> <template slot="right">
<view @click="searchCli" class="u-m-r-24 search"> <view @click="searchCli" class="u-m-r-24 search">
<image class="hs-img" src="../../static/images/home/search@2x.png" mode=""></image> <image
class="hs-img"
src="../../static/images/home/search@2x.png"
mode=""
></image>
</view> </view>
</template> </template>
</u-navbar> </u-navbar>
...@@ -18,26 +22,43 @@ ...@@ -18,26 +22,43 @@
</view> </view>
</view> </view>
<!-- 提示信息 --> <!-- 提示信息 -->
<view v-if="abolishIds.length > 0" class="u-m-t-20 tips background_d5aa7a u-font-28"> <view
v-if="abolishIds.length > 0"
class="u-m-t-20 tips background_d5aa7a u-font-28"
>
<view> <view>
{{ abolishIds.length }}个委托单 {{ abolishIds.length }}个委托单
<span class="color_fff">等待确认寄样,请尽快确认!</span> <span class="color_fff">等待确认寄样,请尽快确认!</span>
</view> </view>
<view class="color_fff btn u-p-l-10 u-p-r-10" @click="sampleConfirm">寄样确认</view> <view class="color_fff btn u-p-l-10 u-p-r-10" @click="sampleConfirm"
>寄样确认</view
>
</view> </view>
<!-- 具体内容 我的面料 --> <!-- 具体内容 我的面料 -->
<view class="home_con u-m-t-20"> <view class="home_con u-m-t-20">
<view class="home_con_tit"> <view class="home_con_tit">
<view> <view>
<span class="u-font-32">我的面料</span> <span class="u-font-32">我的面料</span>
<span style="line-height: 0;" class="u-m-l-10 color_000 u-font-24">MY FABRIC</span> <span style="line-height: 0" class="u-m-l-10 color_000 u-font-24"
>MY FABRIC</span
>
</view> </view>
<view class="u-font-24 color_d5aa7a" @click="seeFabric">查看更多</view> <view class="u-font-24 color_d5aa7a" @click="seeFabric">查看更多</view>
</view> </view>
<view class="home_con_fabric"> <view class="home_con_fabric">
<view class="home_con_content u-m-t-24" @click="detailFabric(item)" v-for="item in fiabricList"> <view
<image class="hs-img" src="../../static/images/home/1@2x.png" mode=""></image> class="home_con_content u-m-t-24"
<view class="home_con_content_font ov_hiden">{{ item.materialName }}</view> @click="detailFabric(item)"
v-for="item in fiabricList"
>
<image
class="hs-img"
src="../../static/images/home/1@2x.png"
mode=""
></image>
<view class="home_con_content_font ov_hiden">{{
item.materialName
}}</view>
</view> </view>
</view> </view>
</view> </view>
...@@ -51,23 +72,47 @@ ...@@ -51,23 +72,47 @@
<!-- <view class="u-font-24 color_d5aa7a">查看更多</view>--> <!-- <view class="u-font-24 color_d5aa7a">查看更多</view>-->
</view> </view>
<view class="home_con_order"> <view class="home_con_order">
<view class="u-p-t-20 u-p-b-20 "> <view class="u-p-t-20 u-p-b-20">
<u-search placeholder="请输入客户名称" v-model="keyWord" border-color="#e1e1e1" height="76" <u-search
@search="searchPotentialCustomers" bg-color="#fff" :show-action="false"></u-search> placeholder="请输入客户名称"
v-model="keyWord"
border-color="#e1e1e1"
height="76"
@search="searchPotentialCustomers"
bg-color="#fff"
:show-action="false"
></u-search>
</view> </view>
<view class="item item--round" v-for="(item) in list" @click="$Router.push({ <view
class="item item--round"
v-for="item in list"
@click="
$Router.push({
path: '/pages/order/item', path: '/pages/order/item',
query:{ query: {
id: item.enterpriseId id: item.enterpriseId,
} },
})"> })
"
>
<view class="u-font-32 u-m-b-8 u-line-1">{{ item.fullName }}</view> <view class="u-font-32 u-m-b-8 u-line-1">{{ item.fullName }}</view>
<view class="u-font-24">更新时间:{{ item.createTime }}</view> <view class="u-font-24">更新时间:{{ item.createTime }}</view>
</view> </view>
<!-- 加载更多 --> <!-- 加载更多 -->
<u-loadmore v-if="!isEmpty" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" /> <u-loadmore
v-if="!isEmpty"
height="80rpx"
:status="loadStatus"
icon-type="flower"
color="#ccc"
/>
<!-- 缺省页 --> <!-- 缺省页 -->
<hs-empty v-if="isEmpty" tipText="没有数据" marginTop="100rpx" :image="emptyImage"></hs-empty> <hs-empty
v-if="isEmpty"
tipText="没有数据"
marginTop="100rpx"
:image="emptyImage"
></hs-empty>
</view> </view>
</view> </view>
...@@ -75,37 +120,38 @@ ...@@ -75,37 +120,38 @@
</view> </view>
</template> </template>
<script> <script>
import HsTabBar from "../../components/hs-tab-bar/hs-tab-bar"; import HsTabBar from "../../components/hs-tab-bar/hs-tab-bar";
export default { export default {
components: { components: {
HsTabBar HsTabBar,
}, },
data() { data() {
return { return {
emptyImage: require("@/static/images/components/empty/empty.png"), emptyImage: require("@/static/images/components/empty/empty.png"),
background: { background: {
backgroundColor: 'rgba(245,245,245,0)' backgroundColor: "rgba(245,245,245,0)",
}, },
quantityNum: 0, quantityNum: 0,
exceptionNum: 0, exceptionNum: 0,
abolishIds: [], abolishIds: [],
// 我的面料 // 我的面料
fiabricList: [], fiabricList: [],
buts: [{ buts: [
name: '面料建模', {
img: '../../static/images/home/fabricModeling@2x.png', name: "面料建模",
url: '/pages/fabricModeling/modelingOrder' img: "../../static/images/home/fabricModeling@2x.png",
url: "/pages/fabricModeling/modelingOrder",
}, },
{ {
name: '搜款', name: "搜款",
img: '../../static/images/home/styleEntrustment@2x.png', img: "../../static/images/home/styleEntrustment@2x.png",
url: '/pages/material/list' url: "/pages/material/list",
}, },
{ {
name: '上架管理', name: "上架管理",
img: '../../static/images/home/styleManageme@2x.png', img: "../../static/images/home/styleManageme@2x.png",
url: '/pages/material/entrustManagement' url: "/pages/material/entrustManagement",
} },
// TODO 旧版本 可能以后会用到 // TODO 旧版本 可能以后会用到
// { // {
// name: '面料建模', // name: '面料建模',
...@@ -129,19 +175,19 @@ ...@@ -129,19 +175,19 @@
// } // }
], ],
keyWord: '', keyWord: "",
loadStatus: 'loadmore', loadStatus: "loadmore",
pageOptions: { pageOptions: {
current: 1, current: 1,
size: 10, size: 10,
}, },
list: [] list: [],
}; };
}, },
computed: { computed: {
isEmpty() { isEmpty() {
return this.list.length === 0 return this.list.length === 0;
} },
}, },
onLoad() { onLoad() {
// this.toBeSelectedQuantity(); // this.toBeSelectedQuantity();
...@@ -154,16 +200,16 @@ ...@@ -154,16 +200,16 @@
onPageScroll(object) { onPageScroll(object) {
let height = 486 / 2; let height = 486 / 2;
if (object.scrollTop >= height) { if (object.scrollTop >= height) {
this.background.backgroundColor = 'rgba(245,245,245,1)'; this.background.backgroundColor = "rgba(245,245,245,1)";
} else { } else {
this.background.backgroundColor = 'rgba(245,245,245,0)'; this.background.backgroundColor = "rgba(245,245,245,0)";
} }
}, },
methods: { methods: {
pay() { pay() {
this.$Router.push({ this.$Router.push({
path: '/pages/webview/index' path: "/pages/webview/index",
}) });
}, },
searchPotentialCustomers() { searchPotentialCustomers() {
this.pageOptions = { this.pageOptions = {
...@@ -174,28 +220,25 @@ ...@@ -174,28 +220,25 @@
}, },
// 潜在客户 // 潜在客户
potentialCustomersPage() { potentialCustomersPage() {
this.loadStatus = 'loading'; this.loadStatus = "loading";
this.$http("stylelibraryorder.potentialCustomersPage", { this.$http("stylelibraryorder.potentialCustomersPage", {
...this.pageOptions, ...this.pageOptions,
customerName: this.keyWord, customerName: this.keyWord,
status: 0 status: 0,
}) }).then((res) => {
.then(res => { let { code, data } = res;
let {
code,
data
} = res;
if (code === 200) { if (code === 200) {
if (Object.keys(data).length > 0) { if (Object.keys(data).length > 0) {
this.list = data.records; this.list = data.records;
this.pageOptions.pages = data.total; this.pageOptions.pages = data.total;
this.loadStatus = this.list.length < data.total ? 'loadmore' : 'nomore'; this.loadStatus =
this.list.length < data.total ? "loadmore" : "nomore";
} else { } else {
this.list = [] this.list = [];
this.loadStatus = 'nomore'; this.loadStatus = "nomore";
} }
} }
}) });
}, },
// 触底加载更多 // 触底加载更多
onReachBottom() { onReachBottom() {
...@@ -206,11 +249,8 @@ ...@@ -206,11 +249,8 @@
}, },
// 选款总数 // 选款总数
toBeSelectedQuantity() { toBeSelectedQuantity() {
this.$http('orderTicket.toBeSelectedQuantity', {}).then(res => { this.$http("orderTicket.toBeSelectedQuantity", {}).then((res) => {
let { let { code, data } = res;
code,
data
} = res;
if (code == 200) { if (code == 200) {
this.quantityNum = data; this.quantityNum = data;
} }
...@@ -218,11 +258,8 @@ ...@@ -218,11 +258,8 @@
}, },
// 异常总数 // 异常总数
orderTicketExceptionNum() { orderTicketExceptionNum() {
this.$http('orderTicket.orderTicketExceptionNum', {}).then(res => { this.$http("orderTicket.orderTicketExceptionNum", {}).then((res) => {
let { let { code, data } = res;
code,
data
} = res;
if (code == 200) { if (code == 200) {
this.exceptionNum = data; this.exceptionNum = data;
} }
...@@ -230,11 +267,8 @@ ...@@ -230,11 +267,8 @@
}, },
// 寄样单总数 // 寄样单总数
noSampleOrder() { noSampleOrder() {
this.$http('orderTicket.noSampleOrder', {}).then(res => { this.$http("orderTicket.noSampleOrder", {}).then((res) => {
let { let { code, data } = res;
code,
data
} = res;
if (code == 200) { if (code == 200) {
this.abolishIds = data; this.abolishIds = data;
} }
...@@ -242,15 +276,12 @@ ...@@ -242,15 +276,12 @@
}, },
// 我的面料 // 我的面料
materialList() { materialList() {
this.$http('orderTicket.materialList', { this.$http("orderTicket.materialList", {
size: 4, size: 4,
materialCode: '', materialCode: "",
materialName: '' materialName: "",
}).then(res => { }).then((res) => {
let { let { code, data } = res;
code,
data
} = res;
if (code == 200) { if (code == 200) {
this.fiabricList = data.data; this.fiabricList = data.data;
} }
...@@ -258,52 +289,54 @@ ...@@ -258,52 +289,54 @@
}, },
searchCli() { searchCli() {
// 搜索面料===1 搜索建模===2 // 搜索面料===1 搜索建模===2
this.$Router.push('/pages/home/search'); this.$Router.push("/pages/home/search");
}, },
seeFabric() { seeFabric() {
this.$Router.push('/pages/home/fabricList'); this.$Router.push("/pages/home/fabricList");
}, },
detailFabric(data) { detailFabric(data) {
this.$Router.push('/pages/home/fabricDetails?id=' + data.id); this.$Router.push("/pages/home/fabricDetails?id=" + data.id);
}, },
sampleConfirm() { sampleConfirm() {
this.$Router.push('/pages/home/sampleConfirmation?abolishIds=' + this.abolishIds); this.$Router.push(
"/pages/home/sampleConfirmation?abolishIds=" + this.abolishIds
);
}, },
goCli(url) { goCli(url) {
if (url) { if (url) {
this.$Router.push(url); this.$Router.push(url);
} else { } else {
uni.showToast({ uni.showToast({
title: '该功能正在开发中...', title: "该功能正在开发中...",
icon: 'none' icon: "none",
}) });
}
}
} }
}; },
},
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.item--round { .item--round {
border-radius: 8rpx; border-radius: 8rpx;
} }
.item { .item {
padding: 36rpx 30px; padding: 36rpx 30px;
height: 160rpx; height: 160rpx;
background: url(~@/static/images/home/exhibition.png) no-repeat; background: url(~@/static/images/home/exhibition.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
margin-bottom: 20rpx; margin-bottom: 20rpx;
color: #fff; color: #fff;
} }
.back_img { .back_img {
height: 486rpx; height: 486rpx;
width: 100%; width: 100%;
background: url(~@/static/images/home/exhibition.png) no-repeat; background: url(~@/static/images/home/exhibition.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }
.home_top { .home_top {
position: relative; position: relative;
width: 100%; width: 100%;
height: 486rpx; height: 486rpx;
...@@ -322,22 +355,22 @@ ...@@ -322,22 +355,22 @@
height: 32rpx; height: 32rpx;
} }
} }
} }
.search { .search {
width: 60rpx; width: 60rpx;
height: 60rpx; height: 60rpx;
} }
.tips { .tips {
display: flex; display: flex;
height: 80rpx; height: 80rpx;
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
padding: 0 20rpx; padding: 0 20rpx;
} }
.home_btn { .home_btn {
width: 100%; width: 100%;
height: 180rpx; height: 180rpx;
display: flex; display: flex;
...@@ -345,9 +378,9 @@ ...@@ -345,9 +378,9 @@
align-items: center; align-items: center;
text-align: center; text-align: center;
background: #fff; background: #fff;
} }
.home_con { .home_con {
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
padding: 30rpx; padding: 30rpx;
...@@ -371,9 +404,9 @@ ...@@ -371,9 +404,9 @@
// flex-wrap: wrap; // flex-wrap: wrap;
// justify-content: space-between; // justify-content: space-between;
} }
} }
.home_con_content { .home_con_content {
position: relative; position: relative;
width: 48%; width: 48%;
height: 160rpx; height: 160rpx;
...@@ -391,9 +424,9 @@ ...@@ -391,9 +424,9 @@
padding: 0 10rpx; padding: 0 10rpx;
background: rgba(255, 255, 255, 0.8); background: rgba(255, 255, 255, 0.8);
} }
} }
.home_con_content_order { .home_con_content_order {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
...@@ -410,38 +443,38 @@ ...@@ -410,38 +443,38 @@
height: 100%; height: 100%;
background: rgba(172, 166, 166, 0.5); background: rgba(172, 166, 166, 0.5);
} }
} }
.ov_hiden { .ov_hiden {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
.btn { .btn {
line-height: 50rpx; line-height: 50rpx;
text-align: center; text-align: center;
height: 50rpx; height: 50rpx;
border: 1rpx solid #fff; border: 1rpx solid #fff;
} }
.color_000 { .color_000 {
color: rgba(0, 0, 0, 0.2); color: rgba(0, 0, 0, 0.2);
} }
.color_d5aa7a { .color_d5aa7a {
color: #d5aa7a; color: #d5aa7a;
} }
.color_dda973 { .color_dda973 {
color: #dda973; color: #dda973;
} }
.color_fff { .color_fff {
color: #fff; color: #fff;
} }
.background_d5aa7a { .background_d5aa7a {
background: #d5aa7a; background: #d5aa7a;
} }
</style> </style>
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