123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914 |
- <template>
- <div style="width: 100%; padding: 0px 15px">
- <byForm
- :formConfig="formConfig"
- :formOption="formOption"
- v-model="formData.data"
- :rules="rules"
- ref="submit"
- >
- <template #seller>
- <div style="width: 100%">
- <el-form-item prop="sellCorporationId">
- <el-select
- v-model="formData.data.sellCorporationId"
- style="width: 100%"
- disabled
- >
- <el-option
- v-for="item in corporationList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="8">
- <el-form-item label="地址" prop="sellCountryName">
- <el-input
- v-model="formData.data.sellCountryName"
- placeholder="请输入国家"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label=" " prop="sellProvinceName">
- <el-input
- v-model="formData.data.sellProvinceName"
- placeholder="请输入省/州"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label=" " prop="sellCityName">
- <el-input
- v-model="formData.data.sellCityName"
- placeholder="请输入城市"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="24">
- <el-form-item prop="sellAddress">
- <el-input v-model="formData.data.sellAddress" type="textarea">
- </el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="8">
- <el-form-item label="联系人" prop="sellContactName">
- <el-input
- v-model="formData.data.sellContactName"
- placeholder="请输入联系人"
- />
- </el-form-item>
- </el-col>
- <el-col :span="16">
- <el-form-item label=" " prop="sellContactNumber">
- <el-input
- v-model="formData.data.sellContactNumber"
- placeholder="请输入联系人电话"
- />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #buyer>
- <div style="width: 100%">
- <div style="width: 100%">
- <!-- <el-form-item prop="buyCorporationId">
- <el-select
- v-model="formData.data.buyCorporationId"
- style="width: 100%"
- @change="changeCustomer"
- >
- <el-option
- v-for="item in customerList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item> -->
- <el-form-item prop="buyCorporationId">
- <el-select
- v-model="formData.data.buyCorporationId"
- filterable
- remote
- reserve-keyword
- placeholder="请输入关键字"
- remote-show-suffix
- :remote-method="remoteMethod"
- :loading="loadingSearch"
- @input="remoteMethod"
- style="width: 100%"
- @change="changeCustomer"
- v-if="
- [30].includes(route.query.processType) ||
- !route.query.processType
- "
- >
- <el-option
- v-for="item in customerList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- <el-select
- v-model="formData.data.buyCorporationName"
- disabled
- v-else
- >
- </el-select>
- </el-form-item>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="6">
- <el-form-item label="地址" prop="countryId">
- <el-select
- v-model="formData.data.countryId"
- placeholder="国家"
- filterable
- @change="(val) => getCityData(val, '20', true)"
- >
- <el-option
- v-for="item in countryData"
- :label="item.chineseName"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label=" " prop="provinceName">
- <selectCity
- placeholder="省/洲"
- @change="(val) => getCityData(val, '30', true)"
- addressId="provinceId"
- addressName="provinceName"
- v-model="formData.data"
- :data="provinceData"
- >
- </selectCity>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label=" " prop="cityName">
- <selectCity
- placeholder="城市"
- addressId="cityId"
- addressName="cityName"
- v-model="formData.data"
- :data="cityData"
- >
- </selectCity>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label=" " prop="buyPostalCode">
- <el-input
- v-model="formData.data.buyPostalCode"
- placeholder="请输入邮编"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="24">
- <el-form-item prop="buyAddress">
- <el-input v-model="formData.data.buyAddress" type="textarea">
- </el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="8">
- <el-form-item label="联系人" prop="buyContactName">
- <el-autocomplete
- v-model="formData.data.buyContactName"
- :fetch-suggestions="querySearchPerson"
- clearable
- class="inline-input w-50"
- placeholder="请输入联系人"
- @select="handlePerson"
- >
- </el-autocomplete>
- </el-form-item>
- </el-col>
- <el-col :span="16">
- <el-form-item label=" " prop="buyContactNumber">
- <el-input
- v-model="formData.data.buyContactNumber"
- placeholder="请输入联系人电话"
- />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </div>
- </template>
- <template #payment>
- <div style="width: 100%">
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="6">
- <el-form-item label="币种" prop="currency">
- <el-select
- v-model="formData.data.currency"
- placeholder="请选择币种"
- style="width: 100%"
- >
- <el-option
- v-for="item in accountCurrency"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="汇率" prop="rate">
- <el-input-number
- onmousewheel="return false;"
- v-model="formData.data.rate"
- placeholder="请输入汇率"
- style="width: 100%"
- :precision="4"
- :controls="false"
- :min="0"
- :max="100"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="6">
- <el-form-item label="付款方式" prop="paymentMethod">
- <el-select
- v-model="formData.data.paymentMethod"
- placeholder="请选择付款方式"
- style="width: 100%"
- >
- <el-option
- v-for="item in fundsPaymentMethod"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="预付比例 (%)" prop="advanceRatio">
- <el-input-number
- onmousewheel="return false;"
- v-model="formData.data.advanceRatio"
- placeholder="请输入预付比例"
- style="width: 100%"
- :precision="2"
- :controls="false"
- :min="0"
- :max="100"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="18">
- <el-form-item label="付款条件" prop="remark">
- <el-input
- v-model="formData.data.remark"
- :rows="2"
- type="textarea"
- placeholder="请输入付款条件"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="9">
- <el-form-item label="收款账号" prop="shroffAccountId">
- <el-select
- v-model="formData.data.shroffAccountId"
- placeholder="请选择收款账号"
- style="width: 100%"
- @change="changeShroffAccount"
- >
- <el-option
- v-for="item in accountList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="9">
- <el-form-item label=" ">
- <el-button type="primary" @click="changeActiveName" text>
- <span v-if="activeName == '1'">收起</span>
- <span v-else>展开</span>
- </el-button>
- </el-form-item>
- </el-col>
- </el-row>
- <div style="width: 100%; margin-top: 34px">
- <el-collapse v-model="activeName" class="hideCollapse" accordion>
- <el-collapse-item title="" name="1">
- <el-row style="width: 100%">
- <el-col :span="9">
- <el-form-item
- label="Beneficiary Name"
- prop="beneficiaryName"
- >
- <el-input
- v-model="formData.data.beneficiaryName"
- placeholder="请输入Beneficiary Name"
- />
- </el-form-item>
- <div style="height: 20px"></div>
- <el-form-item
- label="Beneficiary Bank"
- prop="beneficiaryBank"
- >
- <el-input
- v-model="formData.data.beneficiaryBank"
- placeholder="请输入Beneficiary Bank"
- />
- </el-form-item>
- <div style="height: 20px"></div>
- <el-form-item
- label="Beneficiary Bank Address"
- prop="beneficiaryBankAddress"
- >
- <el-input
- v-model="formData.data.beneficiaryBankAddress"
- placeholder="请输入Beneficiary Bank Address"
- />
- </el-form-item>
- </el-col>
- <el-col :span="9">
- <el-form-item
- label="Beneficiary Account Number"
- prop="beneficiaryAccountNumber"
- >
- <el-input
- v-model="formData.data.beneficiaryAccountNumber"
- placeholder="请输入Beneficiary Account Number"
- />
- </el-form-item>
- <div style="height: 20px"></div>
- <el-form-item label="Swift Code" prop="swiftCode">
- <el-input
- v-model="formData.data.swiftCode"
- placeholder="请输入Swift Code"
- />
- </el-form-item>
- <div style="height: 20px"></div>
- <el-form-item
- label="Beneficiary Address"
- prop="beneficiaryAddress"
- >
- <el-input
- v-model="formData.data.beneficiaryAddress"
- placeholder="请输入Beneficiary Address"
- />
- </el-form-item>
- </el-col>
- </el-row>
- </el-collapse-item>
- </el-collapse>
- </div>
- </div>
- </template>
- <template #delivery>
- <div style="width: 100%">
- <el-row style="margin-top: 20px; width: 100%">
- <el-col :span="6">
- <el-form-item label="报价有效期 (天)" prop="effective">
- <el-input-number
- onmousewheel="return false;"
- v-model="formData.data.effective"
- placeholder="请输入有效期"
- style="width: 100%"
- :precision="0"
- :controls="false"
- :min="0"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="交货期限" prop="deliveryTime">
- <el-date-picker
- v-model="formData.data.deliveryTime"
- type="date"
- placeholder="请选择交货期限"
- value-format="YYYY-MM-DD"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="运输方式" prop="transportMethod">
- <el-select
- v-model="formData.data.transportMethod"
- placeholder="请选择运输方式"
- style="width: 100%"
- >
- <el-option
- v-for="item in shippingMethod"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="运输说明" prop="transportRemark">
- <el-input
- v-model="formData.data.transportRemark"
- placeholder="请输入运输说明"
- />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #commodity>
- <div style="width: 100%">
- <el-button type="primary" @click="openProductCompany = true" plain
- >标准产品库</el-button
- >
- <el-button type="primary" @click="clickCustomerProduct()" plain
- >客户产品库</el-button
- >
- <el-table
- :data="formData.data.contractProductList"
- style="width: 100%; margin-top: 16px"
- >
- <el-table-column label="商品图片" width="80">
- <template #default="{ row }">
- <div v-if="row.fileUrl">
- <img
- :src="row.fileUrl"
- class="pic"
- @click="onPicture(row.fileUrl)"
- />
- </div>
- <div v-else></div>
- </template>
- </el-table-column>
- <el-table-column label="商品名称" min-width="180">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProductList.' + $index + '.productName'"
- :rules="rules.productName"
- :inline-message="true"
- class="shrinkPadding"
- >
- <el-input
- v-model="row.productName"
- placeholder="请输入商品名称"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="尺寸 cm*cm*cm" width="140">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProductList.' + $index + '.productModel'"
- :rules="rules.productModel"
- :inline-message="true"
- class="shrinkPadding"
- >
- <el-input v-model="row.productModel" placeholder="请输入" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="数量" width="130">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProductList.' + $index + '.quantity'"
- :rules="rules.quantity"
- :inline-message="true"
- class="shrinkPadding"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.quantity"
- placeholder="请输入"
- style="width: 100%"
- :precision="0"
- :controls="false"
- :min="0"
- @change="calculationAmount()"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="单价" width="140">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProductList.' + $index + '.price'"
- :rules="rules.price"
- :inline-message="true"
- class="shrinkPadding"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.price"
- placeholder="请输入"
- style="width: 100%"
- :precision="2"
- :controls="false"
- :min="0"
- @change="calculationAmount()"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="贸易方式" width="140">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProductList.' + $index + '.tradeMethods'"
- :rules="rules.tradeMethods"
- :inline-message="true"
- class="shrinkPadding"
- >
- <el-select
- v-model="row.tradeMethods"
- placeholder="请选择"
- style="width: 100%"
- >
- <el-option
- v-for="item in tradeMethods"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="包装方式" width="180">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProductList.' + $index + '.packMethod'"
- :rules="rules.packMethod"
- :inline-message="true"
- class="shrinkPadding"
- >
- <el-input v-model="row.packMethod" placeholder="请输入" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- prop="amount"
- :label="'金额 ( ' + formData.data.currency + ' )'"
- width="130"
- />
- <el-table-column
- label="操作"
- width="60"
- align="center"
- fixed="right"
- >
- <template #default="{ row, $index }">
- <el-button
- type="primary"
- link
- @click="handleRemove($index, row)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- <template #file>
- <div style="width: 100%">
- <el-upload
- v-model:fileList="formData.data.fileList"
- action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
- :data="uploadData"
- multiple
- :before-upload="uploadFile"
- :on-success="handleSuccess"
- :on-preview="onPreviewFile"
- >
- <el-button type="primary" plain>选择</el-button>
- </el-upload>
- </div>
- </template>
- <template #indication>
- <div style="width: 100%">
- <el-upload
- v-model:fileList="formData.data.packageFileList"
- action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
- :data="indicationUploadData"
- multiple
- :before-upload="indicationUploadFile"
- :on-success="handleSuccess"
- :on-preview="onPreviewFile"
- >
- <el-button type="primary" plain>选择</el-button>
- </el-upload>
- </div>
- </template>
- <template #otherCharge>
- <div style="width: 100%">
- <el-button type="primary" @click="clickAdd()">添加行</el-button>
- <el-table
- :data="formData.data.contractProjectList"
- style="width: 100%; margin-top: 16px"
- >
- <el-table-column label="收费项目" width="220">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProjectList.' + $index + '.payName'"
- :rules="rules.payName"
- :inline-message="true"
- >
- <el-autocomplete
- v-model="row.payName"
- :fetch-suggestions="querySearch"
- clearable
- class="inline-input w-50"
- placeholder="请输入收费项目"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="备注">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProjectList.' + $index + '.remark'"
- >
- <el-input v-model="row.remark" placeholder="请输入备注" />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- :label="'金额 ( ' + formData.data.currency + ' )'"
- width="130"
- >
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractProjectList.' + $index + '.amount'"
- :rules="rules.amount"
- :inline-message="true"
- class="shrinkPadding"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.amount"
- placeholder="请输入金额"
- style="width: 100%"
- :precision="2"
- :controls="false"
- :min="0"
- @change="totalAmount()"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- width="60"
- align="center"
- fixed="right"
- >
- <template #default="{ $index }">
- <el-button type="primary" link @click="handleDelete($index)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- <template #offerMoney>
- <div style="width: 100%; display: flex">
- <div style="width: calc(100% - 190px)"></div>
- <div style="width: 130px; padding: 0 12px">
- <el-form-item
- label="合同总金额"
- prop="amount"
- class="shrinkPadding"
- >
- <el-input
- v-model="formData.data.amount"
- placeholder="合同总金额"
- disabled
- />
- </el-form-item>
- </div>
- </div>
- </template>
- <template #shipment>
- <div style="width: 100%">
- <el-table
- :data="formData.data.contractShipmentList"
- style="width: 100%; margin-top: 16px"
- >
- <el-table-column prop="productCode" label="商品编码" width="120" />
- <el-table-column prop="productName" label="商品名称" />
- <el-table-column label="出货日期" width="220">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractShipmentList.' + $index + '.shipmentTime'"
- :rules="rules.shipmentTime"
- :inline-message="true"
- >
- <el-date-picker
- v-model="row.shipmentTime"
- type="date"
- placeholder="请选择出货日期"
- value-format="YYYY-MM-DD"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="数量" width="160">
- <template #default="{ row, $index }">
- <div style="width: 100%">
- <el-form-item
- :prop="'contractShipmentList.' + $index + '.quantity'"
- :inline-message="true"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.quantity"
- placeholder="请输入数量"
- style="width: 100%"
- :precision="0"
- :controls="false"
- :min="0"
- @change="calculationAmount()"
- />
- </el-form-item>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="操作"
- width="120"
- fixed="right"
- >
- <template #default="{ row, $index }">
- <el-button type="primary" link @click="clickSplit(row)"
- >拆分</el-button
- >
- <el-button type="primary" link @click="clickDelete($index)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- </byForm>
- <el-dialog
- v-if="openProductCompany"
- v-model="openProductCompany"
- title="公司产品库"
- width="90%"
- append-to-body
- >
- <CompanyProduct
- :selectStatus="true"
- @selectProduct="selectProduct"
- ></CompanyProduct>
- </el-dialog>
- <el-dialog
- v-if="openProductCustomer"
- v-model="openProductCustomer"
- title="客户产品库"
- width="90%"
- append-to-body
- >
- <CustomerProduct
- :selectStatus="true"
- :buyCorporationId="formData.data.buyCorporationId"
- @selectProduct="selectProduct"
- ></CustomerProduct>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import byForm from "@/components/byForm/index";
- import CompanyProduct from "@/views/EHSD/productLibrary/companyProduct/index";
- import CustomerProduct from "@/views/EHSD/productLibrary/customerProduct/index";
- import { ElMessage } from "element-plus";
- import selectCity from "@/components/selectCity/index.vue";
- import { useRoute } from "vue-router";
- const route = useRoute();
- const { proxy } = getCurrentInstance();
- const innerMethod = ref([]);
- const outsideMethod = ref([]);
- const accountCurrency = ref([]);
- const fundsPaymentMethod = ref([]);
- const tradeMethods = ref([]);
- const shippingMethod = ref([]);
- const templateList = ref([]);
- const corporationList = ref([]);
- const customerList = ref([]);
- const accountList = ref([]);
- const countryData = ref([]);
- const provinceData = ref([]);
- const cityData = ref([]);
- const customerUserList = ref([]);
- const openProductCompany = ref(false);
- const openProductCustomer = ref(false);
- const activeName = ref("");
- const formData = reactive({
- data: {
- currency: "",
- amount: undefined,
- contractProductList: [],
- contractProjectList: [],
- fileList: [],
- packageFileList: [],
- contractShipmentList: [],
- },
- });
- const submit = ref(null);
- const judgeStatus = () => {
- if (route.query.processType == 20 || route.query.processType == 10) {
- return true;
- }
- if (props.queryData.recordList && props.queryData.recordList.length > 0) {
- let data = props.queryData.recordList.filter(
- (item) => item.status === 2 && item.nodeType !== 1
- );
- if (data && data.length > 0) {
- return true;
- }
- }
- return false;
- };
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- disabled: false,
- });
- const uploadData = ref({});
- const indicationUploadData = ref({});
- const formConfig = computed(() => {
- return [
- {
- type: "title",
- title: "合同模板",
- label: "",
- },
- {
- type: "select",
- label: "选择合同模板",
- prop: "contractTemplateId",
- data: templateList.value,
- fn: (val) => {
- changeTemplate(val);
- },
- },
- {
- type: "slot",
- slotName: "seller",
- label: "卖方信息",
- itemWidth: 50,
- },
- {
- type: "slot",
- slotName: "buyer",
- label: "买方信息",
- itemWidth: 50,
- },
- {
- type: "slot",
- slotName: "payment",
- label: "付款信息",
- },
- {
- type: "slot",
- slotName: "delivery",
- label: "交付信息",
- },
- {
- type: "slot",
- slotName: "commodity",
- label: "商品信息",
- },
- {
- type: "slot",
- slotName: "file",
- label: "交接单",
- },
- {
- type: "slot",
- slotName: "indication",
- label: "包装指示",
- },
- {
- type: "slot",
- slotName: "otherCharge",
- label: "其他收费项目",
- },
- {
- type: "slot",
- slotName: "offerMoney",
- },
- {
- type: "slot",
- slotName: "shipment",
- label: "出货计划",
- },
- ];
- });
- const rules = ref({
- contractTemplateId: [
- { required: true, message: "请选择合同模板", trigger: "change" },
- ],
- buyCorporationId: [
- { required: true, message: "请选择公司", trigger: "change" },
- ],
- countryId: [{ required: true, message: "请选择国家", trigger: "change" }],
- sellAddress: [{ required: true, message: "请输入详细地址", trigger: "blur" }],
- buyAddress: [{ required: true, message: "请输入详细地址", trigger: "blur" }],
- buyContactName: [
- { required: true, message: "请输入联系人", trigger: ["change", "blur"] },
- ],
- buyContactNumber: [
- { required: true, message: "请输入联系电话", trigger: "blur" },
- ],
- productName: [{ required: true, message: "请输入商品名称", trigger: "blur" }],
- productModel: [
- { required: true, message: "请输入尺寸 cm*cm*cm", trigger: "blur" },
- ],
- quantity: [{ required: true, message: "请输入数量", trigger: "blur" }],
- price: [{ required: true, message: "请输入单价", trigger: "blur" }],
- packMethod: [{ required: true, message: "请输入包装方式", trigger: "blur" }],
- amount: [{ required: true, message: "请输入金额", trigger: "blur" }],
- payName: [
- { required: true, message: "请输入收费项目", trigger: ["change", "blur"] },
- ],
- currency: [{ required: true, message: "请选择币种", trigger: "change" }],
- effective: [{ required: true, message: "请输入报价有效期", trigger: "blur" }],
- deliveryTime: [
- { required: true, message: "请选择交货期限", trigger: "change" },
- ],
- paymentMethod: [
- { required: true, message: "请选择付款方式", trigger: "change" },
- ],
- advanceRatio: [
- { required: true, message: "请输入预付比例", trigger: "blur" },
- ],
- shroffAccountId: [
- { required: true, message: "请选择收款账号", trigger: "change" },
- ],
- tradeMethods: [
- { required: true, message: "请选择贸易方式", trigger: "change" },
- ],
- transportMethod: [
- { required: true, message: "请选择运输方式", trigger: "change" },
- ],
- transportRemark: [
- { required: true, message: "请输入运输说明", trigger: "blur" },
- ],
- remark: [{ required: true, message: "请输入付款条件", trigger: "blur" }],
- rate: [{ required: true, message: "请输入汇率", trigger: "blur" }],
- });
- const getDict = () => {
- proxy.post("/customer/selPage", { pageNum: 1, pageSize: 50 }).then((res) => {
- customerList.value = res.rows.map((x) => ({
- ...x,
- label: x.name,
- value: x.id,
- }));
- });
- proxy
- .getDictOne([
- "inner_packaging_method_ehsd",
- "outside_packaging_method_ehsd",
- "account_currency",
- "funds_payment_method",
- "trade_mode",
- "shipping_method",
- ])
- .then((res) => {
- innerMethod.value = res["inner_packaging_method_ehsd"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- outsideMethod.value = res["outside_packaging_method_ehsd"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- accountCurrency.value = res["account_currency"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- fundsPaymentMethod.value = res["funds_payment_method"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- tradeMethods.value = res["trade_mode"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- shippingMethod.value = res["shipping_method"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- });
- proxy
- .post("/contractTemplate/page", { pageNum: 1, pageSize: 999 })
- .then((res) => {
- templateList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.templateName,
- value: item.id,
- };
- });
- });
- proxy.post("/corporation/page", { pageNum: 1, pageSize: 999 }).then((res) => {
- corporationList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.name,
- value: item.id,
- };
- });
- });
- proxy
- .post("/accountManagement/page", { pageNum: 1, pageSize: 999 })
- .then((res) => {
- accountList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.alias,
- value: item.id,
- };
- });
- });
- };
- getDict();
- const changeTemplate = (val) => {
- formData.data.sellCorporationId = "";
- formData.data.sellContactName = "";
- formData.data.sellContactNumber = "";
- formData.data.sellCountryName = "";
- formData.data.sellProvinceName = "";
- formData.data.sellCityName = "";
- formData.data.sellAddress = "";
- if (val) {
- proxy.post("/contractTemplate/detail", { id: val }).then((res) => {
- formData.data.sellCorporationId = res.corporationId;
- if (res.corporationId) {
- proxy
- .post("/corporation/detail", { id: res.corporationId })
- .then((detailCorporation) => {
- proxy
- .post("/customizeArea/list", { parentId: "0" })
- .then((resCountry) => {
- let sellCountryData = resCountry.filter(
- (item) => item.id === detailCorporation.countryId
- );
- if (sellCountryData && sellCountryData.length > 0) {
- formData.data.sellCountryName =
- sellCountryData[0].chineseName;
- } else {
- formData.data.sellCountryName = "";
- }
- });
- if (detailCorporation.countryId) {
- proxy
- .post("/customizeArea/list", {
- parentId: detailCorporation.countryId,
- })
- .then((resProvince) => {
- let sellProvinceData = resProvince.filter(
- (item) => item.id === detailCorporation.provinceId
- );
- if (sellProvinceData && sellProvinceData.length > 0) {
- formData.data.sellProvinceName = sellProvinceData[0].name;
- } else {
- formData.data.sellProvinceName = "";
- }
- });
- } else {
- formData.data.sellProvinceName = "";
- }
- if (detailCorporation.provinceId) {
- proxy
- .post("/customizeArea/list", {
- parentId: detailCorporation.provinceId,
- })
- .then((resCity) => {
- let sellCityData = resCity.filter(
- (item) => item.id === detailCorporation.cityId
- );
- if (sellCityData && sellCityData.length > 0) {
- formData.data.sellCityName = sellCityData[0].name;
- } else {
- formData.data.sellCityName = "";
- }
- });
- } else {
- formData.data.sellCityName = "";
- }
- formData.data.sellAddress = detailCorporation.address;
- });
- }
- formData.data.sellContactName = res.contactName;
- formData.data.sellContactNumber = res.contactNumber;
- });
- }
- };
- const getCityData = (id, type, isChange) => {
- proxy.post("/customizeArea/list", { parentId: id }).then((res) => {
- if (type === "20") {
- provinceData.value = res;
- if (isChange) {
- formData.data.provinceId = "";
- formData.data.provinceName = "";
- formData.data.cityId = "";
- formData.data.cityName = "";
- }
- } else if (type === "30") {
- cityData.value = res;
- if (isChange) {
- formData.data.cityId = "";
- formData.data.cityName = "";
- }
- } else {
- countryData.value = res;
- }
- });
- };
- getCityData("0");
- let auxiliaryData = ref([
- {
- label: "最近合同",
- data: [],
- },
- {
- label: "产品价格",
- data: [],
- },
- ]);
- const emit = defineEmits(["auxiliaryChange"]);
- const getDecisionAids = () => {
- let data = {
- buyCorporationId: formData.data.buyCorporationId,
- productIdList: [],
- };
- if (
- formData.data.contractProductList &&
- formData.data.contractProductList.length > 0
- ) {
- data.productIdList = formData.data.contractProductList.map(
- (item) => item.productId
- );
- }
- proxy.post("/contract/decisionAid", data).then((res) => {
- if (res.lastContractList && res.lastContractList.length > 0) {
- auxiliaryData.value[0].data = res.lastContractList.map((item) => {
- return [
- {
- label: "合同编号",
- value: item.code,
- style: {
- color: "#0084FF",
- },
- id: item.id,
- num: 1,
- // fn: () => {},
- },
- {
- label: "下单日期",
- value: item.createTime,
- id: item.id,
- num: 1,
- },
- {
- label: "合同金额",
- value: item.currency + item.amount,
- id: item.id,
- num: 1,
- },
- ];
- });
- } else {
- auxiliaryData.value[0].data = [];
- }
- if (res.productPriceList && res.productPriceList.length > 0) {
- auxiliaryData.value[1].data = res.productPriceList.map((item) => {
- return [
- {
- label: "产品名称",
- value: item.name,
- id: item.id,
- num: 1,
- },
- {
- label: "最近价格",
- value: item.lastPrice,
- id: item.id,
- num: 1,
- },
- {
- label: "历史最高",
- value: item.maxPrice,
- id: item.id,
- num: 1,
- },
- {
- label: "历史最低",
- value: item.minPrice,
- id: item.id,
- num: 1,
- },
- ];
- });
- } else {
- auxiliaryData.value[1].data = [];
- }
- emit("auxiliaryChange", auxiliaryData.value);
- });
- };
- const changeCustomer = (val) => {
- formData.data.contractProductList = [];
- formData.data.customerName = "";
- formData.data.customerTel = "";
- if (val) {
- proxy.post("/customer/detail", { id: val }).then(
- (res) => {
- formData.data.buyCorporationName = res.name;
- if (res.customerUserList && res.customerUserList.length > 0) {
- formData.data.buyContactName = res.customerUserList[0].name;
- if (res.customerUserList[0].contactJson) {
- let contactJson = JSON.parse(res.customerUserList[0].contactJson);
- if (contactJson && contactJson.length > 0) {
- formData.data.buyContactNumber = contactJson[0].contactNo;
- }
- }
- customerUserList.value = res.customerUserList.map((item) => {
- return {
- ...item,
- value: item.name,
- };
- });
- }
- formData.data.countryId = res.countryId;
- formData.data.provinceId = res.provinceId;
- formData.data.cityId = res.cityId;
- formData.data.buyPostalCode = res.zipCode;
- formData.data.buyAddress = res.address;
- getCityData(formData.data.countryId, "20");
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- },
- (err) => {
- console.log(err);
- formData.data.countryId = "";
- formData.data.provinceId = "";
- formData.data.cityId = "";
- formData.data.buyPostalCode = "";
- formData.data.buyAddress = "";
- }
- );
- } else {
- formData.data.countryId = "";
- formData.data.provinceId = "";
- formData.data.cityId = "";
- formData.data.buyPostalCode = "";
- formData.data.buyAddress = "";
- }
- getDecisionAids();
- };
- const createFilter = (queryString) => {
- return (restaurant) => {
- return (
- restaurant.value.toLowerCase().indexOf(queryString.toLowerCase()) === 0
- );
- };
- };
- const querySearchPerson = (queryString, callback) => {
- const results = queryString
- ? customerUserList.value.filter(createFilter(queryString))
- : customerUserList.value;
- callback(results);
- };
- const handlePerson = (item) => {
- formData.data.customerTel = item.phone;
- };
- const selectProduct = (goods) => {
- if (goods && goods.id) {
- let data = formData.data.contractProductList.filter(
- (item) => item.productId === goods.id
- );
- if (data && data.length > 0) {
- return ElMessage("该产品已添加");
- }
- let fileUrl = "";
- if (goods.fileList && goods.fileList.length > 0) {
- fileUrl = goods.fileList[0].fileUrl;
- }
- let packMethod = "";
- if (goods.innerPackMethod) {
- let innerPackMethod = goods.innerPackMethod.split(",");
- innerPackMethod.map((item) => {
- if (packMethod) {
- packMethod =
- packMethod + "," + proxy.dictValueLabel(item, innerMethod.value);
- } else {
- packMethod = proxy.dictValueLabel(item, innerMethod.value);
- }
- });
- }
- if (goods.outerPackMethod) {
- let outerPackMethod = goods.outerPackMethod.split(",");
- outerPackMethod.map((item) => {
- if (packMethod) {
- packMethod =
- packMethod + "," + proxy.dictValueLabel(item, outsideMethod.value);
- } else {
- packMethod = proxy.dictValueLabel(item, outsideMethod.value);
- }
- });
- }
- if (
- formData.data.contractProductList &&
- formData.data.contractProductList.length > 0
- ) {
- formData.data.contractProductList.push({
- fileUrl: fileUrl,
- productId: goods.id,
- productName: goods.name,
- productModel:
- goods.productLong + "*" + goods.productWide + "*" + goods.productHigh,
- quantity: undefined,
- price: undefined,
- amount: "",
- tradeMethods: "",
- packMethod: packMethod,
- });
- } else {
- formData.data.contractProductList = [
- {
- fileUrl: fileUrl,
- productId: goods.id,
- productName: goods.name,
- productModel:
- goods.productLong +
- "*" +
- goods.productWide +
- "*" +
- goods.productHigh,
- quantity: undefined,
- price: undefined,
- amount: "",
- tradeMethods: "",
- packMethod: packMethod,
- },
- ];
- }
- formData.data.contractShipmentList.push({
- productCode: goods.code,
- productId: goods.id,
- productName: goods.name,
- shipmentTime: "",
- quantity: undefined,
- });
- ElMessage({
- message: "添加成功!",
- type: "success",
- });
- } else {
- return ElMessage("选择错误");
- }
- getDecisionAids();
- };
- const onPicture = (path) => {
- window.open(path, "_blank");
- };
- const handleRemove = async (index, row) => {
- formData.data.contractShipmentList =
- formData.data.contractShipmentList.filter(
- (item) => item.productId !== row.productId
- );
- await formData.data.contractProductList.splice(index, 1);
- totalAmount();
- };
- const calculationAmount = () => {
- nextTick(() => {
- if (
- formData.data.contractProductList &&
- formData.data.contractProductList.length > 0
- ) {
- for (let i = 0; i < formData.data.contractProductList.length; i++) {
- let money = 0;
- if (
- formData.data.contractProductList[i].quantity &&
- formData.data.contractProductList[i].price
- ) {
- money = parseFloat(
- Number(formData.data.contractProductList[i].quantity) *
- Number(formData.data.contractProductList[i].price)
- ).toFixed(2);
- }
- formData.data.contractProductList[i].amount = money;
- }
- }
- nextTick(() => {
- totalAmount();
- });
- });
- };
- const totalAmount = () => {
- let money = 0;
- if (
- formData.data.contractProductList &&
- formData.data.contractProductList.length > 0
- ) {
- for (let i = 0; i < formData.data.contractProductList.length; i++) {
- if (formData.data.contractProductList[i].amount) {
- money = parseFloat(
- Number(money) + Number(formData.data.contractProductList[i].amount)
- ).toFixed(2);
- }
- }
- }
- if (
- formData.data.contractProjectList &&
- formData.data.contractProjectList.length > 0
- ) {
- for (let i = 0; i < formData.data.contractProjectList.length; i++) {
- if (formData.data.contractProjectList[i].amount) {
- money = parseFloat(
- Number(money) + Number(formData.data.contractProjectList[i].amount)
- ).toFixed(2);
- }
- }
- }
- formData.data.amount = money;
- };
- const clickAdd = () => {
- if (
- formData.data.contractProjectList &&
- formData.data.contractProjectList.length > 0
- ) {
- formData.data.contractProjectList.push({
- payName: "",
- amount: undefined,
- remark: "",
- });
- } else {
- formData.data.contractProjectList = [
- { payName: "", amount: undefined, remark: "" },
- ];
- }
- };
- const handleDelete = async (index) => {
- await formData.data.contractProjectList.splice(index, 1);
- totalAmount();
- getDecisionAids();
- };
- const querySearch = (queryString, callback) => {
- proxy.post("/quotationPay/page", { payName: queryString }).then((res) => {
- if (res.rows && res.rows.length > 0) {
- res.rows = res.rows.map((item) => {
- return {
- ...item,
- value: item.payName,
- };
- });
- callback(res.rows);
- } else {
- callback([]);
- }
- });
- };
- const handleSubmit = async () => {
- let status = await submit.value.handleSubmit(() => {});
- if (status) {
- if (
- !(
- formData.data.contractProductList &&
- formData.data.contractProductList.length > 0
- )
- ) {
- ElMessage("请添加至少一件商品");
- return false;
- }
- if (formData.data.fileList && formData.data.fileList.length > 0) {
- for (let i = 0; i < formData.data.fileList.length; i++) {
- if (formData.data.fileList[i].raw.uploadState) {
- ElMessage("文件上传中,请稍后提交");
- return false;
- }
- }
- }
- if (
- formData.data.packageFileList &&
- formData.data.packageFileList.length > 0
- ) {
- for (let i = 0; i < formData.data.packageFileList.length; i++) {
- if (formData.data.packageFileList[i].raw.uploadState) {
- ElMessage("文件上传中,请稍后提交");
- return false;
- }
- }
- }
- if (
- formData.data.contractShipmentList &&
- formData.data.contractShipmentList.length > 0
- ) {
- for (let i = 0; i < formData.data.contractProductList.length; i++) {
- let data = formData.data.contractShipmentList.filter(
- (item) =>
- item.productId === formData.data.contractProductList[i].productId
- );
- if (data && data.length > 0) {
- let quantity = 0;
- for (let j = 0; j < data.length; j++) {
- quantity = parseFloat(Number(quantity) + Number(data[j].quantity));
- }
- if (quantity > formData.data.contractProductList[i].quantity) {
- ElMessage("出货数量不能大于商品数量");
- return false;
- }
- }
- }
- }
- return true;
- } else {
- setTimeout(() => {
- const errorDiv = document.getElementsByClassName("is-error");
- errorDiv[0].scrollIntoView();
- }, 0);
- }
- return status;
- };
- // 接收父组件的传值
- const props = defineProps({
- queryData: Object,
- });
- const clickCustomerProduct = () => {
- if (!formData.data.buyCorporationId) {
- return ElMessage("请先选择客户");
- }
- openProductCustomer.value = true;
- };
- const loadingSearch = ref(false);
- const remoteMethod = (keyword) => {
- if (keyword && typeof keyword === "string") {
- loadingSearch.value = true;
- proxy.post("/customer/selPage", { keyword }).then((res) => {
- customerList.value = res.rows.map((x) => ({
- ...x,
- label: x.name,
- value: x.id,
- }));
- loadingSearch.value = false;
- });
- }
- return;
- };
- const getFormData = () => {
- return proxy.deepClone(formData.data);
- };
- // 向父组件暴露
- defineExpose({
- getFormData,
- handleSubmit,
- });
- const changeShroffAccount = (val) => {
- if (val) {
- let data = accountList.value.filter((item) => item.value === val);
- if (data && data.length > 0) {
- formData.data.beneficiaryName = data[0].beneficiaryName;
- formData.data.beneficiaryBank = data[0].beneficiaryBank;
- formData.data.beneficiaryBankAddress = data[0].beneficiaryBankAddress;
- formData.data.beneficiaryAccountNumber = data[0].beneficiaryAccountNumber;
- formData.data.swiftCode = data[0].swiftCode;
- formData.data.beneficiaryAddress = data[0].beneficiaryAddress;
- }
- }
- };
- const changeActiveName = () => {
- if (activeName.value) {
- activeName.value = "";
- } else {
- activeName.value = "1";
- }
- };
- const uploadFile = async (file) => {
- const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
- uploadData.value = res.uploadBody;
- file.id = res.id;
- file.fileName = res.fileName;
- file.fileUrl = res.fileUrl;
- file.uploadState = true;
- return true;
- };
- const indicationUploadFile = async (file) => {
- const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
- indicationUploadData.value = res.uploadBody;
- file.id = res.id;
- file.fileName = res.fileName;
- file.fileUrl = res.fileUrl;
- file.uploadState = true;
- return true;
- };
- const handleSuccess = (any, UploadFile) => {
- UploadFile.raw.uploadState = false;
- };
- const onPreviewFile = (file) => {
- window.open(file.raw.fileUrl, "_blank");
- };
- const clickSplit = (item) => {
- formData.data.contractShipmentList.push({
- productCode: item.code,
- productId: item.productId,
- productName: item.productName,
- shipmentTime: "",
- quantity: undefined,
- });
- };
- const clickDelete = (index) => {
- formData.data.contractShipmentList.splice(index, 1);
- };
- watch(
- props.queryData,
- () => {
- formOption.disabled = judgeStatus();
- return;
- if (
- props.queryData &&
- ["10", "20", "30"].includes(route.query.processType)
- ) {
- for (var text in props.queryData) {
- if (text === "fileList" || text === "packageFileList") {
- if (props.queryData[text] && props.queryData[text].length > 0) {
- formData.data[text] = props.queryData[text].map((item) => {
- return {
- raw: item,
- name: item.fileName,
- url: item.fileUrl,
- };
- });
- }
- } else {
- formData.data[text] = props.queryData[text];
- }
- }
- if (formData.data.countryId) {
- getCityData(formData.data.countryId, "20");
- }
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- getDecisionAids();
- }
- },
- {
- deep: true,
- }
- );
- onMounted(() => {
- formOption.disabled = judgeStatus();
- console.log(route.query, "qqda");
- if (route.query && route.query.businessId && route.query.processType) {
- let businessId = route.query.businessId;
- proxy.post("/contract/detail", { id: businessId }).then((res) => {
- if (!res.fileList) {
- res.fileList = [];
- }
- if (!res.packageFileList) {
- res.packageFileList = [];
- }
- res.countryId = res.buyCountryId;
- res.provinceId = res.buyProvinceId;
- res.cityId = res.buyCityId;
- for (const key in res) {
- formData.data[key] = res[key];
- }
- proxy
- .post("/fileInfo/getList", {
- businessIdList: [businessId],
- })
- .then((fileObj) => {
- if (fileObj[businessId] && fileObj[businessId].length > 0) {
- formData.data.fileList = fileObj[businessId]
- .filter((x) => x.businessType === "1")
- .map((x) => ({ raw: x, name: x.fileName, url: x.fileUrl }));
- formData.data.packageFileList = fileObj[businessId]
- .filter((x) => x.businessType === "2")
- .map((x) => ({ raw: x, name: x.fileName, url: x.fileUrl }));
- }
- });
- if (
- formData.data.contractProductList &&
- formData.data.contractProductList.length > 0
- ) {
- for (let i = 0; i < formData.data.contractProductList.length; i++) {
- const e = formData.data.contractProductList[i];
- if (e.ehsdJson) {
- let obj = JSON.parse(e.ehsdJson);
- e.packMethod = obj.packMethod;
- e.tradeMethods = obj.tradeMethods;
- }
- }
- let ids = formData.data.contractProductList.map((x) => x.productId);
- proxy
- .post("/fileInfo/getList", {
- businessIdList: ids,
- })
- .then((fileObj) => {
- for (let i = 0; i < formData.data.contractProductList.length; i++) {
- const e = formData.data.contractProductList[i];
- for (const key in fileObj) {
- if (e.productId === key) {
- e.fileList = fileObj[key] || [];
- if (e.fileList && e.fileList.length > 0) {
- e.fileUrl = e.fileList[0].fileUrl;
- }
- }
- }
- }
- });
- }
- if (formData.data.countryId) {
- getCityData(formData.data.countryId, "20");
- }
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- });
- } else if (
- route.query &&
- route.query.businessId &&
- !route.query.processType
- ) {
- let businessId = route.query.businessId;
- proxy.post("/contract/detail", { id: businessId }).then((res) => {
- if (!res.fileList) {
- res.fileList = [];
- }
- if (!res.packageFileList) {
- res.packageFileList = [];
- }
- res.countryId = res.buyCountryId;
- res.provinceId = res.buyProvinceId;
- res.cityId = res.buyCityId;
- for (const key in res) {
- formData.data[key] = res[key];
- }
- formData.data.oldContractId = formData.data.id;
- delete formData.data.id;
- delete formData.data.code;
- proxy
- .post("/fileInfo/getList", {
- businessIdList: [businessId],
- })
- .then((fileObj) => {
- if (fileObj[businessId] && fileObj[businessId].length > 0) {
- formData.data.fileList = fileObj[businessId]
- .filter((x) => x.businessType === "1")
- .map((x) => ({ raw: x, name: x.fileName, url: x.fileUrl }));
- formData.data.packageFileList = fileObj[businessId]
- .filter((x) => x.businessType === "2")
- .map((x) => ({ raw: x, name: x.fileName, url: x.fileUrl }));
- }
- });
- if (
- formData.data.contractProductList &&
- formData.data.contractProductList.length > 0
- ) {
- for (let i = 0; i < formData.data.contractProductList.length; i++) {
- const e = formData.data.contractProductList[i];
- if (e.ehsdJson) {
- let obj = JSON.parse(e.ehsdJson);
- e.packMethod = obj.packMethod;
- e.tradeMethods = obj.tradeMethods;
- }
- }
- let ids = formData.data.contractProductList.map((x) => x.productId);
- proxy
- .post("/fileInfo/getList", {
- businessIdList: ids,
- })
- .then((fileObj) => {
- for (let i = 0; i < formData.data.contractProductList.length; i++) {
- const e = formData.data.contractProductList[i];
- for (const key in fileObj) {
- if (e.productId === key) {
- e.fileList = fileObj[key] || [];
- if (e.fileList && e.fileList.length > 0) {
- e.fileUrl = e.fileList[0].fileUrl;
- }
- }
- }
- }
- });
- }
- // if (
- // formData.data.contractProjectList &&
- // formData.data.contractProjectList.length > 0
- // ) {
- // formData.data.contractProjectList =
- // formData.data.contractProjectList.map((x) => {
- // delete x.id;
- // return x;
- // });
- // }
- // if (
- // formData.data.contractShipmentList &&
- // formData.data.contractShipmentList.length > 0
- // ) {
- // formData.data.contractShipmentList =
- // formData.data.contractShipmentList.map((x) => {
- // delete x.id;
- // return x;
- // });
- // }
- if (formData.data.countryId) {
- getCityData(formData.data.countryId, "20");
- }
- if (formData.data.provinceId) {
- getCityData(formData.data.provinceId, "30");
- }
- });
- }
- });
- </script>
- <style lang="scss" scoped>
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- .pic {
- object-fit: contain;
- width: 50px;
- height: 50px;
- cursor: pointer;
- vertical-align: middle;
- }
- .shrinkPadding {
- padding-right: 0 !important;
- }
- .hideCollapse {
- margin-top: -62px;
- border: 0 !important;
- }
- ::v-deep(.el-collapse-item__arrow) {
- display: none !important;
- }
- ::v-deep(.el-collapse-item__wrap) {
- border: 0 !important;
- }
- ::v-deep(.el-collapse-item__header) {
- border: 0 !important;
- }
- </style>
|