diff --git a/common.scss b/common.scss
index 297eba9..b31f025 100644
--- a/common.scss
+++ b/common.scss
@@ -18,4 +18,22 @@
display:-webkit-box; //作为弹性伸缩盒子模型显示。
-webkit-box-orient:vertical; //设置伸缩盒子的子元素排列方式--从上到下垂直排列
-webkit-line-clamp:3; //显示的行
+}
+
+.auth-tag{
+ --color : red;
+ font-size: 20rpx !important;
+ padding: 2rpx 6rpx !important;
+ border-radius: 10rpx;
+ border: 1px solid var(--color);
+ color: var(--color);
+ width: fit-content;
+ font-weight: 500;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-shrink: 0;
+}
+.auth-tag.q{
+ --color : #00f;
}
\ No newline at end of file
diff --git a/components/content/contentControls.vue b/components/content/contentControls.vue
index 8818b10..4824e57 100644
--- a/components/content/contentControls.vue
+++ b/components/content/contentControls.vue
@@ -36,23 +36,22 @@
-
+
-
-
+ -->
@@ -107,6 +106,7 @@
},
],
act : 0,
+ text : '',
};
},
created() {
@@ -125,7 +125,7 @@
this.$api('infoReport', {
type : this.type,
id : this.detail.id,
- content : item.content
+ content : this.text
}, res => {
this.$refs.confirmationPopup.close()
if(res.code == 200){
@@ -150,10 +150,6 @@
})
}
})
- },
- // 分享
- share(){
-
},
// 踩
thumbDown(){
@@ -196,6 +192,15 @@
height: 100%;
padding: 20rpx;
padding-bottom: env(safe-area-inset-bottom);
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ .confirmationInput{
+ width: 80%;
+ padding: 20rpx;
+ border-radius: 50rpx;
+ background-color: #f3f3f3;
+ }
.list{
padding-bottom: env(safe-area-inset-bottom);
&>view{
diff --git a/components/post/actorList.vue b/components/post/actorList.vue
index 50c2964..358e39d 100644
--- a/components/post/actorList.vue
+++ b/components/post/actorList.vue
@@ -12,9 +12,14 @@
{{ item.name }}
-
已认证
+ -->
+
+ 已认证
diff --git a/pages/index/center.vue b/pages/index/center.vue
index 24835d6..545d3eb 100644
--- a/pages/index/center.vue
+++ b/pages/index/center.vue
@@ -113,10 +113,9 @@
tabber,
},
computed: {
- ...mapState(['userInfo']),
+ ...mapState(['userInfo', 'idCardOpenStatus']),
isNameValid() {
- console.log(this.userInfo,"this.userInfo");
- return !!this.userInfo.idCardOpen
+ return this.userInfo.idCardOpen != 0 && this.idCardOpenStatus
}
},
data() {
diff --git a/pages/publish/actorDetail.vue b/pages/publish/actorDetail.vue
index d9d8f2f..6d554a4 100644
--- a/pages/publish/actorDetail.vue
+++ b/pages/publish/actorDetail.vue
@@ -16,8 +16,18 @@
-
- {{ item.details.name }}
+
+
+ {{ item.details.name }}
+
+
+
+ 已认证
+
¥{{ item.details.money }}/天
@@ -28,7 +38,7 @@
+ v-if="item.details.phonePay != 'Y' || item.isPayPhone == 1">
联系方式:{{ item.details.phone }}
+
+ {{ item.details.isUser ? '本人发布' : '经纪人发布' }}
+
发布人:{{ item.details.userId }}
@@ -87,7 +100,7 @@
style="width: 150rpx;height: 150rpx;"
mode="">
- 请支付{{ item.details.price }}元,10小时内可查看任意联系方式
+ 请支付{{ item.details.price }}元,{{ paySeeTime }}小时内可查看当前联系方式
@@ -98,7 +111,7 @@