Commit 3c02c1c7 authored by youjie's avatar youjie

no message

parent ce3547ac
......@@ -25,7 +25,7 @@
</view>
</view>
</view>
<view class="flex">
<view class="setComments-source flex">
<text>来源: 5555</text>
<view>时间:2022-05-30</view>
</view>
......@@ -111,6 +111,10 @@
};
</script>
<style scoped>
.setComments-source{
font-size: 20rpx;
color: ;
}
.point{
width: 8rpx;
height: 8rpx;
......
<template>
<view class="setComments-index-box">
<navbar class="navbarSticky" bg="#F6F6F6">
<view class="setComments-index-header-box flex">
<van-icon class="setComments-index-header-left" name="arrow-left" @click="back"/>
<text class="setComments-index-header-title">设置评语</text>
</view>
</navbar>
<view class="setComments-index-content">
<view>
<view>
</view>
<view>
<view>
<text>自定义评价</text>
<view>从自动评价规则进入修改</view>
</view>
<view>
<text>自动评价规则</text>
</view>
</view>
</view>
<setComments></setComments>
</view>
</view>
</template>
<script>
import setComments from '@/components/setComments/setComments'
import {
reactive,
toRefs,
onMounted,
getCurrentInstance,
inject
} from "vue";
import navbar from '../../components/navbar.vue'
export default {
props: {
},
components: {
navbar,
setComments
},
setup() {
let {
proxy
} = getCurrentInstance();
let data = reactive({
value:1,
optionsList:[
{ text: '部分可见', value: 0 },
{ text: '可见不可见', value: 1 },
{ text: '活动商品', value: 2 },
],
radioList:[
{name:'使用默认配置',id:1,checked:true},
{name:'自定义评价',id:2}
],
checked:'1',
obj:{},
Msg: {
HomeWorkId: '',
},
showPhone: false,
showLogin: true, //多次点击
HomeWorkId:'',
jobDetails: {},
dataList:[],
pageState:'more'
});
let methods = {
back(){
uni.navigateBack({
delta: 1
})
},
radioChange (e){
console.log("打印国家名称",e.target.value)
}
}
return {
...toRefs(data),
...methods
};
},
onLoad(option) {
this.Msg.HomeWorkId = option.HomeWorkId
},
};
</script>
<style scoped>
.setComments-index-box{
background: #F6F6F6;
}
.navbarSticky {
display: sticky;
top: 0;
z-index: 9;
}
</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