123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418 |
- //检斤管理
- <template>
- <div class="center">
- <div class="substance">
- <div class="left">
- <BalanceAlert v-if="isShowBalance" ref="weightChild" :deptBudgetList="deptBudgetList" :information="information"
- v-on:balanceListen="setVal" class="zujian">
- </BalanceAlert>
- <div class="top">
- <div class="confirmWeight">
- <div class="titleWeight">确认重量</div>
- <div v-if="index == 0" class="weight">
- {{ weighingList.grossWeight }} <span class="kg-style">kg</span>
- </div>
- <div v-else class="weight">
- {{ weighingList.tare }} <span class="kg-style">kg</span>
- </div>
- </div>
- <div class="confirmInfo">
- <div class="car-type">车牌号</div>
- <div class="car-no">{{ carWeightInfo.carNumber }}</div>
- </div>
- </div>
- <div class="bottom">
- <div class="bg-left titleup"><span class="word_css">实时监控</span></div>
- <div v-if="!monitorUrl1" class="video1">
- <img src="../../../public/img/quesheng@2x.png" alt="" class="img1" />
- <div>监控视频未连接</div>
- </div>
- <div v-else class="video1">
- <iframe :src="monitorUrl1" width="440" height="360" allowfullscreen="true" webkitallowfullscreen="true"
- mozallowfullscreen="true" allow="autoplay; fullscreen; microphone;"></iframe>
- </div>
- <div v-if="!monitorUrl2" class="video1">
- <img src="../../../public/img/quesheng@2x.png" alt="" class="img1" />
- <div>监控视频未连接</div>
- </div>
- <div v-else class="video2">
- <iframe :src="monitorUrl2" width="440" height="360" allowfullscreen="true" webkitallowfullscreen="true"
- mozallowfullscreen="true" allow="autoplay; fullscreen; microphone;"></iframe>
- </div>
- </div>
- </div>
- <div class="right">
- <ws-form class="right-content">
- <div class="left1">
- <div class="titlesign weightTitle">
- <span class="word_css">检斤信息</span>
- </div>
- <div class="weightInfo">
- <div class="tab">
- <div :class="inWarehouseType == 1 ? 'in_css':'in_cssno'" @click="WarehousingType(1)">贸易入库</div>
- <div :class="inWarehouseType == 3 ? 'in_css':'in_cssno'" @click="WarehousingType(3)">收购入库</div>
- </div>
- <div class="tab weigh_btn">
- <el-badge :value="mListTop.length" class="badge_item">
- <div :class="tpyeNo == 1 ? 'in_css1':'in_cssno1'" @click="tabClick(0)">称毛重</div>
- </el-badge>
- <el-badge :value="pListTop.length" class="badge_item">
- <div :class="tpyeNo == 2 ? 'in_css1':'in_cssno1'" @click="tabClick(1)">称皮重</div>
- </el-badge>
- </div>
- <ws-info-table>
- <ws-form-item label="业务编号" span="1" prop="number">
- <ws-input v-model="weighingList.number" placeholder="自动获取,不可编辑" maxlength="100" disabled
- size="small" />
- </ws-form-item>
- <ws-form-item label="合同编号" span="1" prop="contractNo" v-show="inWarehouseType == 1"
- v-if="weighingList.contractNo">
- <ws-input v-model="weighingList.contractNo" placeholder="自动获取,不可编辑" maxlength="100" disabled
- size="small" />
- </ws-form-item>
- <ws-form-item label="移库编号" span="1" prop="moveTaskNo" v-show="inWarehouseType == 1" v-else>
- <ws-input v-model="weighingList.moveTaskNo" placeholder="自动获取,不可编辑" maxlength="100" size="small"
- disabled />
- </ws-form-item>
- <ws-form-item label="客户" span="1" prop="customer" v-if="inWarehouseType == 3">
- <ws-input v-model="weighingList.customer" placeholder="自动获取,不可编辑" maxlength="100" disabled
- size="small" />
- </ws-form-item>
- <ws-form-item label="货名" span="1" prop="goodsName">
- <ws-input v-model="weighingList.goodsName" placeholder="自动获取,不可编辑" maxlength="100" disabled
- size="small" />
- </ws-form-item>
- <ws-form-item label="车牌号" span="1" prop="carNumber">
- <ws-input v-model="weighingList.carNumber" placeholder="自动获取,不可编辑" maxlength="100" size="small"
- disabled />
- </ws-form-item>
- <ws-form-item label="运输方式" span="1" prop="outType" v-if="inWarehouseType == 1">
- <ws-input v-model="weighingList.outType" placeholder="自动获取,不可编辑" maxlength="100" size="small"
- disabled />
- </ws-form-item>
- <ws-form-item label="箱号-1" span="1" prop="boxNo">
- <ws-input v-model="weighingList.boxNo" placeholder="自动获取,不可编辑" maxlength="20" size="small" disabled/>
- </ws-form-item>
- <ws-form-item label="封号-1" span="1" prop="titleNo">
- <ws-input v-model="weighingList.titleNo" placeholder="自动获取,不可编辑" maxlength="20" size="small" disabled/>
- </ws-form-item>
- <ws-form-item label="箱号-2" span="1" prop="boxNoOther">
- <ws-input v-model="weighingList.boxNoOther" placeholder="自动获取,不可编辑" maxlength="20" size="small" disabled/>
- </ws-form-item>
- <ws-form-item label="封号-2" span="1" prop="titleNoOther">
- <ws-input v-model="weighingList.titleNoOther" placeholder="自动获取,不可编辑" maxlength="20" size="small" disabled />
- </ws-form-item>
- <ws-form-item label="毛重(KG)" span="1" prop="grossWeight">
- <ws-input type="number" @mousewheel.native.prevent v-if="index == 0"
- v-model="weighingList.grossWeight" @input="calculation(status)" placeholder="未获取到毛重" maxlength="100"
- size="small" :disabled="disabled" />
- <ws-input type="number" @mousewheel.native.prevent v-else v-model="weighingList.grossWeight"
- @input="calculation" placeholder="未获取到毛重" maxlength="100" size="small" disabled />
- <el-button class="butCss" @click="openPort" v-if="index == 0">重新获取</el-button>
- </ws-form-item>
- <ws-form-item label="皮重(KG)" span="1" prop="tare" v-if="information == '皮重'">
- <ws-input type="number" @mousewheel.native.prevent v-model="weighingList.tare" @input="calculation"
- placeholder="未获取到皮重" maxlength="100" size="small" :disabled="disabled" />
- <el-button class="butCss" v-if="index != 0" @click="openPort">重新获取</el-button>
- </ws-form-item>
- <div class="formItem">
- <ws-form-item label="扣重(KG)" span="1" prop="buckleMiscellaneous"
- v-if="information == '皮重' && (paramType == '2' || inWarehouseType == 1)">
- <ws-input type="number" @mousewheel.native.prevent v-model="weighingList.buckleMiscellaneous"
- @input="calculation" placeholder="请输入扣重" maxlength="100" size="small" />
- </ws-form-item>
- <ws-form-item label="净重(KG)" span="1" prop="netWeight" v-if="information == '皮重'">
- <ws-input type="number" @mousewheel.native.prevent v-model="weighingList.netWeight"
- placeholder="自动计算,不可编辑" maxlength="100" size="small" disabled />
- </ws-form-item>
- <!-- <ws-form-item label="应收卸车过磅费(元)" span="1" prop="receivableWeighingFee" v-if="index == 1">
- <ws-input type="number" v-model="weighingList.receivableWeighingFee" placeholder="未获取到卸车过磅费金额"
- maxlength="100" size="small" disabled />
- </ws-form-item>
- <ws-form-item label="实收卸车过磅费(元)" span="1" prop="actualWeighingFee" v-if="index == 1">
- <ws-input type="number" v-model="weighingList.actualWeighingFee" placeholder="输入卸车过磅费" maxlength="100"
- size="small" />
- </ws-form-item> -->
- </div>
- </ws-info-table>
- <div class="but">
- <!-- <el-button @click="print" type="primary" :disabled="submitAllow">提交</el-button> -->
- <el-button @click="print" v-if="information == '毛重'" type="primary">保存</el-button>
- <el-button @click="print(1)" v-if="information == '皮重'" type="primary">保存并打印
- </el-button>
- </div>
- <!-- <div>
- <div>粮源</div>
- <div class='stocks' v-for='(item,index) in stocks'>
- <el-select v-model="item.warehouseName" filterable placeholder="选择所属仓库" @change="warehouseNameChange" :value="searchType">
- <el-option v-for="item in warehouseList" :key="item.value" :label="item.value" :value="item.value"
- style="color: #8890b1" />
- </el-select>
- <ws-input v-model="item.cost" placeholder="输入重量" maxlength="100"
- size="small" />
- <ws-input v-model="item.cost" placeholder="输入成本" maxlength="100"
- size="small" />
- <img class='add' @click='addstocks(index)' src="../../../public/img/add.png" alt="">
- <img class='del' @click='delstocks(index)' src="../../../public/img/del.png" alt="">
- </div>
- </div> -->
- </div>
- </div>
- <div class="car-right">
- <div class="screen">
- <el-select v-model="warehouseName" placeholder="请选择仓库名" @change="warehouseNameChange">
- <el-option v-for="item in warehouseList" :key="item.id" :label="item.warehouseName"
- :value="item.warehouseName">
- </el-option>
- </el-select>
- <el-button @click='refreshClick(1)' type="primary">刷新</el-button>
- <el-button @click='refreshClick' type="primary">{{timer?refresh:'自动刷新'}}</el-button>
- <!-- <el-checkbox v-model="checked">默认</el-checkbox> -->
- </div>
- <div class="screen frame">
- <div class="screen_left">
- <div @click="cutstatus(1)" :class="status==1?'select_css':'noselect_css'"
- v-if="!(inWarehouseType == 1 && tpyeNo == 2)">未称{{information}}</div>
- <div @click="cutstatus(2)" :class="status==2?'select_css':'noselect_css'"
- v-if="!(inWarehouseType == 1 && tpyeNo == 2)">已称{{information}}</div>
- </div>
- <div class="screen_right">
- <div @click="record" v-hasPermission="`acquisitionManagement.acquisitionWeight.view`" class="jilu">记录
- </div>
- </div>
- </div>
- <el-table ref="singleTable" :data="carList" highlight-current-row @current-change="handleCurrentChange"
- style="width: 100%; overflow-y: scroll !important;; height: calc(100vh - 54vh);margin-top:20px">
- <el-table-column property="number" label="业务编号">
- </el-table-column>
- <el-table-column property="carNumber" label="车牌号">
- </el-table-column>
- <el-table-column property="status" label="状态">
- </el-table-column>
- </el-table>
- <div style="text-align: center">
- <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
- :current-page="currentPage" :page-size="pageSize" layout="total, sizes, prev, pager, next, jumper"
- :total="deptBudgetTotal">
- </el-pagination>
- </div>
- <!-- <div class="table-title">
- <div class="top">
- <div class="top-item first"></div>
- <div class="top-item">编号</div>
- <div class="top-item">车牌号</div>
- </div>
- <div class="top">
- <div></div>
- <div class="top-item"></div>
- <div class="top-item">编号</div>
- <div class="top-item">车牌号</div>
- </div>
- </div>
- <div class="table">
- <div class="table-content" v-for="(item,index) in 30" :key="index">
- <div class="table-content-item"><input type="radio"></div>
- <div class="table-content-item">xxxxxxxxxxxxx</div>
- <div class="table-content-item">辽A11111</div>
- </div>
- </div> -->
- </div>
- </ws-form>
- </div>
- </div>
- <el-dialog width="70%" class="table-content" center :visible.sync="isShowPrint" title="粮食检斤单" @opened="opendBtn"
- @close="closeDialog" :close-on-click-modal="false">
- <weightCheckPrint :tableData="inspect" ref="saveImg"></weightCheckPrint>
- <div style="text-align: center">
- <el-button type="primary" @click="closePrint">关闭</el-button>
- <el-button type="primary" @click="printSmall">打印小票</el-button>
- <el-button type="primary" @click="printBig">打印单据</el-button>
- </div>
- </el-dialog>
- <div class="mask" v-show="isShowPrintType"></div>
- <div class="print-type" v-show="isShowPrintType">
- <div class="print-type-content">
- <div class="print-type-title">请选择打印类型</div>
- <div class="print-type-checkbox">
- <!-- <el-radio-group v-model="radio">
- <el-radio label="A4" class="label-width" @change="selectType">A4</el-radio>
- <el-radio label="A5" class="label-width" @change="selectType">A5</el-radio>
- </el-radio-group> -->
- </div>
- <div class="shdw-style" v-if="checked||(!ddchecked&&!checked)">
- <div>收货单位:</div>
- <!-- <div>{{companyName}}</div> -->
- <el-select v-model="companyName" placeholder="请选择" style="width: 75%;">
- <el-option v-for="item in companyNameOptions" :key="item.value" :label="item.label" :value="item.value">
- </el-option>
- </el-select>
- </div>
- <div v-if="warehouseName=='鲅鱼圈金信库'||warehouseName=='白城内陆港'||warehouseName=='哈尔滨依兰库'||warehouseName=='山东园丰库'">
- <div class="print-type-ew">
- <el-checkbox v-model="checked" @change="changeEw">打印额外票据</el-checkbox>
- <el-checkbox v-model="ddchecked" @change="changeEwDD">单独打印额外票据</el-checkbox>
- </div>
- <div class="ew-print" v-if="printSeparately">
- <div class="row">
- <div>额外客户姓名:</div>
- <!-- <div>{{companyName}}</div> -->
- <el-select v-model="ewCustomer" placeholder="请选择" style="width: 75%;">
- <el-option v-for="item in ewCustomerOptions" :key="item.value" :label="item.label" :value="item.value">
- </el-option>
- </el-select>
- </div>
- <div class="row">
- <div>额外收货单位:</div>
- <!-- <div>{{companyNameEW}}</div> -->
- <el-select v-model="companyNameEW" placeholder="请选择" style="width: 75%;">
- <el-option v-for="item in companyNameEWOptions" :key="item.value" :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </div>
- </div>
- </div>
- </div>
- <div class="bottom-btn">
- <el-button @click="typePrintClick">确定</el-button>
- <el-button @click="typePrintCannelClick">取消</el-button>
- </div>
- </div>
- </div>
- </template>
- <script>
- import {
- tare,
- grossWeight,
- getamount,
- getPrint,
- getweighingList,
- getinspectLookGoods,
- selectWarehouseSelf,
- getsettleaccout,
- newSubmit
- } from '@/model/houseSelfCollect/index'
- import {
- addstorageputList
- } from '@/model/warehouse/index'
- import weightCheckPrint from './component/weightCheckPrint.vue'
- import BalanceAlert from '@/components/balanceAlert'
- import html2canvas from 'html2canvas'
- import axios from 'axios'
- export default {
- components: {
- weightCheckPrint,
- BalanceAlert,
- },
- watch: {
- '$route'(to, from) {
- if (to.name == 'newWeighingManagement') {
- this.isShowBalance = true
- var _saomaData = JSON.parse(localStorage.getItem('saoma_data')) //判断是否扫码进来的
- // }
- //仓库
- selectWarehouseSelf({
- compId: localStorage.getItem('ws-pf_compId'),
- })
- .toPromise()
- .then((response) => {
- this.warehouseList = response
- if (_saomaData) { //缓存中有值,证明扫码进来的
- this.warehouseName = _saomaData.warehouseName
- this.cangid = _saomaData.cangid
- this.monitorUrl1 = _saomaData.monitorUrl1
- this.monitorUrl2 = _saomaData.monitorUrl2
- this.allowEdit = _saomaData.allowEdit
- this.id = _saomaData.id
- this.tpyeNo = _saomaData.typeNo
- if (_saomaData.managementType) {
- this.inWarehouseType = _saomaData.managementType
- }
- localStorage.removeItem('saoma_data'); //第一次进来结束后清除缓存
- } else if (localStorage.getItem('houseSelfCollect_house1')) {
- this.warehouseName = JSON.parse(localStorage.getItem('houseSelfCollect_house1')).value
- for (var i = 0; i < response.length; i++) {
- if (this.warehouseName == this.warehouseList[i].warehouseName) {
- this.cangid = this.warehouseList[i].id
- this.monitorUrl1 = this.warehouseList[i].monitorUrl1
- this.monitorUrl2 = this.warehouseList[i].monitorUrl2
- this.allowEdit = this.warehouseList[i].allowEdit
- break
- }
- }
- } else {
- localStorage.setItem('houseSelfCollect_house1', JSON.stringify({
- value: this.warehouseList[0].warehouseName,
- warehouseId: this.warehouseList[0].id,
- count: this.warehouseList[0].count,
- No: this.warehouseList[0].commonWarehouseNo,
- allowEdit: this.warehouseList[0].allowEdit,
- compId: localStorage.getItem('ws-pf_compId')
- }))
- this.warehouseName = this.warehouseList[0].warehouseName
- localStorage.setItem('ck', this.warehouseName)
- this.cangid = this.warehouseList[0].id
- this.allowEdit = this.warehouseList[0].allowEdit
- this.monitorUrl1 = this.warehouseList[0].monitorUrl1
- this.monitorUrl2 = this.warehouseList[0].monitorUrl2
- }
- this.deptBudgetList.warehouseName = this.warehouseName
- if (this.allowEdit == 0) {
- this.disabled = true
- } else if (this.allowEdit == 1) {
- this.disabled = false
- }
- if (this.tpyeNo == 1) {
- this.information = '毛重'
- this.weighingList.tare = 0
- } else if (this.tpyeNo == 2) {
- this.information = '皮重'
- }
- this.getList()
- })
- }
- },
- weighingList: {
- //深度监听,可监听到对象、数组的变化
- handler(val, oldVal) {
- if (val.tare) {
- if (this.weighingList.buckleMiscellaneous) {
- this.weighingList.netWeight =
- this.weighingList.grossWeight -
- val.tare -
- this.weighingList.buckleMiscellaneous
- } else {
- this.weighingList.netWeight =
- this.weighingList.grossWeight - val.tare
- }
- }
- },
- deep: true, //true 深度监听
- }
- },
- data() {
- return {
- timer: '',
- refresh: 60,
- isShowBalance: false,
- currentPage: 1,
- pageSize: 50,
- deptCircularPage: {},
- deptBudgetTotal: 0,
- pList: [],
- mList: [],
- index: 0,
- status: 1,
- carList: [],
- carWeightInfo: {
- carNumber: '',
- type: '',
- weight: '',
- },
- currentRow: null,
- inspect: {},
- types: 1,
- information: '',
- weighingList: {
- grossWeight: '',
- tare: '',
- buckleMiscellaneous: 0,
- netWeight: 0,
-
- receivableWeighingFee: '',
- qualityInspectionManagement: {
- boxNo: '暂无',
- boxNoOther: '暂无',
- titleNo: '暂无',
- titleNoOther: '暂无',
- }
- },
- deptBudgetList: {},
- tpyeNo: '1',
- disabled: true,
- relationId: '',
- // warehouseId: '',
- purchasePriceList: [],
- isShowPrint: false,
- tableData: {},
- reader: null,
- param: 9600,
- monitorUrl1: '', //监控地址
- monitorUrl2: '', //监控地址
- cangid: '',
- paramType: '1', //参数类型 1 扣重比 2 降幅
- warehouseName: '',
- result1: '00',
- allowEdit: 0,
- mListTop: [],
- mListBottom: [],
- stocks: [{
- warehouseName: '',
- weight: '',
- cost: ''
- }],
- pListTop: [],
- carList1: [],
- pListBottom: [],
- warehouseList: [], //仓库
- checked: false,
- inWarehouseType: 1, //入库类型
- mListTotal: [],
- pListTotal: [],
- submitAllow: false,
- id: '',
- inOutData: {},
- idPrint: '',
- ewCustomerOptions: [{
- value: '黑龙江利润元粮食贸易有限公司',
- label: '黑龙江利润元粮食贸易有限公司'
- }, {
- value: '黑龙江众利合粮食贸易有限公司',
- label: '黑龙江众利合粮食贸易有限公司'
- }, {
- value: '黑龙江鑫满仓粮食贸易有限公司',
- label: '黑龙江鑫满仓粮食贸易有限公司'
- }, {
- value: '黑龙江中天昊元贸易有限公司',
- label: '黑龙江中天昊元贸易有限公司'
- }],
- companyNameOptions: [{
- value: '黑龙江利润元粮食贸易有限公司',
- label: '黑龙江利润元粮食贸易有限公司'
- }, {
- value: '黑龙江众利合粮食贸易有限公司',
- label: '黑龙江众利合粮食贸易有限公司'
- }, {
- value: '黑龙江鑫满仓粮食贸易有限公司',
- label: '黑龙江鑫满仓粮食贸易有限公司'
- }, {
- value: '黑龙江中天昊元贸易有限公司',
- label: '黑龙江中天昊元贸易有限公司'
- }, ],
- companyNameEWOptions: [{
- value: '厦门建发物产有限公司',
- label: '厦门建发物产有限公司'
- }],
- companyName: '黑龙江利润元粮食贸易有限公司',
- companyNameEW: '厦门建发物产有限公司',
- ewCustomer: '黑龙江利润元粮食贸易有限公司',
- ewradio: '',
- ddchecked: false,
- checked: false,
- isShowPrintType: false,
- dialogDataList: [],
- statusType: 1,
- jjSelectPrintList: [],
- printSeparately: false,
- }
- },
- beforeDestroy() {
- if (this.timer) { //如果定时器还在运行 或者直接关闭,不用判断
- clearInterval(this.timer); //关闭
- }
- },
- mounted() {
- this.isShowBalance = true
- var _saomaData = JSON.parse(localStorage.getItem('saoma_data')) //判断是否扫码进来的
- // }
- //仓库
- selectWarehouseSelf({
- compId: localStorage.getItem('ws-pf_compId'),
- })
- .toPromise()
- .then((response) => {
- this.warehouseList = response
- if (_saomaData) { //缓存中有值,证明扫码进来的
- this.warehouseName = _saomaData.warehouseName
- this.cangid = _saomaData.cangid
- this.monitorUrl1 = _saomaData.monitorUrl1
- this.monitorUrl2 = _saomaData.monitorUrl2
- this.allowEdit = _saomaData.allowEdit
- this.id = _saomaData.id
- this.tpyeNo = _saomaData.typeNo
- if (_saomaData.managementType) {
- this.inWarehouseType = _saomaData.managementType
- }
- localStorage.removeItem('saoma_data'); //第一次进来结束后清除缓存
- } else if (localStorage.getItem('houseSelfCollect_house1')) {
- this.warehouseName = JSON.parse(localStorage.getItem('houseSelfCollect_house1')).value
- for (var i = 0; i < response.length; i++) {
- if (this.warehouseName == this.warehouseList[i].warehouseName) {
- this.cangid = this.warehouseList[i].id
- this.monitorUrl1 = this.warehouseList[i].monitorUrl1
- this.monitorUrl2 = this.warehouseList[i].monitorUrl2
- this.allowEdit = this.warehouseList[i].allowEdit
- break
- }
- }
- } else {
- localStorage.setItem('houseSelfCollect_house1', JSON.stringify({
- value: this.warehouseList[0].warehouseName,
- warehouseId: this.warehouseList[0].id,
- count: this.warehouseList[0].count,
- No: this.warehouseList[0].commonWarehouseNo,
- allowEdit: this.warehouseList[0].allowEdit,
- compId: localStorage.getItem('ws-pf_compId')
- }))
- this.warehouseName = this.warehouseList[0].warehouseName
- localStorage.setItem('ck', this.warehouseName)
- this.cangid = this.warehouseList[0].id
- this.allowEdit = this.warehouseList[0].allowEdit
- this.monitorUrl1 = this.warehouseList[0].monitorUrl1
- this.monitorUrl2 = this.warehouseList[0].monitorUrl2
- }
- this.deptBudgetList.warehouseName = this.warehouseName
- if (this.allowEdit == 0) {
- this.disabled = true
- } else if (this.allowEdit == 1) {
- this.disabled = false
- }
- if (this.tpyeNo == 1) {
- this.information = '毛重'
- this.weighingList.tare = ''
- } else if (this.tpyeNo == 2) {
- this.information = '皮重'
- }
- this.getList()
- })
- },
- activated() {
- // if (!this.$route.query.grossWeight) {
- // this.$route.query.grossWeight = 0
- // } else {
- // this.weighingList.grossWeight = this.$route.query.grossWeight
- // }
- // this.allowEdit = this.$route.query.allowEdit
- // this.$route.query.automaticWeightAcquisition = 0
- // if(this.$route.query.automaticWeightAcquisition == '1'){
- // this.openPort()
- // this.isShowBalance = true
- // }
- // if (this.$route.query.automaticWeightAcquisition == '1') {
- },
- methods: {
- refreshClick(type) {
- let that = this
- if (type == 1) {
- getweighingList({
- compId: localStorage.getItem('ws-pf_compId'),
- currentPage: that.currentPage,
- pageSize: that.pageSize,
- searchKeyWord: '',
- warehouseName: that.warehouseName,
- managementType: 1,
- serviceManagementType: that.inWarehouseType,
- loadingstatus: 1,
- // statusType:1
- })
- .toPromise()
- .then((response) => {
- that.common.commonWeighingList = response.records
- that.makeData()
- getweighingList({
- compId: localStorage.getItem('ws-pf_compId'),
- currentPage: that.currentPage,
- pageSize: that.pageSize,
- searchKeyWord: '',
- statusType: that.statusType,
- warehouseName: that.warehouseName,
- managementType: 1,
- serviceManagementType: that.inWarehouseType,
- loadingstatus: 1,
- // statusType:1
- })
- .toPromise()
- .then((response) => {
- that.deptBudgetTotal = response.total
- // that.weighingList = response.records
- })
- .catch((response) => {
- // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- })
- })
- .catch((response) => {
- // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- })
-
- } else {
- clearInterval(that.timer)
- that.refresh = 60
- that.timer = setInterval(function() {
- // console.log(that.refresh)
- if (that.refresh == 0) {
- that.refresh = 60
- getweighingList({
- compId: localStorage.getItem('ws-pf_compId'),
- currentPage: that.currentPage,
- pageSize: that.pageSize,
- searchKeyWord: '',
- warehouseName: that.warehouseName,
- managementType: 1,
- serviceManagementType: that.inWarehouseType,
- loadingstatus: 1,
- // statusType:1
- })
- .toPromise()
- .then((response) => {
- that.common.commonWeighingList = response.records
- that.makeData()
- getweighingList({
- compId: localStorage.getItem('ws-pf_compId'),
- currentPage: that.currentPage,
- pageSize: that.pageSize,
- searchKeyWord: '',
- statusType: that.statusType,
- warehouseName: that.warehouseName,
- managementType: 1,
- serviceManagementType: that.inWarehouseType,
- loadingstatus: 1,
- // statusType:1
- })
- .toPromise()
- .then((response) => {
- that.deptBudgetTotal = response.total
- // that.weighingList = response.records
- })
- .catch((response) => {
- // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- })
- })
- .catch((response) => {
- // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- })
-
- }
- that.refresh--
- }, 1000);
- }
- },
- changeEw(e) {
- this.ddchecked = false
- if (e) {
- this.printSeparately = true
- } else {
- this.printSeparately = false
- }
- },
- changeEwDD(e) {
- this.checked = false
- if (e) {
- this.printSeparately = true
- } else {
- this.printSeparately = false
- }
- },
- typePrintCannelClick() {
- this.ddchecked = false,
- this.checked = false,
- this.dialogDataList = [] //打个打印取消时数组至空
- this.isShowPrintType = false
- },
- async typePrintClick(type) {
- getPrint({
- id: this.idPrint
- })
- .toPromise()
- .then((response) => {
- this.dialogDataList = [] //点击确认时先清空要打印的数组
- this.dialogData = response
- if (response.compName == '黑龙江秋收有限公司') {
- this.dialogData.compName = '黑龙江中天昊元贸易有限公司'
- }
- if (this.checked) {
- this.dialogDataList.push(this.dialogData)
- var _datas = JSON.stringify(this.dialogData)
- _datas = JSON.parse(_datas)
- _datas.compName = this.companyNameEW;
- _datas.customer = this.ewCustomer
- this.dialogDataList.push(_datas)
- } else if (this.ddchecked) {
- _datas = this.dialogData
- _datas.compName = this.companyNameEW;
- _datas.customer = this.ewCustomer
- this.dialogDataList.push(_datas)
- } else {
- this.dialogData.compName = this.companyName
- this.dialogDataList.push(this.dialogData)
- }
- window.open('../../../../static/weightCheck.html?type=2&tableData=' + JSON.stringify(this.dialogDataList).replace(/%/g, 'baifenhao'))
- // this.printBig("", this.radio)
- })
- .catch((response) => {})
- },
- warehouseNameChange() {
- localStorage.setItem('ck', this.warehouseName)
- this.weighingList.warehouseName = this.warehouseName
- this.deptBudgetList.warehouseName = this.warehouseName
- for (var i = 0; i < this.warehouseList.length; i++) {
- if (this.warehouseName == this.warehouseList[i].warehouseName) {
- localStorage.setItem('houseSelfCollect_house1', JSON.stringify({
- value: this.warehouseList[i].warehouseName,
- warehouseId: this.warehouseList[i].id,
- count: this.warehouseList[i].count,
- No: this.warehouseList[i].commonWarehouseNo,
- allowEdit: this.warehouseList[i].allowEdit,
- compId: localStorage.getItem('ws-pf_compId')
- }))
- this.cangid = this.warehouseList[i].id
- this.monitorUrl1 = this.warehouseList[i].monitorUrl1
- this.monitorUrl2 = this.warehouseList[i].monitorUrl2
- this.allowEdit = this.warehouseList[i].allowEdit
- if (this.allowEdit == 0) {
- this.disabled = true
- } else if (this.allowEdit == 1) {
- this.disabled = false
- }
- }
- }
- this.getList()
- },
- record() {
- this.$router.push({
- path: 'weightCheckRecord',
- query: {
- inWarehouseType: this.inWarehouseType,
- warehouseName: this.warehouseName
- }
- })
- },
- WarehousingType(num) {
- this.inWarehouseType = num
- if (this.inWarehouseType == 1 && this.status == 2) {
- this.status = 1
- }
- this.getList()
- },
- setVal(data) {
- if (this.information == '毛重') {
- this.weighingList.grossWeight = data
- } else {
- this.weighingList.tare = data
- }
- },
- openPort() {
- this.$refs.weightChild.openPort()
- },
- cutstatus(status) {
- this.status = status
- if (status == 2) {
- if (this.tpyeNo == 1) {
- this.statusType = 1
- this.getList()
- // this.carList = this.carList1.filter(function(item) {
- // return item.status == '已称毛重'
- // })
- } else {
- this.statusType = 3
- this.getList()
- // this.carList = this.carList1.filter(function(item) {
- // return item.status == '已称皮重'
- // })
- }
- } else {
- if (this.tpyeNo == 1) {
- this.statusType = 1
- this.getList()
- // this.mListTop.concat(this.mListBottom)
- // this.carList = this.carList1.filter(function(item) {
- // return item.status == '已质检'
- // })
- } else {
- this.statusType = 2
- this.getList()
- // this.carList = this.carList1.filter(function(item) {
- // return item.status == '已称毛重'
- // })
- }
- }
- // this.deptBudgetTotal = this.carList.length
- },
- addstocks(index) {
- this.stocks.push({
- warehouseName: '',
- cost: ''
- })
- },
- delstocks(index) {
- this.stocks.splice(index, 1)
- },
- handleSizeChange(val) {
- console.log(`每页 ${val} 条`)
- this.pageSize = val
- this.getList()
- },
- getList() {
- // 货名
- getinspectLookGoods({
- warehouseId: this.cangid,
- }).toPromise()
- .then((response) => {
- this.purchasePriceList = response
- })
- this.refreshClick(1)
- // getweighingList({
- // compId: localStorage.getItem('ws-pf_compId'),
- // currentPage: this.currentPage,
- // pageSize: this.pageSize,
- // searchKeyWord: '',
- // warehouseName: this.warehouseName,
- // managementType: 1,
- // serviceManagementType: this.inWarehouseType,
- // // statusType:1
- // })
- // .toPromise()
- // .then((response) => {
- // this.common.commonWeighingList = response.records
- // this.makeData()
- // })
- // .catch((response) => {
- // // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- // })
- // getweighingList({
- // compId: localStorage.getItem('ws-pf_compId'),
- // currentPage: this.currentPage,
- // pageSize: this.pageSize,
- // searchKeyWord: '',
- // statusType: this.statusType,
- // warehouseName: this.warehouseName,
- // managementType: 1,
- // serviceManagementType: this.inWarehouseType,
- // // statusType:1
- // })
- // .toPromise()
- // .then((response) => {
- // this.deptBudgetTotal = response.total
- // this.weighingList = response.records
- // })
- // .catch((response) => {
- // // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- // })
- },
- makeData() {
- this.mList = []
- this.pList = []
- this.mListTop = []
- this.mListBottom = []
- this.pListTop = []
- this.pListBottom = []
- this.carWeightInfo.carNumber = ''
-
- let that = this
- let _list = this.common.commonWeighingList
- if(_list.length > 0 ){
- this.weighingList = []
- }
- for (let i = 0; i < _list.length; i++) {
- if (_list[i].paymentManagement) {
- if (
- _list[i].paymentManagement.status != '待结算' ||
- _list[i].paymentManagement.approveStatus
- ) {
- continue
- }
- }
- if (_list[i].status == '已质检') {
- this.mListTop.push(_list[i])
- }
- if (_list[i].status == '已称毛重') {
- this.mListBottom.push(_list[i])
- }
- if (_list[i].status == '已称皮重') {
- this.pListBottom.push(_list[i])
- }
- if (_list[i].status == '已称毛重') {
- this.pListTop.push(_list[i])
- }
- }
- if (this.status == 1) {
- this.mList = this.mListTop
- this.pList = this.pListTop
- } else {
- this.mList = this.mListBottom
- this.pList = this.pListBottom
- }
- this.mListTotal = this.mListTop.concat(this.mListBottom)
- this.pListTotal = this.pListTop.concat(this.pListBottom)
- if (this.information == '毛重') {
- this.index = 0
- console.log(this.mList)
- this.carList = this.mList
- this.carList1 = this.mListTotal
- if (this.mList.length != 0) {
- this.setCurrent(this.mList[0])
- this.weighingList = this.mList[0]
- this.carWeightInfo = {
- carNumber: this.mList[0].carNumber,
- type: this.information,
- weight: this.weighingList.grossWeight,
- }
- }
- } else {
- this.index = 1
- console.log(this.pList)
- this.carList = this.pList
- this.carList1 = this.pListTotal
- if (this.pList.length != 0) {
- this.setCurrent(this.pList[0])
- this.weighingList = this.pList[0]
- this.weighingList.inOutType = this.pList[0].qualityInspectionManagement.inOutType
- this.weighingList.inOutTypeKey = this.pList[0].qualityInspectionManagement.inOutTypeKey
- this.weighingList.deductionAmount = this.pList[0].qualityInspectionManagement.deductionAmount
- // console.log(this.weighingList)
- this.carWeightInfo = {
- carNumber: this.pList[0].carNumber,
- type: this.information,
- weight: this.weighingList.tare
- }
- }
- this.deptBudgetTotal = this.pList.length
- }
- this.weighingList.carModel = this.weighingList.qualityInspectionManagement.carModel
- //已下代码注释保留
- // if (this.weighingList.carModel == '单拖小柜') {
- // this.weighingList.receivableWeighingFee = 80
- // this.weighingList.actualWeighingFee = 80
- // } else if (this.weighingList.carModel == '双拖小柜') {
- // this.weighingList.receivableWeighingFee = 160
- // this.weighingList.actualWeighingFee = 160
- // } else if (this.weighingList.carModel == '大柜') {
- // if (this.weighingList.grossWeight / 1000 < 50) {
- // this.$set(this.weighingList, 'receivableWeighingFee', 120)
- // this.weighingList.actualWeighingFee = 120
- // this.$forceUpdate()
- // } else if (
- // this.weighingList.grossWeight / 1000 > 50 ||
- // this.weighingList.grossWeight / 1000 < 65
- // ) {
- // this.weighingList.receivableWeighingFee = 150
- // this.weighingList.actualWeighingFee = 150
- // } else if (
- // this.weighingList.grossWeight / 1000 > 65 ||
- // this.weighingList.grossWeight / 1000 < 75
- // ) {
- // this.weighingList.receivableWeighingFee = 170
- // this.weighingList.actualWeighingFee = 170
- // } else if (
- // this.weighingList.grossWeight / 1000 > 75 ||
- // this.weighingList.grossWeight / 1000 < 80
- // ) {
- // this.weighingList.receivableWeighingFee = 190
- // this.weighingList.actualWeighingFee = 190
- // } else if (
- // this.weighingList.grossWeight / 1000 > 80 ||
- // this.weighingList.grossWeight / 1000 < 85
- // ) {
- // this.weighingList.receivableWeighingFee = 210
- // this.weighingList.actualWeighingFee = 210
- // } else if (
- // this.weighingList.grossWeight / 1000 > 85 ||
- // this.weighingList.grossWeight / 1000 < 95
- // ) {
- // this.weighingList.receivableWeighingFee = 240
- // this.weighingList.actualWeighingFee = 240
- // } else if (
- // this.weighingList.grossWeight / 1000 > 95 ||
- // this.weighingList.grossWeight / 1000 < 105
- // ) {
- // this.weighingList.receivableWeighingFee = 260
- // this.weighingList.actualWeighingFee = 260
- // } else if (
- // this.weighingList.grossWeight / 1000 > 105 ||
- // this.weighingList.grossWeight / 1000 < 150
- // ) {
- // this.weighingList.receivableWeighingFee = 300
- // this.weighingList.actualWeighingFee = 300
- // }
- // } else if (this.weighingList.carModel == '挂车') {
- // if (this.weighingList.grossWeight / 1000 < 50) {
- // this.weighingList.receivableWeighingFee = 180
- // this.weighingList.actualWeighingFee = 180
- // } else if (
- // this.weighingList.grossWeight / 1000 > 50 ||
- // this.weighingList.grossWeight / 1000 < 65
- // ) {
- // this.weighingList.receivableWeighingFee = 200
- // this.weighingList.actualWeighingFee = 200
- // } else if (
- // this.weighingList.grossWeight / 1000 > 65 ||
- // this.weighingList.grossWeight / 1000 < 75
- // ) {
- // this.weighingList.receivableWeighingFee = 250
- // this.weighingList.actualWeighingFee = 250
- // } else if (
- // this.weighingList.grossWeight / 1000 > 75 ||
- // this.weighingList.grossWeight / 1000 < 85
- // ) {
- // this.weighingList.receivableWeighingFee = 350
- // this.weighingList.actualWeighingFee = 350
- // } else if (
- // this.weighingList.grossWeight / 1000 > 85 ||
- // this.weighingList.grossWeight / 1000 < 95
- // ) {
- // this.weighingList.receivableWeighingFee = 400
- // this.weighingList.actualWeighingFee = 400
- // } else if (
- // this.weighingList.grossWeight / 1000 > 95 ||
- // this.weighingList.grossWeight / 1000 < 105
- // ) {
- // this.weighingList.receivableWeighingFee = 450
- // this.weighingList.actualWeighingFee = 450
- // } else if (
- // this.weighingList.grossWeight / 1000 > 105 ||
- // this.weighingList.grossWeight / 1000 < 120
- // ) {
- // this.weighingList.receivableWeighingFee = 500
- // this.weighingList.actualWeighingFee = 500
- // } else if (
- // this.weighingList.grossWeight / 1000 > 120 ||
- // this.weighingList.grossWeight / 1000 < 130
- // ) {
- // this.weighingList.receivableWeighingFee = 550
- // this.weighingList.actualWeighingFee = 550
- // } else if (
- // this.weighingList.grossWeight / 1000 > 130 ||
- // this.weighingList.grossWeight / 1000 < 150
- // ) {
- // this.weighingList.receivableWeighingFee = 700
- // this.weighingList.actualWeighingFee = 700
- // }
- // } else if (this.weighingList.carModel == '冷藏箱(不抠箱)') {
- // if (this.weighingList.grossWeight / 1000 < 50) {
- // this.weighingList.receivableWeighingFee = 120
- // this.weighingList.actualWeighingFee = 120
- // } else if (
- // this.weighingList.grossWeight / 1000 > 50 ||
- // this.weighingList.grossWeight / 1000 < 65
- // ) {
- // this.weighingList.receivableWeighingFee = 150
- // this.weighingList.actualWeighingFee = 150
- // } else if (
- // this.weighingList.grossWeight / 1000 > 65 ||
- // this.weighingList.grossWeight / 1000 < 75
- // ) {
- // this.weighingList.receivableWeighingFee = 170
- // this.weighingList.actualWeighingFee = 170
- // } else if (
- // this.weighingList.grossWeight / 1000 > 75 ||
- // this.weighingList.grossWeight / 1000 < 80
- // ) {
- // this.weighingList.receivableWeighingFee = 190
- // this.weighingList.actualWeighingFee = 190
- // } else if (
- // this.weighingList.grossWeight / 1000 > 80 ||
- // this.weighingList.grossWeight / 1000 < 85
- // ) {
- // this.weighingList.receivableWeighingFee = 210
- // this.weighingList.actualWeighingFee = 210
- // } else if (
- // this.weighingList.grossWeight / 1000 > 85 ||
- // this.weighingList.grossWeight / 1000 < 95
- // ) {
- // this.weighingList.receivableWeighingFee = 240
- // this.weighingList.actualWeighingFee = 240
- // } else if (
- // this.weighingList.grossWeight / 1000 > 95 ||
- // this.weighingList.grossWeight / 1000 < 105
- // ) {
- // this.weighingList.receivableWeighingFee = 260
- // this.weighingList.actualWeighingFee = 260
- // } else if (
- // this.weighingList.grossWeight / 1000 > 105 ||
- // this.weighingList.grossWeight / 1000 < 120
- // ) {
- // this.weighingList.receivableWeighingFee = 300
- // this.weighingList.actualWeighingFee = 300
- // }
- // } else if (this.weighingList.carModel == '冷藏箱(抠箱)') {
- // if (this.weighingList.grossWeight / 1000 < 50) {
- // this.weighingList.receivableWeighingFee = 360
- // this.weighingList.actualWeighingFee = 360
- // } else if (
- // this.weighingList.grossWeight / 1000 > 50 ||
- // this.weighingList.grossWeight / 1000 < 65
- // ) {
- // this.weighingList.receivableWeighingFee = 390
- // this.weighingList.actualWeighingFee = 390
- // } else if (
- // this.weighingList.grossWeight / 1000 > 65 ||
- // this.weighingList.grossWeight / 1000 < 75
- // ) {
- // this.weighingList.receivableWeighingFee = 410
- // this.weighingList.actualWeighingFee = 410
- // } else if (
- // this.weighingList.grossWeight / 1000 > 75 ||
- // this.weighingList.grossWeight / 1000 < 80
- // ) {
- // this.weighingList.receivableWeighingFee = 430
- // this.weighingList.actualWeighingFee = 430
- // } else if (
- // this.weighingList.grossWeight / 1000 > 80 ||
- // this.weighingList.grossWeight / 1000 < 85
- // ) {
- // this.weighingList.receivableWeighingFee = 450
- // this.weighingList.actualWeighingFee = 450
- // } else if (
- // this.weighingList.grossWeight / 1000 > 85 ||
- // this.weighingList.grossWeight / 1000 < 95
- // ) {
- // this.weighingList.receivableWeighingFee = 480
- // this.weighingList.actualWeighingFee = 480
- // } else if (
- // this.weighingList.grossWeight / 1000 > 95 ||
- // this.weighingList.grossWeight / 1000 < 105
- // ) {
- // this.weighingList.receivableWeighingFee = 500
- // this.weighingList.actualWeighingFee = 500
- // } else if (
- // this.weighingList.grossWeight / 1000 > 105 ||
- // this.weighingList.grossWeight / 1000 < 120
- // ) {
- // this.weighingList.receivableWeighingFee = 540
- // this.weighingList.actualWeighingFee = 540
- // }
- // } else {
- // this.weighingList.receivableWeighingFee = ''
- // }
- },
- tabClick(val) {
- this.mListTop = []
- this.mListBottom = []
- this.pListTop = []
- this.pListBottom = []
- this.carWeightInfo.carNumber = ''
- this.weighingList = []
- this.index = val
- if (val == 0) {
- this.information = '毛重'
- this.tpyeNo = '1'
- } else {
- this.tpyeNo = '2'
- this.information = '皮重'
- }
- if (this.tpyeNo == 2 && this.inWarehouseType == 1) { //贸易入库不能二次称皮重(没有已称皮重按钮)
- this.status = 1 //手动更改未称皮重状态
- }
- this.getList()
- },
- setCurrent(row) {
- this.$refs.singleTable.setCurrentRow(row)
- },
- handleCurrentChange(val) {
- this.submitAllow = false
- if (val) {
- this.currentRow = val
- this.carWeightInfo = {
- carNumber: val.carNumber,
- type: this.information,
- weight: val.grossWeight,
- }
- this.weighingList = val
- if (val.qualityInspectionManagement) {
- this.weighingList.boxNo = val.qualityInspectionManagement.boxNo
- this.weighingList.boxNoOther = val.qualityInspectionManagement.boxNoOther
- this.weighingList.titleNo = val.qualityInspectionManagement.titleNo
- this.weighingList.titleNoOther = val.qualityInspectionManagement.titleNoOther
- if (this.tpyeNo == 2 && this.status == 1 && val && val.qualityInspectionManagement.confirm == 0 && this
- .warehouseName != '克东千丰库') {
- this.submitAllow = true
- this.$message({
- message: '该条质检信息未确认',
- type: 'warning'
- });
- }
- this.paramType = val.qualityInspectionManagement.paramType
- }
- }
- },
- cancel() {
- if (this.reader) {
- this.reader.cancel()
- }
- this.$router.push({
- path: 'weighingManagement',
- })
- },
- calculation(status) {
- // if (this.weighingList.grossWeight && this.weighingList.tare) {
- // this.weighingList.netWeight = this.weighingList.grossWeight - this.weighingList.tare - parseInt(this.weighingList.buckleMiscellaneous)
- // this.weighingList.netWeight = this.weighingList.netWeight.toFixed(2)
- // }
- },
- printSmall() {
- window.open(
- '../../../../static/weightCheck.html?type=1&tableData=' +
- JSON.stringify(this.inspect).replace(/%/g, 'baifenhao'))
- },
- printBig() {
- window.open(
- '../../../../static/weightCheck.html?type=2&tableData=' +
- JSON.stringify(this.inspect).replace(/%/g, 'baifenhao'))
- },
- opendBtn() {
- html2canvas(this.$refs.saveImg.$el).then((canvas) => {
- let dataURL = canvas.toDataURL('image/png')
- this.imgUrl = dataURL
- if (this.imgUrl !== '') {
- let b = this.dataURLtoFile(this.imgUrl, 'printImage')
- let formdata = new FormData()
- formdata.append('file', b)
- axios({
- method: 'post',
- url: 'https://www.zthymaoyi.com/upload/admin',
- data: formdata,
- }).then((response) => {
- //编辑接口
- this.weighingList.pictureAddress = response.data.url
- tare(this.weighingList)
- .toPromise()
- .then((response) => {})
- })
- }
- })
- },
- closeDialog() {
- html2canvas(this.$refs.saveImg.$el).then((canvas) => {
- let dataURL = canvas.toDataURL('image/png')
- this.imgUrl = dataURL
- if (this.imgUrl !== '') {
- let b = this.dataURLtoFile(this.imgUrl, 'printImage')
- let formdata = new FormData()
- formdata.append('file', b)
- axios({
- method: 'post',
- url: 'https://www.zthymaoyi.com/upload/admin',
- data: formdata,
- }).then((response) => {
- //编辑接口
- if (this.inWarehouseType == 1) {
- this.weighingList = this.inOutData
- this.weighingList.pictureAddress = response.data.url
- tare(this.weighingList)
- .toPromise()
- .then((response) => {})
- } else {
- this.weighingList.pictureAddress = response.data.url
- tare(this.weighingList)
- .toPromise()
- .then((response) => {})
- }
- })
- this.dialogTableVisible = true
- }
- })
- this.isShowPrint = false
- },
- closePrint() {
- this.isShowPrint = false
- },
- check(name, type) {
- if (type == 1) {
- for (var _tmp = 0; _tmp < this.ewCustomerOptions.length; _tmp++) {
- if (this.ewCustomerOptions[_tmp].label == name) {
- return false
- }
- }
- return true
- } else if (type == 2) {
- for (var _tmp = 0; _tmp < this.companyNameEWOptions.length; _tmp++) {
- if (this.companyNameEWOptions[_tmp].label == name) {
- return false
- }
- }
- return true
- }
- },
- print() {
- if (this.reader) {
- this.reader.cancel()
- }
- if(!this.weighingList.id){
- this.$message({
- message: '请选择一条已经质检过的数据',
- type: 'warning',
- })
- return
- }
- if (!this.weighingList.grossWeight) {
- this.$message({
- message: '毛重不能为空',
- type: 'warning',
- })
- return
- }
- if (this.weighingList.grossWeight < 1 ||this.weighingList.grossWeight > 200000) {
- this.$message({
- message: '毛重输入错误',
- type: 'warning',
- })
- return
- }
- if (
- String(this.weighingList.grossWeight).indexOf('.') != -1 &&
- String(this.weighingList.grossWeight).length -
- (String(this.weighingList.grossWeight).indexOf('.') + 1) >
- 1
- ) {
- this.$message({
- message: '毛重输入错误',
- type: 'warning',
- })
- return
- }
- if (this.tpyeNo == 2) {
- if (!this.weighingList.tare) {
- this.$message({
- message: '皮重不能为空',
- type: 'warning',
- })
- return
- }
- if (!this.weighingList.tare) {
- this.$message({
- message: '皮重不能为空',
- type: 'warning',
- })
- return
- }
- if (Number(this.weighingList.tare) > Number(this.weighingList.grossWeight)) {
- this.$message({
- message: '皮重不能大于毛重',
- type: 'warning',
- })
- return
- }
- if (this.weighingList.tare < 1 || this.weighingList.tare > 100000) {
- this.$message({
- message: '皮重输入错误',
- type: 'warning',
- })
- return
- }
- if (
- String(this.weighingList.tare).indexOf('.') != -1 &&
- String(this.weighingList.tare).length -
- (String(this.weighingList.tare).indexOf('.') + 1) >
- 1
- ) {
- this.$message({
- message: '皮重输入错误',
- type: 'warning',
- })
- return
- }
- if (Number(this.weighingList.netWeight < 0)) {
- this.$message({
- message: '净重不能小于0',
- type: 'warning',
- })
- return
- }
- }
- if (this.tpyeNo == 2) {
- if (this.submitAllow) {
- this.$message.error('该条质检信息未确认')
- return
- }
- }
- this.$confirm('确定保存检斤信息?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- })
- .then(() => {
- var that = this
- var warehousing = {}
- //贸易入库保存需要再走入库接口
- if (this.inWarehouseType == 1) {
- warehousing = JSON.parse(JSON.stringify(this.weighingList))
- // warehousing = this.weighingList
- warehousing.secretaryWeigher = localStorage.getItem('ws-pf_staffName')
- warehousing.compId = localStorage.getItem('ws-pf_compId')
- warehousing.inOutFlag = 2
- let _data = JSON.parse(
- localStorage.getItem('winseaview-userInfo')
- )
- warehousing.backOffice = _data.content.showCompName + '-' + _data.content.staffName
- warehousing.grossWeight = this.weighingList.grossWeight
- warehousing.tare = this.weighingList.tare
- warehousing.netWeight = this.weighingList.netWeight
- warehousing.pureWeight = this.weighingList.pureWeight
- warehousing.deductionAmount = this.weighingList.deductionAmount
- warehousing.deductionWeight = this.weighingList.deductionWeight
- warehousing.warehouseInOutDetail = {}
- warehousing.baseId = this.cangid
- delete warehousing.qualityInspectionManagement
- }
- // 毛重
- if (this.tpyeNo == 1) {
- this.deptBudgetList.secretaryWeigher =
- localStorage.getItem('ws-pf_staffName')
- // console.log(this.weighingList)
- if (this.weighingList.customerNumberCard) {
- //毛检保存前进行校验
- getamount({
- compId: localStorage.getItem('ws-pf_compId'),
- customerNumberCard: this.weighingList.customerNumberCard,
- goodsName: this.weighingList.goodsName,
- })
- .toPromise()
- .then((response) => {
- for (let i = 0; i < this.purchasePriceList.length; i++) {
- if (
- this.weighingList.goodsName ==
- this.purchasePriceList[i].goodsName
- ) {
- //累计售粮超上限不能完成毛检保存
- let count = (
- this.purchasePriceList[i].saleLimit -
- response / 1000
- ).toFixed(2)
- // console.log(this.weighingList.grossWeight / 1000, '毛重转吨')
- // this.weighingList.grossWeight/=1000
- if (count - this.weighingList.grossWeight / 1000 < 0) {
- this.$alert(
- '该客户累计销售' +
- this.weighingList.goodsName +
- (response / 1000).toFixed(2) +
- '吨,还可售粮' +
- count +
- '吨',
- '提示', {
- confirmButtonText: '确定',
- callback: (action) => {
- this.$message({
- type: 'info',
- message: `累计售粮已超出上限`,
- })
- },
- }
- )
- } else {
- //累计售粮没有超上限完成毛检保存
- if (this.inWarehouseType == 1) { //判断贸易入库提交毛重
- warehousing.grossWeight /= 1000
- warehousing.tare /= 1000
- warehousing.netWeight /= 1000
- warehousing.pureWeight = 1000
- warehousing.deductionAmount *= 1000
- warehousing.deductionWeight /= 1000
- warehousing.statusFlag = 1
- warehousing.inOutFlag = 2
- warehousing.id = warehousing.warehouseInOutId
- warehousing.warehouseInOutDetail.id = warehousing.inOutDetailId
- warehousing.weighingManagement = this.weighingList
- newSubmit(warehousing)
- .toPromise()
- .then((response) => {
- this.$notify.success({
- title: '成功',
- message: '保存成功',
- })
- this.getList()
- })
- } else { //收购入库
-
- grossWeight(this.weighingList)
- .toPromise()
- .then((response) => {
- if (this.reader) {
- this.reader.cancel()
- }
- this.$notify.success({
- title: '成功',
- message: '保存成功',
- })
- this.getList()
- })
- }
- //累计售粮没有超上限完成毛检保存
- // this.weighingList.relationId = this.relationId;
- // grossWeight(this.weighingList)
- // .toPromise()
- // .then((response) => {
- // if (this.reader) {
- // this.reader.cancel()
- // }
- // this.$notify.success({
- // title: '成功',
- // message: '保存成功',
- // })
- // //贸易入库需要再走入库接口
- // if (this.inWarehouseType == 1) {
- // warehousing.grossWeight /= 1000
- // warehousing.tare /= 1000
- // warehousing.netWeight /= 1000
- // warehousing.pureWeight = 1000
- // warehousing.deductionAmount *= 1000
- // warehousing.deductionWeight /= 1000
- // warehousing.statusFlag = 1
- // warehousing.inOutFlag =2
- // warehousing.id = warehousing.warehouseInOutId
- // warehousing.warehouseInOutDetail.id = warehousing.inOutDetailId
- // addstorageputList(warehousing).toPromise().then((response) => {
- // if (response == 'OK') {
- // this.getList()
- // }
- // })
- // } else {
- // this.getList()
- // }
- // })
- // .catch((response) => {
- // // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- // })
- }
- }
- }
- })
- } else {
- if (this.inWarehouseType == 1) { //贸易入库
- warehousing.grossWeight /= 1000
- warehousing.tare /= 1000
- warehousing.netWeight /= 1000
- warehousing.pureWeight = 1000
- warehousing.deductionAmount *= 1000
- warehousing.deductionWeight /= 1000
- warehousing.statusFlag = 1
- warehousing.inOutFlag = 2
- delete warehousing.status
- warehousing.id = warehousing.warehouseInOutId
- warehousing.warehouseInOutDetail.id = warehousing.inOutDetailId
- warehousing.weighingManagement = this.weighingList
- newSubmit(warehousing)
- .toPromise()
- .then((response) => {
- this.$notify.success({
- title: '成功',
- message: '保存成功',
- })
- this.getList()
- })
- } else { //收购入库
- grossWeight(this.weighingList)
- .toPromise()
- .then((response) => {
- if (this.reader) {
- this.reader.cancel()
- }
- this.$notify.success({
- title: '成功',
- message: '保存成功',
- })
- this.getList()
- })
- }
- // grossWeight(this.weighingList)
- // .toPromise()
- // .then((response) => {
- // if (this.reader) {
- // this.reader.cancel()
- // }
- // this.$notify.success({
- // title: '成功',
- // message: '保存成功',
- // })
- // //贸易入库需要再走入库接口
- // if (this.inWarehouseType == 1) {
- // warehousing.grossWeight /= 1000
- // warehousing.tare /= 1000
- // warehousing.netWeight /= 1000
- // warehousing.pureWeight = 1000
- // warehousing.deductionAmount *= 1000
- // warehousing.deductionWeight /= 1000
- // warehousing.statusFlag = 1
- // warehousing.inOutFlag = 2
- // delete warehousing.status
- // warehousing.id = warehousing.warehouseInOutId
- // warehousing.warehouseInOutDetail.id = warehousing.inOutDetailId
- // addstorageputList(warehousing).toPromise().then((response) => {
- // if (response == 'OK') {
- // this.getList()
- // }
- // })
- // } else {
- // this.getList()
- // }
- // })
- // .catch((response) => {
- // // EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
- // })
- }
- } else if (this.tpyeNo == 2) {
- //皮重
- // //皮重检斤保存
- // let _url1 = process.env.VUE_APP_BASE_API + '/weighingManagement/api/editTare'
- // //查看结算单
- // let _url2 = process.env.VUE_APP_BASE_API + '/warehouseInOutInfo/getInfo'
- // // 入库添加
- // let _url3 = process.env.VUE_APP_BASE_API + '/warehouseInOutInfo/InOutWarehouse'
- // console.log(this.inWarehouseType)
- //贸易入库需要再走入库接口
- if (this.inWarehouseType == 1) { //贸易入库皮检
- getsettleaccout({//查看结算单
- id: this.weighingList.warehouseInOutId
- }).toPromise().then((response) => {
- that.inOutData = response
- that.$set(that.inOutData, 'statusFlag', 3)
- that.$set(that.inOutData, 'grossWeight', warehousing.grossWeight / 1000)
- that.$set(that.inOutData, 'tare', warehousing.tare / 1000)
- that.$set(that.inOutData, 'netWeight', warehousing.netWeight / 1000)
- // that.$set(that.inOutData,'pureWeight',warehousing.pureWeight /1000)
- that.$set(that.inOutData, 'deductionAmount', Number(warehousing.deductionAmount) * 1000)
- that.$set(that.inOutData, 'deductionWeight', warehousing.deductionWeight / 1000)
- that.$set(that.inOutData, 'inOutFlag', 2)
- // that.inOutDate = response
- // that.$set(that.inOutDate)
- // .statusFlag = 3
- // that.inOutDate.grossWeight=warehousing.grossWeight /1000
- // that.inOutDate.tare=warehousing.tare /1000
- // that.inOutDate.netWeight=warehousing.netWeight /1000
- // that.inOutDate.pureWeight=warehousing.pureWeight /1000
- // that.inOutDate.deductionAmount= Number(warehousing.deductionAmount) * 1000
- // that.inOutDate.deductionWeight=warehousing.deductionWeight /1000
- // that.inOutDate.inOutFlag = 2
- // warehousing.statusFlag = 3
- // warehousing.grossWeight /= 1000
- // warehousing.tare /= 1000
- // warehousing.netWeight /= 1000
- // warehousing.pureWeight = 1000
- // warehousing.deductionAmount = Number(warehousing.deductionAmount) * 1000
- // warehousing.deductionWeight /= 1000
- // warehousing.inOutFlag = 2
- // console.log(that.weighingList)
- // warehousing.inOutTypeKey = that.weighingList.inOutTypeKey
- // warehousing.inOutType = that.weighingList.inOutType
- // warehousing.deductionAmount = that.weighingList.deductionAmount
- // warehousing.id = warehousing.warehouseInOutId
- // // delete that.inOutDate.status
- // that.inOutDate = Object.assign(that.inOutDate, warehousing)
- that.weighingList.warehouseId = that.cangid;
- that.weighingList.skinInspector = localStorage.getItem('ws-pf_staffName')
- that.inOutData.weighingManagement = that.weighingList
- newSubmit(that.inOutData).toPromise().then((response) => { //检斤新接口
- this.$notify.success({
- title: '成功',
- message: '保存成功',
- })
- this.idPrint = response
- if (this.weighingList.serviceManagementType == 1 && (this.warehouseName == '鲅鱼圈金信库' ||
- this
- .warehouseName == '哈尔滨依兰库' || this
- .warehouseName == '白城内陆港'|| this
- .warehouseName == '山东园丰库')) {
- if (this.weighingList.seller && this.weighingList.buyer) {
- let cang = {}
- cang.value = this.weighingList.seller
- cang.label = this.weighingList.seller
- if (this.check(this.weighingList.seller, 1)) {
- this.ewCustomerOptions.push(cang)
- }
- let cang1 = {}
- cang1.value = this.weighingList.buyer
- cang1.label = this.weighingList.buyer
- if (this.check(this.weighingList.buyer, 2)) {
- this.companyNameEWOptions.push(cang1)
- }
- }
- }
- this.isShowPrintType = true
- this.getList()
- })
- // addstorageputList(that.inOutData).toPromise().then((response) => {
- // this.weighingList.warehouseId = this.cangid;
- // this.weighingList.skinInspector = localStorage.getItem('ws-pf_staffName')
- // tare(this.weighingList)
- // .toPromise()
- // .then((response) => {
- // console.log(1111)
- // // if (this.reader) {
- // // this.reader.cancel()
- // // }
- // this.$notify.success({
- // title: '成功',
- // message: '保存成功',
- // })
- // this.idPrint = response
- // if (this.weighingList.serviceManagementType == 1 && (this.warehouseName == '鲅鱼圈金信库' || this
- // .warehouseName == '哈尔滨依兰库' || this
- // .warehouseName == '白城内陆港')) {
- // if (this.weighingList.seller && this.weighingList.buyer) {
- // let cang = {}
- // cang.value = this.weighingList.seller
- // cang.label = this.weighingList.seller
- // if (this.check(this.weighingList.seller, 1)) {
- // this.ewCustomerOptions.push(cang)
- // }
- // let cang1 = {}
- // cang1.value = this.weighingList.buyer
- // cang1.label = this.weighingList.buyer
- // if (this.check(this.weighingList.buyer, 2)) {
- // this.companyNameEWOptions.push(cang1)
- // }
- // }
- // }
- // this.isShowPrintType = true
- // this.getList()
- // })
- // .catch((response) => {})
- // })
- })
- } else { //收购入库皮检
- tare(this.weighingList)
- .toPromise()
- .then((response) => {
- // if (this.reader) {
- // this.reader.cancel()
- // }
- this.$notify.success({
- title: '成功',
- message: '保存成功',
- })
- this.idPrint = response
- if (this.weighingList.serviceManagementType == 1 && (this.warehouseName == '鲅鱼圈金信库' || this
- .warehouseName == '哈尔滨依兰库' || this
- .warehouseName == '白城内陆港'|| this
- .warehouseName == '山东园丰库')) {
- if (this.weighingList.seller && this.weighingList.buyer) {
- let cang = {}
- cang.value = this.weighingList.seller
- cang.label = this.weighingList.seller
- if (this.check(this.weighingList.seller, 1)) {
- this.ewCustomerOptions.push(cang)
- }
- let cang1 = {}
- cang1.value = this.weighingList.buyer
- cang1.label = this.weighingList.buyer
- if (this.check(this.weighingList.buyer, 2)) {
- this.companyNameEWOptions.push(cang1)
- }
- }
- }
- this.isShowPrintType = true
- this.getList()
- })
- .catch((response) => {})
- }
- }
- })
- .catch(() => {
- return false
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- /deep/.el-pagination {
- margin-bottom: 0;
- }
- .stocks {
- position: relative;
- /deep/.el-select {
- width: 30.33%;
- }
- /deep/.el-select>.el-input {
- display: inline-block;
- }
- /deep/>.el-input {
- width: 29.3333%;
- }
- .add,
- .del {
- position: absolute;
- right: 16px;
- transform: translateY(20%);
- width: 20px;
- height: 20px;
- }
- .del {
- right: -7px;
- }
- }
- .center {
- background: #E8ECF6;
- }
- .ws-info-table {
- border: none;
- // height: 610px;
- margin-top: 30px;
- }
- .ws-info-table .el-form-item {
- width: 100%;
- border: none;
- }
- .formItem {
- width: 100%;
- display: inline;
- }
- /deep/.ws-info-table .el-form-item .el-form-item__label {
- width: 25%;
- text-align: center;
- background: #ffffff;
- font-size: 14px;
- color: #8890b1;
- }
- /deep/.ws-info-table .el-form-item .el-form-item__content {
- border: none;
- }
- .title {
- font-size: 16px;
- font-weight: 600;
- margin: 10px;
- }
- .substance {
- padding-bottom: 20px;
- overflow-x: scroll;
- .active {
- background: #5878e8;
- color: white;
- }
- // background: #ffffff;
- width: 100%;
- height: calc(100vh - 125px);
- border-radius: 4px;
- margin: 0 auto;
- display: flex;
- .left {
- width: 30%;
- min-width: 560px;
- position: relative;
- // padding:0 20px 20px 20px;
- .top {
- background: black;
- color: #2aff7c;
- font-size: 32px;
- text-align: right;
- padding: 0 10px 0 20px;
- border-radius: 10px;
- margin: 0 20px 20px 20px;
- position: absolute;
- top: 130px;
- width: 91%;
- .zujian {
- position: relative;
- }
- .kg-style {
- font-size: 30px;
- color: red;
- }
- .confirmInfo {
- display: flex;
- .car-type {
- text-align: left;
- width: 50%;
- }
- .car-no {
- width: 50%;
- text-align: right;
- }
- }
- .confirmWeight {
- display: flex;
- .titleWeight {
- width: 35%;
- text-align: left;
- line-height: 90px;
- color: red;
- }
- .weight {
- width: 65%;
- text-align: right;
- color: red;
- }
- }
- }
- .bottom {
- // text-align: center;
- background: white;
- margin: 20px 20px 0 20px;
- border-radius: 10px;
- padding-bottom: 20px;
- .img1,
- .img2 {
- width: 200px;
- padding: 20px;
- }
- .video-content {
- width: 100%;
- }
- .video1 {
- text-align: center;
- }
- }
- }
- .right {
- width: 70%;
- // padding: 20px;
- height: 750px;
- border-radius: 10px;
- .tab {
- display: flex;
- margin-bottom: 5px;
- .tab-item {
- padding: 5px 10px;
- margin-right: 20px;
- border-radius: 10px;
- }
- .in_css,
- .in_cssno,
- .in_cssno1,
- .in_css1 {
- width: 80px;
- height: 32px;
- padding: 3px 10px;
- border-radius: 4px;
- margin-right: 10px;
- font-size: 15px;
- line-height: 28px;
- text-align: center;
- font-weight: 600;
- }
- .in_css:hover,
- .in_cssno:hover,
- .in_cssno1:hover,
- .in_css1:hover {
- cursor: pointer;
- }
- .in_css {
- color: #5878E8;
- background: #F0F6FF;
- }
- .in_css1 {
- color: #5878E8;
- }
- .in_cssno1 {
- color: #8890B1;
- }
- /deep/.el-badge__content.is-fixed {
- top: 3px;
- right: 26px;
- }
- }
- .weigh_btn {
- height: 35px;
- border-bottom: 1px solid #D8DCE6;
- }
- .table-title {
- background: red;
- .top {
- display: inline-block;
- width: 48%;
- .top-item {
- display: inline-block;
- }
- }
- }
- .table {
- background: red;
- .table-content {
- background: green;
- display: inline-block;
- width: 50%;
- .table-content-item {
- display: inline-block;
- }
- }
- }
- }
- }
- /deep/.el-table .el-table__header .cell,
- /deep/.el-table .el-table__body .cell {
- text-align: center;
- font-size: 16px;
- // background: #f6f7fc;
- }
- // /deep/.el-table td {
- // background: #e7e8ef;
- // }
- /deep/.el-table--enable-row-transition .el-table__body td {
- text-align: center;
- }
- .bg-left {
- height: 60px;
- background: #F6F7FC;
- // padding-left: 30px;
- line-height: 60px;
- }
- .titleup {
- position: relative;
- }
- .titleup::before {
- content: '';
- display: inline-block;
- width: 5px;
- height: 30px;
- background: #5473e8;
- position: absolute;
- left: 0;
- top: 14px;
- }
- .butCss {
- // opacity: 0;
- margin-left: 20px;
- color: #5473E8;
- background: #ffffff;
- }
- /deep/.el-dialog__title {
- font-size: 24px !important;
- }
- /deep/.el-dialog__header {
- text-align: center !important;
- padding: 10px 0 !important;
- height: auto !important;
- }
- .weight {
- font-size: 68px;
- }
- .right-content {
- display: flex;
- height: calc(100vh - 25vh);
- .left1 {
- position: relative;
- background: #ffffff;
- // padding: 10px;
- border-radius: 4px;
- min-width: 355px;
- width: 40%;
- min-height: 760px;
- .but {
- position: absolute;
- left: 0;
- right: 0;
- margin: auto;
- justify-content: flex-end;
- display: flex;
- margin-right: 17px;
- bottom: 20px;
- }
- .weightInfo {
- padding: 10px;
- }
- /deep/.el-input.is-disabled .el-input__inner {
- background: #F5F7FA !important;
- border: none;
- }
- }
- .titlesign::before {
- content: '';
- display: inline-block;
- width: 5px;
- height: 30px;
- background: #5473e8;
- position: absolute;
- left: 0;
- top: 14px;
- }
- .weightTitle {
- width: 100%;
- height: 60px;
- background: #F6F7FC;
- margin-bottom: 6px;
- border-radius: 4px;
- line-height: 60px;
- }
- .left {
- width: 40%;
- }
- .right {
- width: 60%;
- }
- }
- .car-right {
- width: 60%;
- background: #ffffff;
- padding: 10px;
- margin-left: 20px;
- border-radius: 4px;
- min-height: 760px;
- }
- .screen {
- margin-bottom: 10px;
- width: 100%;
- display: flex;
- .screen_left {
- min-width: 215px;
- width: 30%;
- display: flex;
- .select_css,
- .noselect_css {
- width: 76px;
- height: 32px;
- padding: 3px 10px;
- border-radius: 4px;
- margin-right: 10px;
- font-size: 14px;
- line-height: 28px;
- text-align: center;
- }
- .select_css:hover,
- .noselect_css:hover {
- cursor: pointer;
- }
- .select_css {
- color: #5878E8;
- background: #F0F6FF;
- }
- }
- .screen_right {
- width: 70%;
- justify-content: flex-end;
- display: flex;
- margin-right: 30px;
- .jilu {
- color: #5878E8;
- }
- .jilu:hover {
- cursor: pointer;
- }
- }
- /deep/.el-select {
- width: 50%;
- }
- }
- .frame {
- border-bottom: 1px solid #D8DCE6;
- height: 40px;
- }
- .word_css {
- margin-left: 15px;
- font-size: 18px;
- font-weight: 600;
- text-align: left;
- }
- .mask {
- background: black;
- width: 100vw;
- height: 100vh;
- position: fixed;
- top: 0;
- z-index: 99;
- opacity: 0.3;
- }
- .print-type-title {
- text-align: center;
- font-size: 18px;
- margin: 20px;
- }
- .bottom-btn {
- display: flex;
- margin-top: 20px;
- justify-content: space-around;
- }
- .print-type-checkbox {
- // padding-left: 20px;
- }
- .print-type {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- width: 440px;
- height: 320px;
- background: white;
- border-radius: 10px;
- z-index: 999;
- }
- /deep/.el-radio-group {
- width: 100%;
- display: flex;
- }
- /deep/.el-radio__label {
- font-size: 20px;
- }
- /deep/.el-radio__inner {
- // background: red;
- height: 20px;
- width: 20px;
- }
- .label-width {
- width: 100%;
- text-align: center;
- font-size: 20px;
- }
- .show-excel {
- opacity: 0;
- }
- /deep/.base_header_layout .find.el-button--primary {
- width: 30px;
- border-top-left-radius: 0px;
- border-bottom-left-radius: 0px;
- }
- /deep/.base_header_layout .findinput input {
- border-top-right-radius: 0px;
- border-bottom-right-radius: 0px;
- }
- .ew-print {
- padding: 0 20px;
- margin-top: 10px;
- // display: flex;
- // justify-content: space-between;
- // align-content: center;
- .row {
- display: flex;
- margin-top: 10px;
- align-items: center;
- }
- }
- .sh-address {
- display: flex;
- }
- .print-type-ew {
- display: flex;
- justify-content: space-between;
- padding: 0 20px;
- /deep/.el-radio__label {
- font-size: 14px;
- }
- margin-top: 10px;
- }
- /deep/.el-table .cell {
- text-align: center;
- }
- .shdw-style {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 20px;
- margin-top: 20px;
- }
- /deep/.el-table__body .current-row td {
- border-top: 4px solid #2aff7c;
- border-bottom: 4px solid #2aff7c;
- }
- /deep/.el-table__body .current-row td:first-child {
- border-left: 4px solid #2aff7c;
- // border-bottom: 1px solid #2aff7c ;
- }
- /deep/.el-table__body .current-row td:last-child {
- border-right: 4px solid #2aff7c;
- // border-bottom: 1px solid #2aff7c ;
- }
- </style>
|