yujialong 7 months ago
parent 058dbd96f6
commit 49bf13759d
  1. 2
      src/views/product/afterLoan/1029/Detail.vue
  2. 2
      src/views/product/afterLoan/1030/Detail.vue
  3. 2
      src/views/product/afterLoan/1031/Detail.vue
  4. 2
      src/views/product/afterLoan/1032/Detail.vue
  5. 2
      src/views/product/afterLoan/1033/Detail.vue
  6. 2
      src/views/product/interestRate/772/Detail.vue
  7. 2
      src/views/product/interestRate/935/Detail.vue
  8. 2
      src/views/product/interestRate/936/Detail.vue
  9. 4
      src/views/product/strategy/150/Detail.vue
  10. 5
      src/views/product/strategy/150/Index.vue
  11. 2
      src/views/product/strategy/151/Detail.vue
  12. 2
      src/views/product/strategy/152/Detail.vue
  13. 2
      src/views/product/strategy/153/Detail.vue
  14. 2
      src/views/product/strategy/154/Detail.vue
  15. 2
      src/views/product/strategy/155/Detail.vue
  16. 2
      src/views/product/strategy/156/Detail.vue
  17. 2
      src/views/product/strategy/512/Detail.vue
  18. 2
      src/views/product/strategy/513/Detail.vue

@ -123,7 +123,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { strategyId, strategyName } = toRefs(props.row);
const form = ref<Record<string, any>[]>([]);
const info = ref<Record<string, any>[]>([]);

@ -107,7 +107,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { strategyId, strategyName } = toRefs(props.row);
const form = ref<Record<string, any>[]>([]);
const info = ref<Record<string, any>[]>([]);

@ -237,7 +237,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { strategyId, strategyName } = toRefs(props.row);
const form = ref<Record<string, any>[]>([]);
const info = ref<Record<string, any>[]>([]);

@ -85,7 +85,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { strategyId, strategyName } = toRefs(props.row);
const form = ref<Record<string, any>[]>([]);
const info = ref<Record<string, any>[]>([]);

@ -106,7 +106,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { strategyId, strategyName } = toRefs(props.row);
const form = ref<Record<string, any>[]>([]);
const info = ref<Record<string, any>[]>([]);

@ -115,7 +115,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { id, modelName } = toRefs(props.row);
const form = ref<Record<string, any>>({
...getIds(),

@ -115,7 +115,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { id, modelName } = toRefs(props.row);
let loading = null;
const form = ref<Record<string, any>>({

@ -124,7 +124,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { id, modelName } = toRefs(props.row);
let loading = null;
const form = ref<Record<string, any>>({

@ -158,7 +158,7 @@
</template>
<script setup lang="ts">
import { ref, defineAsyncComponent, onMounted, toRefs, inject } from 'vue';
import { ref, defineAsyncComponent, onMounted, toRefs } from 'vue';
import { ElMessage } from 'element-plus';
import { accessStrategyGovernmentBlacklistFind, accessStrategyGovernmentBlacklistSave, isTheStrategyRelatedToTheProduct } from '@/api/model';
import { getProcessInformationBasedOnRoles, addOperation } from '@/api/judgment';
@ -169,12 +169,12 @@ import { getStat } from '@/store/useProduct';
const Confirm = defineAsyncComponent(() => import('@/components/StrategyConfirm.vue'));
const emit = defineEmits(['close']);
const props = defineProps({
disabled: { type: Boolean, default: false },
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const form = ref<Record<string, any>[]>([]);
const { strategyId, strategyName } = toRefs(props.row);
const info = ref<Record<string, any>[]>([]);

@ -162,9 +162,6 @@ const toDetail = async (row: Record<string, any>, detail = false) => {
//
const closeDrawer = (refresh?: number) => {
visible.value = false;
// refresh && initList();
if (refresh) {
initList();
}
refresh && initList();
};
</script>

@ -154,7 +154,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const form = ref<Record<string, any>[]>([]);
const { strategyId, strategyName } = toRefs(props.row);
const info = ref<Record<string, any>[]>([]);

@ -200,7 +200,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const form = ref<Record<string, any>[]>([]);
const { strategyId, strategyName } = toRefs(props.row);
const info = ref<Record<string, any>[]>([]);

@ -171,7 +171,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const form = ref<Record<string, any>[]>([]);
const { strategyId, strategyName } = toRefs(props.row);
const info = ref<Record<string, any>[]>([]);

@ -314,7 +314,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const form = ref<Record<string, any>[]>([]);
const { strategyId, strategyName } = toRefs(props.row);
const info = ref<Record<string, any>[]>([]);

@ -164,7 +164,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const form = ref<Record<string, any>[]>([]);
const { strategyId, strategyName } = toRefs(props.row);
const info = ref<Record<string, any>[]>([]);

@ -108,7 +108,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const form = ref<Record<string, any>[]>([]);
const { strategyId, strategyName } = toRefs(props.row);
const info = ref<Record<string, any>[]>([]);

@ -89,7 +89,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { id } = toRefs(props.row);
const list = ref<Record<string, any>[]>([]);

@ -150,7 +150,7 @@ const props = defineProps({
row: { type: Object },
});
const emit = defineEmits(['clsoe']);
const emit = defineEmits(['close']);
const { id } = toRefs(props.row);
const list = ref<Record<string, any>[]>([]);

Loading…
Cancel
Save