Handy_Cao 11 months ago
parent
commit
39fe58aadb
39 changed files with 512 additions and 20 deletions
  1. 17 0
      src/packages/pc/views/member/institution/broker/components/delete/index.vue
  2. 17 0
      src/packages/pc/views/member/institution/broker/components/details/index.vue
  3. 17 0
      src/packages/pc/views/member/institution/broker/components/edit/index.vue
  4. 17 0
      src/packages/pc/views/member/institution/broker/components/subinstitution/index.vue
  5. 2 2
      src/packages/pc/views/member/institution/broker/index.vue
  6. 17 0
      src/packages/pc/views/member/institution/goodscfg/components/delete/index.vue
  7. 17 0
      src/packages/pc/views/member/institution/goodscfg/components/edit/index.vue
  8. 2 2
      src/packages/pc/views/member/institution/goodscfg/index.vue
  9. 17 0
      src/packages/pc/views/member/institution/industry/components/delete/index.vue
  10. 17 0
      src/packages/pc/views/member/institution/industry/components/details/index.vue
  11. 17 0
      src/packages/pc/views/member/institution/industry/components/edit/index.vue
  12. 2 2
      src/packages/pc/views/member/institution/industry/index.vue
  13. 17 0
      src/packages/pc/views/member/institution/marketer/components/delete/index.vue
  14. 17 0
      src/packages/pc/views/member/institution/marketer/components/details/index.vue
  15. 17 0
      src/packages/pc/views/member/institution/marketer/components/edit/index.vue
  16. 2 2
      src/packages/pc/views/member/institution/marketer/index.vue
  17. 17 0
      src/packages/pc/views/member/institution/marketing/components/broker/index.vue
  18. 17 0
      src/packages/pc/views/member/institution/marketing/components/details/index.vue
  19. 17 0
      src/packages/pc/views/member/institution/marketing/components/edit/index.vue
  20. 2 2
      src/packages/pc/views/member/institution/marketing/index.vue
  21. 17 0
      src/packages/pc/views/member/institution/operation/components/delete/index.vue
  22. 17 0
      src/packages/pc/views/member/institution/operation/components/details/index.vue
  23. 17 0
      src/packages/pc/views/member/institution/operation/components/edit/index.vue
  24. 17 0
      src/packages/pc/views/member/institution/operation/components/modify/index.vue
  25. 2 2
      src/packages/pc/views/member/institution/operation/index.vue
  26. 17 0
      src/packages/pc/views/member/institution/riskcfg/components/delete/index.vue
  27. 17 0
      src/packages/pc/views/member/institution/riskcfg/components/details/index.vue
  28. 17 0
      src/packages/pc/views/member/institution/riskcfg/components/edit/index.vue
  29. 2 2
      src/packages/pc/views/member/institution/riskcfg/index.vue
  30. 17 0
      src/packages/pc/views/member/institution/role/components/details/index.vue
  31. 17 0
      src/packages/pc/views/member/institution/role/components/users/index.vue
  32. 1 1
      src/packages/pc/views/member/institution/role/index.vue
  33. 17 0
      src/packages/pc/views/member/institution/self/components/delete/index.vue
  34. 17 0
      src/packages/pc/views/member/institution/self/components/details/index.vue
  35. 17 0
      src/packages/pc/views/member/institution/self/components/edit/index.vue
  36. 2 2
      src/packages/pc/views/member/institution/self/index.vue
  37. 17 0
      src/packages/pc/views/member/institution/warehouse/components/details/index.vue
  38. 17 0
      src/packages/pc/views/member/institution/warehouse/components/edit/index.vue
  39. 2 3
      src/packages/pc/views/member/institution/warehouse/index.vue

+ 17 - 0
src/packages/pc/views/member/institution/broker/components/delete/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-经纪会员管理-删除 -->
+<template>
+    <app-drawer title="删除" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/broker/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-经纪会员管理-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/broker/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-经纪会员管理-新增/修改 -->
+<template>
+    <app-drawer title="新增/修改" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/broker/components/subinstitution/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-经纪会员管理-子机构 -->
+<template>
+    <app-drawer title="子机构" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 2
src/packages/pc/views/member/institution/broker/index.vue

@@ -6,12 +6,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_broker_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_broker_details', 'member_institution_broker_modify', 'member_institution_broker_subinstitution', 'member_institution_broker_delete'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/goodscfg/components/delete/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-商品限制设置-删除 -->
+<template>
+    <app-drawer title="删除" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/goodscfg/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-商品限制设置-修改 -->
+<template>
+    <app-drawer title="修改" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 2
src/packages/pc/views/member/institution/goodscfg/index.vue

@@ -17,12 +17,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_goodscfg_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_goodscfg_modify', 'member_institution_goodscfg_delete'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/industry/components/delete/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-产业会员管理-删除 -->
+<template>
+    <app-drawer title="删除" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/industry/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-产业会员管理-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/industry/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-产业会员管理-新增 -->
+<template>
+    <app-drawer title="新增" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 2
src/packages/pc/views/member/institution/industry/index.vue

@@ -6,12 +6,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_industry_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_industry_details', 'member_institution_industry_delete'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/marketer/components/delete/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-做市会员管理-删除 -->
+<template>
+    <app-drawer title="删除" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/marketer/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-做市会员管理-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/marketer/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-做市会员管理-新增/修改 -->
+<template>
+    <app-drawer title="新增/修改" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 2
src/packages/pc/views/member/institution/marketer/index.vue

@@ -6,12 +6,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_marketer_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_marketer_details', 'member_institution_marketer_modify', 'member_institution_marketer_delete'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/marketing/components/broker/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-营销中心管理-经济会员 -->
+<template>
+    <app-drawer title="经济会员" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/marketing/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-营销中心管理-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/marketing/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-营销中心管理-新增/修改 -->
+<template>
+    <app-drawer title="新增/修改" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 2
src/packages/pc/views/member/institution/marketing/index.vue

@@ -6,12 +6,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_marketing_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_marketing_details', 'member_institution_marketing_modify', 'member_institution_marketing_broker'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/operation/components/delete/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-运营机构管理-删除 -->
+<template>
+    <app-drawer title="删除" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/operation/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-运营机构管理-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/operation/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-运营机构管理-新增 -->
+<template>
+    <app-drawer title="新增" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/operation/components/modify/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-运营机构管理-修改 -->
+<template>
+    <app-drawer title="修改" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 2
src/packages/pc/views/member/institution/operation/index.vue

@@ -6,12 +6,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_operation_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_operation_details', 'member_institution_operation_modify', 'member_institution_operation_delete'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/riskcfg/components/delete/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-风控个性化设置-删除 -->
+<template>
+    <app-drawer title="删除" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/riskcfg/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-风控个性化设置-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/riskcfg/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-风控个性化设置-新增/修改 -->
+<template>
+    <app-drawer title="新增/修改" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 2
src/packages/pc/views/member/institution/riskcfg/index.vue

@@ -12,12 +12,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_riskcfg_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_riskcfg_details', 'member_institution_riskcfg_modify', 'member_institution_riskcfg_delete'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/role/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-系统角色管理-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/role/components/users/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-系统角色管理-用户 -->
+<template>
+    <app-drawer title="用户" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 1 - 1
src/packages/pc/views/member/institution/role/index.vue

@@ -8,7 +8,7 @@
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons()"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_role_details', 'member_institution_role_users',])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/self/components/delete/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-自营会员管理-删除 -->
+<template>
+    <app-drawer title="删除" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/self/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-自营会员管理-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/self/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-自营会员管理-修改/新增 -->
+<template>
+    <app-drawer title="修改/新增" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 2
src/packages/pc/views/member/institution/self/index.vue

@@ -6,12 +6,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_self_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_self_details', 'member_institution_self_modify', 'member_institution_self_delete'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>

+ 17 - 0
src/packages/pc/views/member/institution/warehouse/components/details/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-仓库机构管理-详情 -->
+<template>
+    <app-drawer title="详情" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 17 - 0
src/packages/pc/views/member/institution/warehouse/components/edit/index.vue

@@ -0,0 +1,17 @@
+<!-- 会员机构管理-机构管理-仓库机构管理-修改/新增 -->
+<template>
+    <app-drawer title="修改/新增" width="900" v-model:show="show" :loading="loading" :refresh="refresh">
+    </app-drawer>
+</template>
+
+<script lang="ts" setup>
+import { shallowRef, PropType, defineAsyncComponent } from 'vue'
+import { i18n } from '@/stores'
+import AppDrawer from '@pc/components/base/drawer/index.vue'
+
+const { global: { t } } = i18n
+
+const show = shallowRef(true)
+const refresh = shallowRef(false)
+const loading = shallowRef(false)
+</script>

+ 2 - 3
src/packages/pc/views/member/institution/warehouse/index.vue

@@ -1,5 +1,4 @@
 <!-- 会员机构管理-机构管理-仓库机构管理 -->
-<!-- 会员机构管理-机构管理-营销中心管理 -->
 <template>
     <app-view>
         <template #header>
@@ -7,12 +6,12 @@
         </template>
         <app-table :data="dataList" :columns="tableColumns" :loading="loading">
             <template #headerLeft>
-                <app-operation :data-list="getActionButtons(['member_institution_open_add'])"
+                <app-operation :data-list="getActionButtons(['member_institution_warehouse_add'])"
                     @click="openComponent" />
             </template>
             <!-- 操作 -->
             <template #operate="{ row }">
-                <app-operation size="small" :data-list="getActionButtons(['query_internal_liquidation_details'])"
+                <app-operation size="small" :data-list="getActionButtons(['member_institution_warehouse_details', 'member_institution_warehouse_modify'])"
                     @click="(code: string) => openComponent(code, row)" circle />
             </template>
             <template #footer>