IOS_Boss/IOS_study/Profile/PLJobView+RevUI.swift
2025-07-27 12:33:06 +08:00

24 lines
480 B
Swift

//
// PLJobView+RevUI.swift
// IOS_study
//
// Created by CC-star on 2025/7/25.
//
import SwiftUI
extension PLJobView {
var goRevireBtn: some View {
Button {
if authVM.isLogin {
reviewVM.drafReview = Review()
showPostReview = true
} else {
hud.show("请先登录")
}
} label: {
Text("对这个工作有看法?去点评").appleStyle()
}.buttonStyle(.borderless).cellStyle()
}
}