|
@@ -37,7 +37,6 @@ import { useLoginStore, useFuturesStore } from '@/stores'
|
|
|
import AppTable from '@pc/components/base/table/index.vue'
|
|
import AppTable from '@pc/components/base/table/index.vue'
|
|
|
import eventBus from '@/services/bus'
|
|
import eventBus from '@/services/bus'
|
|
|
import { getUserId } from '@/services/methods/user'
|
|
import { getUserId } from '@/services/methods/user'
|
|
|
-import { ElMessage } from 'element-plus'
|
|
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
const props = defineProps({
|
|
|
goodsId: {
|
|
goodsId: {
|
|
@@ -52,6 +51,7 @@ const props = defineProps({
|
|
|
|
|
|
|
|
const componentMap = new Map<string, unknown>([
|
|
const componentMap = new Map<string, unknown>([
|
|
|
['delisting', defineAsyncComponent(() => import('./delisting/index.vue'))], // 摘牌
|
|
['delisting', defineAsyncComponent(() => import('./delisting/index.vue'))], // 摘牌
|
|
|
|
|
+ ['protocol', defineAsyncComponent(() => import('./protocol/index.vue'))], // 摘牌
|
|
|
])
|
|
])
|
|
|
|
|
|
|
|
const loginStore = useLoginStore()
|
|
const loginStore = useLoginStore()
|
|
@@ -106,7 +106,7 @@ const onDelisting = (row: Model.TjmdTradeOrderDetailRsp) => {
|
|
|
case 1: /// 未签署
|
|
case 1: /// 未签署
|
|
|
/// 传对应的机构 ID
|
|
/// 传对应的机构 ID
|
|
|
/// 进行下一步
|
|
/// 进行下一步
|
|
|
- ElMessage('请登录手机 App进行合同签署!')
|
|
|
|
|
|
|
+ openComponent('protocol')
|
|
|
break;
|
|
break;
|
|
|
default: /// 其他状态
|
|
default: /// 其他状态
|
|
|
break;
|
|
break;
|