|
@@ -1,11 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
-<<<<<<< HEAD
|
|
|
|
|
<!-- 修改客户资料 -->
|
|
<!-- 修改客户资料 -->
|
|
|
<a-modal class="commonModal modify-custom"
|
|
<a-modal class="commonModal modify-custom"
|
|
|
-=======
|
|
|
|
|
- <!-- 修改客户资料-->
|
|
|
|
|
- <a-modal class="modify-custom"
|
|
|
|
|
->>>>>>> 6ee5515fe134a733dad62c180d2dd58b4398ff60
|
|
|
|
|
title="修改客户资料"
|
|
title="修改客户资料"
|
|
|
v-model:visible="visible"
|
|
v-model:visible="visible"
|
|
|
@cancel="cancel"
|
|
@cancel="cancel"
|
|
@@ -16,7 +11,6 @@
|
|
|
:loading="loading"
|
|
:loading="loading"
|
|
|
@click="submit">完成</a-button>
|
|
@click="submit">完成</a-button>
|
|
|
</template>
|
|
</template>
|
|
|
-<<<<<<< HEAD
|
|
|
|
|
<a-form class="inlineForm"
|
|
<a-form class="inlineForm"
|
|
|
:form="form"
|
|
:form="form"
|
|
|
@submit="handleSearch">
|
|
@submit="handleSearch">
|
|
@@ -187,28 +181,20 @@
|
|
|
</a-col>
|
|
</a-col>
|
|
|
</a-row>
|
|
</a-row>
|
|
|
</a-form>
|
|
</a-form>
|
|
|
-=======
|
|
|
|
|
->>>>>>> 6ee5515fe134a733dad62c180d2dd58b4398ff60
|
|
|
|
|
</a-modal>
|
|
</a-modal>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
|
import { defineComponent, ref } from 'vue';
|
|
import { defineComponent, ref } from 'vue';
|
|
|
import { closeModal } from '@/common/setup/modal/index';
|
|
import { closeModal } from '@/common/setup/modal/index';
|
|
|
-<<<<<<< HEAD
|
|
|
|
|
import { initData } from '@/common/methods/index';
|
|
import { initData } from '@/common/methods/index';
|
|
|
-=======
|
|
|
|
|
->>>>>>> 6ee5515fe134a733dad62c180d2dd58b4398ff60
|
|
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: 'modify-custom',
|
|
name: 'modify-custom',
|
|
|
components: {},
|
|
components: {},
|
|
|
setup() {
|
|
setup() {
|
|
|
-<<<<<<< HEAD
|
|
|
|
|
- const { visible, cancel } = closeModal('modifyCustomInfo');
|
|
|
|
|
-=======
|
|
|
|
|
|
|
+ // const { visible, cancel } = closeModal('modifyCustomInfo');
|
|
|
const { visible, cancel } = closeModal('custom_info_btn_modify');
|
|
const { visible, cancel } = closeModal('custom_info_btn_modify');
|
|
|
->>>>>>> 6ee5515fe134a733dad62c180d2dd58b4398ff60
|
|
|
|
|
const loading = ref<boolean>(false);
|
|
const loading = ref<boolean>(false);
|
|
|
function submit() {
|
|
function submit() {
|
|
|
loading.value = true;
|
|
loading.value = true;
|
|
@@ -217,10 +203,7 @@ export default defineComponent({
|
|
|
cancel();
|
|
cancel();
|
|
|
}, 2000);
|
|
}, 2000);
|
|
|
}
|
|
}
|
|
|
-<<<<<<< HEAD
|
|
|
|
|
initData(() => {});
|
|
initData(() => {});
|
|
|
-=======
|
|
|
|
|
->>>>>>> 6ee5515fe134a733dad62c180d2dd58b4398ff60
|
|
|
|
|
return {
|
|
return {
|
|
|
visible,
|
|
visible,
|
|
|
cancel,
|
|
cancel,
|
|
@@ -233,7 +216,6 @@ export default defineComponent({
|
|
|
|
|
|
|
|
<style lang="less">
|
|
<style lang="less">
|
|
|
.modify-custom {
|
|
.modify-custom {
|
|
|
-<<<<<<< HEAD
|
|
|
|
|
.upload {
|
|
.upload {
|
|
|
display: inline-flex;
|
|
display: inline-flex;
|
|
|
.ant-btn.uploadBtn {
|
|
.ant-btn.uploadBtn {
|
|
@@ -258,8 +240,6 @@ export default defineComponent({
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-=======
|
|
|
|
|
->>>>>>> 6ee5515fe134a733dad62c180d2dd58b4398ff60
|
|
|
|
|
}
|
|
}
|
|
|
</style
|
|
</style
|
|
|
>;
|
|
>;
|