| | |
| | | labelPrinting2:'Label printing 2', |
| | | addAutomatically:'Auto fill', |
| | | selectFill:'Selected fill', |
| | | engineeringPrinting:'工程打印' |
| | | engineeringPrinting:'Engineering Printing' |
| | | }, |
| | | reportingWorks:{ |
| | | glassNumber:'Code', |
| | |
| | | endOperationOrderNumber:'Transfer sequence number', |
| | | typeClaim:'Take out type', |
| | | |
| | | pleaseEnterTheBoxNumber:'请输入箱号', |
| | | pleaseEnterTheBoxNumber:'Please enter the box number', |
| | | |
| | | |
| | | }, |
| | |
| | | money:'Amount', |
| | | |
| | | pleaseSelectTheSameCustomerProject:'Please select the project for the same customer', |
| | | noMoney:'无金额', |
| | | freightPrice:'运费单价', |
| | | freightQuantity:'运费数量', |
| | | freight:'运费金额', |
| | | noMoney:'No money', |
| | | freightPrice:'Freight Price', |
| | | freightQuantity:'Freight Quantity', |
| | | freight:'Freight Money', |
| | | |
| | | pleaseMsg1:'订单存在其他金额单价没有填写', |
| | | |
| | | }, |
| | | replenish:{ |
| | |
| | | freightPrice:'运费单价', |
| | | freightQuantity:'运费数量', |
| | | freight:'运费金额', |
| | | pleaseMsg1:'订单存在其他金额单价没有填写', |
| | | |
| | | }, |
| | | replenish:{ |
| | |
| | | |
| | | <el-row gutter="10" justify="center" > |
| | | <el-col span="4"> |
| | | <el-button id="searchButton" type="primary" @click="resetForm" >重置</el-button> |
| | | <el-button id="searchButton" type="primary" @click="resetForm" >{{$t('basicData.empty')}}</el-button> |
| | | </el-col> |
| | | <el-col span="4"> |
| | | <el-button id="searchButton" type="primary" @click="submitForm" >保存</el-button> |
| | | <el-button id="searchButton" type="primary" @click="submitForm" >{{$t('basicData.save')}}</el-button> |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | |
| | | basic.value.input=basic.value.input+"mm" |
| | | } |
| | | } |
| | | console.log(basic.value) |
| | | basic.value.input=basic.value.input.trim() |
| | | request.post(`/basicData/addBasicData`, basic.value).then(res => { |
| | | if (res.data) { |
| | | ElMessage.success(t('basicData.msg.saveSuccess')) |
| | |
| | | let submitArr = props.rowIndex |
| | | submitArr.basicType = basic.value.basicType[0] |
| | | submitArr.basicCategory = basic.value.basicType[1] |
| | | submitArr.basicName = basic.value.input |
| | | submitArr.basicName = basic.value.input.trim() |
| | | submitArr.nickname = basic.value.nickname |
| | | request.post(`/basicData/updateBasicData`, submitArr).then(res => { |
| | | if (res.data) { |
| | |
| | | ElMessage.success(t('delivery.deliveryNoteSubmittedSuccessfully')) |
| | | router.push({path: '/main/delivery/selectDelivery', query:{random:Math.random()}}) |
| | | }else if(res.data===false){ |
| | | ElMessage.warning("订单存在其他金额单价没有填写") |
| | | ElMessage.warning(t('delivery.pleaseMsg1')) |
| | | }else{ |
| | | ElMessage.warning(t('basicData.msg.saveFail')) |
| | | } |