|
|
@@ -22,6 +22,12 @@
|
|
|
<AddSpotContract />
|
|
|
<!-- 现货合同: 详情 -->
|
|
|
<SpotContractDeatil />
|
|
|
+ <!-- 现货合同: 修改 -->
|
|
|
+ <ModifySpotContract />
|
|
|
+ <!-- 现货合同: 删除 -->
|
|
|
+ <DeleteSpotContract />
|
|
|
+ <!-- 现货合同: 重新提交 -->
|
|
|
+ <ResubmitSpotContract />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -36,6 +42,9 @@ import { MenuItem } from '@/common/components/contextMenu/interface';
|
|
|
import AddSpotContract from '@/views/information/spot-contract/components/add/index.vue';
|
|
|
import { detailButton, permissionButton, handlePermission } from '@/common/setup/buttonPermission/index';
|
|
|
import SpotContractDeatil from '@/views/information/spot-contract/components/detail/index.vue';
|
|
|
+import ModifySpotContract from '@/views/information/spot-contract/components/modify/index.vue';
|
|
|
+import DeleteSpotContract from '@/views/information/spot-contract/components/delete/index.vue';
|
|
|
+import ResubmitSpotContract from '@/views/information/spot-contract/components/resubmit/index.vue';
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'spot-contract-not-commit',
|
|
|
@@ -44,6 +53,9 @@ export default defineComponent({
|
|
|
contextMenu,
|
|
|
AddSpotContract,
|
|
|
SpotContractDeatil,
|
|
|
+ ModifySpotContract,
|
|
|
+ DeleteSpotContract,
|
|
|
+ ResubmitSpotContract,
|
|
|
},
|
|
|
setup() {
|
|
|
const contextMenuList = ref<MenuItem[]>([]);
|