页面开发:总部组批次

This commit is contained in:
liuyp 2024-06-07 01:04:22 +08:00
parent 6b9b2cde78
commit 66fed834a5
3 changed files with 1560 additions and 4 deletions

View File

@ -10,12 +10,18 @@
<el-radio label="1">合包号</el-radio> <el-radio label="1">合包号</el-radio>
</el-radio-group> </el-radio-group>
</div> </div>
<el-input <!-- <el-input
v-model="queryParams.packNo" v-model="queryParams.packNo"
:placeholder="$t('多个合包号逗号可换行隔开')" :placeholder="$t('多个合包号逗号可换行隔开')"
clearable clearable
type="textarea" type="textarea"
rows="2" rows="2"
/> -->
<XdTextareaInput
v-model="queryParams.packNo"
:placeholder="$t('多个流水号逗号或换行隔开')"
clearable
:rows="2"
/> />
</el-form-item> </el-form-item>
</el-col> </el-col>
@ -627,7 +633,7 @@
<script> <script>
import { listEmisTmsPack, getPackNo, getEmisTmsPack, delEmisTmsPack, addEmisTmsPack, updateEmisTmsPack } from "@/api/emis/emisTmsPack"; import { listEmisTmsPack, getPackNo, getEmisTmsPack, delEmisTmsPack, addEmisTmsPack, updateEmisTmsPack } from "@/api/emis/emisTmsPack";
import { listEmisWaybill, getWaybillDetail } from "@/api/emis/emisWaybill"; import { listEmisWaybill } from "@/api/emis/emisWaybill";
import { listEmisTmsPackDtl, delEmisTmsPackDtl, addEmisTmsPackDtl } from "@/api/emis/emisTmsPackDtl"; import { listEmisTmsPackDtl, delEmisTmsPackDtl, addEmisTmsPackDtl } from "@/api/emis/emisTmsPackDtl";
// import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker'; // import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
import emisTmsPackForm from '@/views/emis/emisTmsPack/emisTmsPackForm'; import emisTmsPackForm from '@/views/emis/emisTmsPack/emisTmsPackForm';
@ -1216,7 +1222,7 @@ export default {
this.coData.destCountry = resData.destCountry; this.coData.destCountry = resData.destCountry;
// this.coData.destCountryName = null; // this.coData.destCountryName = null;
this.coData.sendSiteCode = resData.sendSiteCode; this.coData.sendSiteCode = resData.sendSiteCode;
this.coData.sendSiteCode = resData.sendSiteName; // this.coData.sendSiteCode = resData.sendSiteName;
this.coData.nextSiteCode = resData.nextSiteCode; this.coData.nextSiteCode = resData.nextSiteCode;
// this.coData.nextStation = null; // this.coData.nextStation = null;
this.blUnpack = resData.blUnpack; this.blUnpack = resData.blUnpack;

File diff suppressed because it is too large Load Diff

View File

@ -45,7 +45,7 @@
<el-col :span="24"> <el-col :span="24">
<el-form-item label="问题图片" prop="xxx" label-width="80px"> <el-form-item label="问题图片" prop="xxx" label-width="80px">
<ImageUpload v-model="form.picUrl" @input="handleInput" :isShowTip="false" ></ImageUpload> <ImageUpload v-model="form.picUrl" @input="handleInput" :isShowTip="false" ></ImageUpload>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>