|
@@ -59,7 +59,12 @@
|
|
|
</a-collapse>
|
|
</a-collapse>
|
|
|
<Add @refresh="handleBtnAction"
|
|
<Add @refresh="handleBtnAction"
|
|
|
:tableList="tableList" />
|
|
:tableList="tableList" />
|
|
|
- <Modify />
|
|
|
|
|
|
|
+ <Modify :tableList="tableList"
|
|
|
|
|
+ @refresh="handleBtnAction"
|
|
|
|
|
+ :selectedData="moreModelData" />
|
|
|
|
|
+ <Cancel @refresh="handleBtnAction"
|
|
|
|
|
+ :selectedData="moreModelData" />
|
|
|
|
|
+ <Detail :selectedData="moreModelData" />
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -67,12 +72,13 @@
|
|
|
import { defineComponent, initData, getBtnList, contextMenu, BtnList } from '@/common/export/table';
|
|
import { defineComponent, initData, getBtnList, contextMenu, BtnList } from '@/common/export/table';
|
|
|
import filterCustomTable from '@/views/information/goods/components/filterTable/index.vue';
|
|
import filterCustomTable from '@/views/information/goods/components/filterTable/index.vue';
|
|
|
import { getLoginStatusEnumItemName } from '@/common/constants/enumsName';
|
|
import { getLoginStatusEnumItemName } from '@/common/constants/enumsName';
|
|
|
-import { ref } from 'vue';
|
|
|
|
|
import { getAccountStatus, handleModalData, handleTableList } from '../setup';
|
|
import { getAccountStatus, handleModalData, handleTableList } from '../setup';
|
|
|
import { queryTableList } from './setup';
|
|
import { queryTableList } from './setup';
|
|
|
import { getUserName } from '@/services/bus/user';
|
|
import { getUserName } from '@/services/bus/user';
|
|
|
import Add from '../../compoments/add-managers/index.vue';
|
|
import Add from '../../compoments/add-managers/index.vue';
|
|
|
import Modify from '../../compoments/modify-managers/index.vue';
|
|
import Modify from '../../compoments/modify-managers/index.vue';
|
|
|
|
|
+import Detail from '../../compoments/detail-managers/index.vue';
|
|
|
|
|
+import Cancel from '../../compoments/cancel-managers/index.vue';
|
|
|
import { ErmcpLoginUser, ErmcpLoginUserEx } from '@/services/go/ermcp/account/interface';
|
|
import { ErmcpLoginUser, ErmcpLoginUserEx } from '@/services/go/ermcp/account/interface';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
@@ -83,6 +89,8 @@ export default defineComponent({
|
|
|
filterCustomTable,
|
|
filterCustomTable,
|
|
|
Add,
|
|
Add,
|
|
|
Modify,
|
|
Modify,
|
|
|
|
|
+ Detail,
|
|
|
|
|
+ Cancel,
|
|
|
},
|
|
},
|
|
|
setup() {
|
|
setup() {
|
|
|
const { loading, tableList, queryTable } = queryTableList();
|
|
const { loading, tableList, queryTable } = queryTableList();
|