|
|
|
@ -214,12 +214,14 @@ import {
|
|
|
|
|
defineComponent, |
|
|
|
|
computed, |
|
|
|
|
} from 'vue'; |
|
|
|
|
import { debounce, deepClone } from '@/utils/util'; |
|
|
|
|
import { debounce, deepClone, getObjType } from '@/utils/util'; |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import { $_priceTemplate, $_putpriceTemplate } from '@/api/financialsector/index'; //价格模板 |
|
|
|
|
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js'; |
|
|
|
|
import { useRoute } from 'vue-router'; |
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
|
const $useStore = useStore(); |
|
|
|
|
const $route = useRoute(); //获取地址栏参数 |
|
|
|
|
const emit = defineEmits(['request-data']); |
|
|
|
|
defineComponent({ |
|
|
|
@ -722,6 +724,7 @@ const handleSubmit = async () => {
|
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
$useStore.commit('EDIT_REFRESHITEM', { title: 'CustomerBaseprice', status: true }); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
@ -736,6 +739,7 @@ const handleSubmit = async () => {
|
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
$useStore.commit('EDIT_REFRESHITEM', { title: 'CustomerBaseprice', status: true }); |
|
|
|
|
emit('request-data', res.data.data); //把获取到的数据传递给父页面 |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|