|
|
@@ -118,7 +118,8 @@ const tableColumns = shallowRef<Model.TableColumn[]>([
|
|
|
const onRowClick = (row: Model.QuoteGoodsListRsp) => {
|
|
|
/// 这里要去判断是否已经实名认证
|
|
|
if (userStore.hasAuth) {
|
|
|
- if (userStore.userInfo.usertype != 2 && protocolList.value.length === 0) {
|
|
|
+ const list = protocolList.value.filter(e => { return e.protocolstatus === 4 })
|
|
|
+ if (userStore.userInfo.usertype != 2 && list.length === 0) {
|
|
|
ElMessage('请前往手机App进入‘我的’-’合同签署‘功能,进行签署相应的合同!')
|
|
|
} else {
|
|
|
futuresStore.selectedGoodsId = row.refgoodsid
|