|
|
|
@ -102,15 +102,16 @@
|
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
<div class="el_table_operation"> |
|
|
|
|
<span @click="storageplus(item.id)" v-if="item.plus" class="el_table_operation_span_b" |
|
|
|
|
>+</span |
|
|
|
|
> |
|
|
|
|
<span |
|
|
|
|
@click="storagereduce(item.id)" |
|
|
|
|
v-if="item.reduce" |
|
|
|
|
class="el_table_operation_span_a" |
|
|
|
|
>-</span |
|
|
|
|
> |
|
|
|
|
<span @click="storageplus(item.id)" v-if="item.plus" class="el_table_operation_span_b" |
|
|
|
|
>+</span |
|
|
|
|
> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -225,18 +226,19 @@
|
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
<div class="el_table_operation"> |
|
|
|
|
<span |
|
|
|
|
@click="categoriesduce(item.id)" |
|
|
|
|
v-if="item.reduce" |
|
|
|
|
class="el_table_operation_span_a" |
|
|
|
|
>-</span |
|
|
|
|
> |
|
|
|
|
<span |
|
|
|
|
@click="categoriesplus(item.id)" |
|
|
|
|
v-if="item.plus" |
|
|
|
|
class="el_table_operation_span_b" |
|
|
|
|
>+</span |
|
|
|
|
> |
|
|
|
|
<span |
|
|
|
|
@click="categoriesduce(item.id)" |
|
|
|
|
v-if="item.reduce" |
|
|
|
|
class="el_table_operation_span_a" |
|
|
|
|
>-</span |
|
|
|
|
> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -253,7 +255,7 @@
|
|
|
|
|
import { ref } from 'vue'; |
|
|
|
|
import { defineProps, defineEmits ,defineComponent} from 'vue'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
|
import { $_priceTemplate, $_basicdataBrande } from '@/api/financialsector/index'; //价格模板 |
|
|
|
|
import { $_priceTemplate, $_basicdataBrande,$_putpriceTemplate } from '@/api/financialsector/index'; //价格模板 |
|
|
|
|
import { ElMessage } from 'element-plus'; |
|
|
|
|
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js'; |
|
|
|
|
const SelectOpin = ref(null); //当前点击的品类搜索框 |
|
|
|
@ -454,7 +456,7 @@ function updateDictionary(targetArray, dictionaryType) {
|
|
|
|
|
if (res.data.data.length) { |
|
|
|
|
res.data.data.forEach(item => { |
|
|
|
|
targetArray.push({ |
|
|
|
|
value: item.dictKey, |
|
|
|
|
value: Number(item.dictKey), |
|
|
|
|
label: item.dictValue, |
|
|
|
|
id: item.id, |
|
|
|
|
}); |
|
|
|
@ -472,18 +474,26 @@ function updateDictionary(targetArray, dictionaryType) {
|
|
|
|
|
.finally(() => {}); |
|
|
|
|
} |
|
|
|
|
// 页面初始化必要请求 |
|
|
|
|
const onLoad = () => { |
|
|
|
|
const onLoad = async() => { |
|
|
|
|
updateDictionary(Storagebillingtype.value, 'warehouse_pricing_type'); //仓储计费类型 |
|
|
|
|
updateDictionary(Warehousebillingmode.value, 'warehouse_pricing_mode'); //仓储计费模式 |
|
|
|
|
updateDictionary(CalculationBasis.value, 'warehouse_calculation_basis'); //计算基准 |
|
|
|
|
updateDictionary(Distinguishcategories.value, 'price_yes_no'); //是否区分品类 |
|
|
|
|
updateDictionary(Surchargepricingunit.value, 'warehouse_pricing_unit'); //附加费计价单位 |
|
|
|
|
if(props.templateData.request){ |
|
|
|
|
// 执行回显 |
|
|
|
|
form.value=props.templateData.request |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
onLoad(); |
|
|
|
|
// 新增 |
|
|
|
|
const Submit = async () => { |
|
|
|
|
await emit('request-data'); //通知父页面传递数据 |
|
|
|
|
console.log(props, 'props'); |
|
|
|
|
|
|
|
|
|
if (!props.templateData.TemplateName) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请输入模板名称', |
|
|
|
@ -503,7 +513,8 @@ const Submit = async () => {
|
|
|
|
|
form.value.brandId = props.templateData.brand; //品牌ID |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
form.value.serviceType = '3'; //服务类型(仓储固定参数) |
|
|
|
|
|
|
|
|
|
form.value.serviceType=props.templateData.ServiceType.join(',');//顶部选择的服务类型 |
|
|
|
|
// 如果勾选了区分品类判断是否填写了仓储品类配置 |
|
|
|
|
if (categoriesDisplay.value) { |
|
|
|
|
let storage = StoragecategoryList.value.find(res => !res.warehousePieceCategory); //查看仓储品类配置是否完全没有填写 |
|
|
|
@ -541,10 +552,33 @@ const Submit = async () => {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
console.log(form.value, '要提交的参数'); |
|
|
|
|
let data = { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(props.templateData.code){ |
|
|
|
|
// 编辑接口 |
|
|
|
|
let data={ |
|
|
|
|
id:props.templateData.code,//编辑参数 |
|
|
|
|
...form.value, |
|
|
|
|
checkType:'3',//服务类型(仓储固定参数) |
|
|
|
|
} |
|
|
|
|
console.log('编辑操作'); |
|
|
|
|
$_putpriceTemplate(data).then(res=>{ |
|
|
|
|
console.log(res,'编辑成功之后返回值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
let data = { |
|
|
|
|
...form.value, |
|
|
|
|
}; |
|
|
|
|
$_priceTemplate(data).then(res => { |
|
|
|
|
// 新增接口 |
|
|
|
|
console.log('新增操作'); |
|
|
|
|
$_priceTemplate(data).then(res => { |
|
|
|
|
console.log(res, '提交成功之后返回值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
@ -555,6 +589,8 @@ const Submit = async () => {
|
|
|
|
|
} |
|
|
|
|
// res.data.data 返回的参数 |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
// 是否区分品类事件 |
|
|
|
|
const categoriesDisplayChange = val => { |
|
|
|
|