增加评分

parent 477407cf
@font-face { @font-face {
font-family: "iconfont"; /* Project id 4633414 */ font-family: "iconfont"; /* Project id 4633414 */
src: url('//at.alicdn.com/t/c/font_4633414_xeh7f81eleh.woff2?t=1722311537248') format('woff2'), src: url('//at.alicdn.com/t/c/font_4633414_3k0ybwfc2l1.woff2?t=1722483682262') format('woff2'),
url('//at.alicdn.com/t/c/font_4633414_xeh7f81eleh.woff?t=1722311537248') format('woff'), url('//at.alicdn.com/t/c/font_4633414_3k0ybwfc2l1.woff?t=1722483682262') format('woff'),
url('//at.alicdn.com/t/c/font_4633414_xeh7f81eleh.ttf?t=1722311537248') format('truetype'); url('//at.alicdn.com/t/c/font_4633414_3k0ybwfc2l1.ttf?t=1722483682262') format('truetype');
} }
.iconfont { .iconfont {
...@@ -13,6 +13,18 @@ ...@@ -13,6 +13,18 @@
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
.icon-dianzan:before {
content: "\e602";
}
.icon-dianzan_kuai:before {
content: "\ec8c";
}
.icon-xiai:before {
content: "\e601";
}
.icon-tongzhi:before { .icon-tongzhi:before {
content: "\e60d"; content: "\e60d";
} }
......
...@@ -81,6 +81,13 @@ ...@@ -81,6 +81,13 @@
"navigationBarTitleText": "支付成功" "navigationBarTitleText": "支付成功"
} }
} }
,
{
"path": "pages/order/remark",
"style": {
"navigationBarTitleText": "美食评论"
}
}
], ],
"globalStyle": { "globalStyle": {
"navigationStyle": "custom" "navigationStyle": "custom"
......
...@@ -37,6 +37,7 @@ const handleBack = () => { ...@@ -37,6 +37,7 @@ const handleBack = () => {
position: fixed; position: fixed;
z-index: 999; z-index: 999;
width: 375 * 2rpx; width: 375 * 2rpx;
top: 0;
.headbox { .headbox {
position: relative; position: relative;
......
<template>
<view class="container">
<Header title="评论"></Header>
<view class="content">
<view class="remake">
<wd-row>
<wd-col :span="24" custom-class="text">
<h5>老凯里酸汤鱼(花果园M区店)</h5>
</wd-col>
</wd-row>
<wd-row>
<wd-col :span="16">
<span>评分:</span>
<wd-rate v-model="value" />
</wd-col>
<wd-col :span="8"></wd-col>
</wd-row>
</view>
<wd-button type="error" block>发布</wd-button>
</view>
</view>
</template>
<script setup>
import Header from './components/Header/index.vue';
</script>
<style lang="scss" scoped>
.container {
width: 100%;
height: auto;
background: #f4f4f4;
margin-top: 88rpx;
min-height: calc(100vh - 88rpx);
display: flex;
flex-direction: column;
}
.content {
margin: 0 20rpx;
.remake {
width: auto;
height: auto;
background: #ffffff;
border-radius: 16rpx;
margin-top: 25rpx;
margin-bottom: 172rpx;
padding: 20rpx;
.text h5 {
font-weight: 400;
font-size: 32rpx;
color: #333333;
line-height: 32rpx;
text-align: left;
}
}
}
</style>
This source diff could not be displayed because it is too large. You can view the blob instead.
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