|
|
|
@ -171,13 +171,21 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { ref, reactive, getCurrentInstance, nextTick } from 'vue'; |
|
|
|
|
import { ref, reactive, getCurrentInstance, nextTick,defineEmits, defineComponent } from 'vue'; |
|
|
|
|
import { debounce, deepClone } from '@/utils/util'; |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
|
|
|
|
|
import { $_priceTemplate } from '@/api/financialsector/index'; //价格模板 |
|
|
|
|
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js'; |
|
|
|
|
|
|
|
|
|
const emit = defineEmits(['request-data']); |
|
|
|
|
defineComponent({ |
|
|
|
|
emits: ['request-data'], |
|
|
|
|
}); |
|
|
|
|
// 接收参数 |
|
|
|
|
const props = defineProps({ |
|
|
|
|
templateData: Object, |
|
|
|
|
}); |
|
|
|
|
console.log(props, '来自父页面参数'); |
|
|
|
|
const instance = getCurrentInstance(); |
|
|
|
|
|
|
|
|
|
// 表单实例 |
|
|
|
@ -274,15 +282,15 @@ const details = reactive({
|
|
|
|
|
/** 计价方式 */ |
|
|
|
|
trunklinePricingType: [], |
|
|
|
|
/** 是否统一区域计费 */ |
|
|
|
|
trunklineIsUnifyAreaBill: '1', |
|
|
|
|
trunklineIsUnifyAreaBill: '0', |
|
|
|
|
/** 是否区分品类 */ |
|
|
|
|
trunklineIsByCategory: '1', |
|
|
|
|
trunklineIsByCategory: '0', |
|
|
|
|
/** 是否特殊配置 */ |
|
|
|
|
trunklineIsPeculiarSetup: '1', |
|
|
|
|
trunklineIsPeculiarSetup: '0', |
|
|
|
|
/** 是否最低计费 */ |
|
|
|
|
trunklineIsMinCost: '1', |
|
|
|
|
trunklineIsMinCost: '0', |
|
|
|
|
/** 最低计费类型 */ |
|
|
|
|
trunklineMinCostType: '0', |
|
|
|
|
trunklineMinCostType: '1', |
|
|
|
|
/** 计费模版详情 */ |
|
|
|
|
billTemplateDetail: [] as BillTemplateDetail[], |
|
|
|
|
}, |
|
|
|
@ -324,8 +332,11 @@ const handleTrunkLinePricingType = response => {
|
|
|
|
|
const _billTemplateDetailArr = []; |
|
|
|
|
for (let i = 0; i < details.priceMethodType.length; i++) { |
|
|
|
|
const value = details.priceMethodType[i]; |
|
|
|
|
|
|
|
|
|
_billTemplateDetailArr.push({ |
|
|
|
|
console.log(value,'value'); |
|
|
|
|
|
|
|
|
|
if(value.dictKey !='2'){ |
|
|
|
|
console.log(value,'value===='); |
|
|
|
|
_billTemplateDetailArr.push({ |
|
|
|
|
title: value.dictValue + '计费品类', |
|
|
|
|
code: value.dictKey, |
|
|
|
|
categories: [ |
|
|
|
@ -340,6 +351,8 @@ const handleTrunkLinePricingType = response => {
|
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
details.form.billTemplateDetail = _billTemplateDetailArr; |
|
|
|
@ -469,11 +482,68 @@ const resetFormData = () => {
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 提交 */ |
|
|
|
|
const handleSubmit = () => { |
|
|
|
|
const handleSubmit = async() => { |
|
|
|
|
if (details.form.trunklinePricingType.length === 0) ElMessage.error('请选择计价方式'); |
|
|
|
|
|
|
|
|
|
formRef.value.validate(async valid => { |
|
|
|
|
await emit('request-data'); //通知父页面传递数据 |
|
|
|
|
if (!valid) return; |
|
|
|
|
console.log(props, 'props'); |
|
|
|
|
if (!props.templateData.TemplateName) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请输入模板名称', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} else { |
|
|
|
|
details.form.name = props.templateData.TemplateName; //模板名称 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!props.templateData.brand) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请选择品牌', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} else { |
|
|
|
|
details.form.brandId = props.templateData.brand; //品牌ID |
|
|
|
|
} |
|
|
|
|
console.log(details.form,'初始表单'); |
|
|
|
|
const submitData = deepClone(details.form);//深拷贝 |
|
|
|
|
// 计价方式 |
|
|
|
|
submitData.trunklinePricingType= submitData.trunklinePricingType.join(',') |
|
|
|
|
//品类管理 |
|
|
|
|
submitData.billTemplateDetail.forEach(item=>{ |
|
|
|
|
switch (item.code) { |
|
|
|
|
case '1': |
|
|
|
|
submitData.trunklinePieceCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(','); |
|
|
|
|
break; |
|
|
|
|
case '3': |
|
|
|
|
submitData.trunklineCubeCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(','); |
|
|
|
|
break; |
|
|
|
|
case '4': |
|
|
|
|
submitData.trunklineWeightCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(','); |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
submitData.serviceType = '2'; //服务类型(干线固定参数) |
|
|
|
|
delete submitData.billTemplateDetail;//删除是否区分品类多余参数 |
|
|
|
|
console.log(submitData,'处理好的参数'); |
|
|
|
|
let data={ |
|
|
|
|
...submitData,//提交的参数 |
|
|
|
|
} |
|
|
|
|
$_priceTemplate(data).then(res=>{ |
|
|
|
|
console.log(res,'提交成功返回值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
emit('request-data',res.data.data);//把获取到的数据传递给父页面 |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|