|
@@ -31,14 +31,15 @@
|
|
|
<!-- 新增 -->
|
|
<!-- 新增 -->
|
|
|
<AddCustom @refresh="queryTable" />
|
|
<AddCustom @refresh="queryTable" />
|
|
|
<!-- 详情 -->
|
|
<!-- 详情 -->
|
|
|
- <CustomDetail :selectedRow="selectedRow"
|
|
|
|
|
- @refresh="queryTable" />
|
|
|
|
|
|
|
+ <!-- <CustomDetail :selectedRow="selectedRow"
|
|
|
|
|
+ @refresh="queryTable" /> -->
|
|
|
|
|
+ <Middle :selectedRow="selectedRow" @refresh="queryTable"/>
|
|
|
<!-- 修改 -->
|
|
<!-- 修改 -->
|
|
|
<ModifyCustom :selectedRow="selectedRow"
|
|
<ModifyCustom :selectedRow="selectedRow"
|
|
|
@refresh="queryTable" />
|
|
@refresh="queryTable" />
|
|
|
<!-- 删除 -->
|
|
<!-- 删除 -->
|
|
|
- <DeleteCustom :selectedRow="selectedRow"
|
|
|
|
|
- @refresh="queryTable" />
|
|
|
|
|
|
|
+ <!-- <DeleteCustom :selectedRow="selectedRow"
|
|
|
|
|
+ @refresh="queryTable" /> -->
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
@@ -50,6 +51,7 @@ import { filterCustomTable, CustomDetail, ModifyCustom, DisableCustom, AddCustom
|
|
|
import { queryTableList, QueryCustomInfoType } from '../index';
|
|
import { queryTableList, QueryCustomInfoType } from '../index';
|
|
|
import { getStatusName } from '@/common/constants/enumsName';
|
|
import { getStatusName } from '@/common/constants/enumsName';
|
|
|
import { getCardTypeEnumItemName } from '@/common/constants/enumsName';
|
|
import { getCardTypeEnumItemName } from '@/common/constants/enumsName';
|
|
|
|
|
+import Middle from './compoments/controlModal/index.vue';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: 'custom_info_unsubmit',
|
|
name: 'custom_info_unsubmit',
|
|
@@ -62,6 +64,7 @@ export default defineComponent({
|
|
|
AddCustom,
|
|
AddCustom,
|
|
|
DeleteCustom,
|
|
DeleteCustom,
|
|
|
BtnList,
|
|
BtnList,
|
|
|
|
|
+ Middle,
|
|
|
},
|
|
},
|
|
|
setup() {
|
|
setup() {
|
|
|
// 表头数据
|
|
// 表头数据
|
|
@@ -108,14 +111,13 @@ export default defineComponent({
|
|
|
|
|
|
|
|
<style lang="less">
|
|
<style lang="less">
|
|
|
.custom_info_unsubmit {
|
|
.custom_info_unsubmit {
|
|
|
- .topTable {
|
|
|
|
|
- .operBtn.ant-btn {
|
|
|
|
|
- margin-top: 0;
|
|
|
|
|
- margin-bottom: 0;
|
|
|
|
|
- height: 26px;
|
|
|
|
|
- line-height: 26px;
|
|
|
|
|
-
|
|
|
|
|
|
|
+ .topTable {
|
|
|
|
|
+ .operBtn.ant-btn {
|
|
|
|
|
+ margin-top: 0;
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+ height: 26px;
|
|
|
|
|
+ line-height: 26px;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
- }
|
|
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|