123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px">
- <el-form-item label="公司名" prop="companyId">
- <el-select filterable v-model="companyIds" placeholder="请选择公司名" multiple @change="companyChange" clearable size="small">
- <el-option
- v-for="item in companys"
- :key="item.companyId"
- :label="item.companyName"
- :value="item.companyId"
- />
- </el-select>
- </el-form-item>
- <el-form-item v-if="deptOpen">
- <treeselect style="width: 220px" :clearable="false" v-model="queryParams.deptId" :options="deptOptions" clearable :show-count="true" placeholder="请选择归属部门" />
- </el-form-item>
- <el-form-item label="会员ID" prop="userId">
- <el-input
- v-model="queryParams.userId"
- placeholder="请输入会员ID"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="店铺" prop="storeId">
- <el-select v-model="queryParams.storeId" placeholder="店铺" clearable size="small" filterable>
- <el-option
- v-for="dict in storeOPtions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="订单号" prop="orderCodes">
- <div class="tag-input-container">
- <!-- 标签显示区域 -->
- <div class="tags-wrapper" @click="focusInput">
- <!-- 已添加的订单号标签 -->
- <el-tag
- v-for="(code, index) in queryParams.orderCodes"
- :key="index"
- closable
- size="small"
- @close="removeOrderCode(index)"
- class="order-tag"
- :class="{ 'tag-error': false }"
- >
- {{ code }}
- </el-tag>
-
- <!-- 输入框 -->
- <el-input
- ref="tagInput"
- v-model="currentInput"
- v-show="inputVisible || queryParams.orderCodes.length === 0"
- :placeholder="queryParams.orderCodes.length === 0 ? '请输入订单号,按回车或逗号分隔' : '继续输入...'"
- size="small"
- class="tag-input"
- @keydown.native="handleKeyDown"
- @keyup.native="handleKeyUp"
- @blur="handleInputConfirm"
- @focus="inputVisible = true"
- clearable
- />
-
- <!-- 添加按钮(当没有输入时显示) -->
- <el-button
- v-if="!inputVisible && queryParams.orderCodes.length > 0"
- class="button-new-tag"
- size="small"
- @click="showInput"
- icon="el-icon-plus"
- type="text"
- >
- 添加订单号
- </el-button>
- </div>
-
- <!-- 输入提示 -->
- <div class="input-tips">
- <span class="tip-text">
- 支持:回车、逗号、空格分隔 |
- 已添加 {{ queryParams.orderCodes.length }} 个订单号
- <span v-if="maxOrderCodes > 0"> (最多{{ maxOrderCodes }}个)</span>
- </span>
- </div>
- </div>
- </el-form-item>
- <el-form-item label="快递单号" prop="deliverySn">
- <el-input
- v-model="queryParams.deliverySn"
- placeholder="请输入快递单号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="处方单号" prop="prescribeCode">
- <el-input
- v-model="queryParams.prescribeCode"
- placeholder="请输入处方单号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="支付方式" prop="payType">
- <el-select multiple v-model="payTypeArr" placeholder="请选择支付方式" clearable filterable size="small" >
- <el-option
- v-for="item in PayOptions"
- :key="'type'+item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="员工姓名" prop="companyUserNickName">
- <el-input
- v-model="queryParams.companyUserNickName"
- placeholder="请输入员工姓名"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="套餐名称" prop="packageName">
- <el-input
- v-model="queryParams.packageName"
- placeholder="请输套餐名称"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="套餐别名" prop="packageSecondName">
- <el-input
- v-model="queryParams.packageSecondName"
- placeholder="请输套餐别名"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="收货人" prop="userName">
- <el-input
- v-model="queryParams.userName"
- placeholder="请输入收货人"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="电话" prop="userPhone">
- <el-input
- v-model="queryParams.userPhone"
- placeholder="请输入收货人电话"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="加密号码" prop="userPhoneMk">
- <el-input
- v-model="queryParams.userPhoneMk"
- placeholder="请输入收货人电话"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="医生姓名" prop="doctorName">
- <el-input
- v-model="queryParams.doctorName"
- placeholder="请输入医生姓名"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="患者姓名" prop="patientName">
- <el-input
- v-model="queryParams.patientName"
- placeholder="请输入患者姓名"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="物流状态" prop="deliveryStatus">
- <el-select v-model="queryParams.deliveryStatus" placeholder="请选择物流状态" clearable size="small" >
- <el-option
- v-for="item in deliveryStatusOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="结算状态" prop="deliveryPayStatus">
- <el-select style="width: 200px" v-model="queryParams.deliveryPayStatus" placeholder="请选择物流结算状态" clearable size="small" >
- <el-option
- v-for="item in deliveryPayStatusOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="订单类型" prop="orderType">
- <el-select filterable v-model="queryParams.orderType" placeholder="状态" clearable size="small">
- <el-option
- v-for="dict in orderTypeOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
-
- <el-form-item label="是否首次进线" prop="isFirst">
- <el-select filterable v-model="queryParams.isFirst" placeholder="状态" clearable size="small">
- <el-option
- v-for="dict in orOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="档期归属" prop="scheduleId" >
- <el-select multiple filterable style="width: 200px" v-model="scheduleIdArr" placeholder="请选择档期" clearable size="small" >
- <el-option
- v-for="item in scheduleOptions"
- :key="'scheduleId'+item.id"
- :label="item.name"
- :value="item.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="订单购买类型" prop="orderBuyType">
- <el-select multiple filterable style="width: 200px" v-model="buyTypeArr" placeholder="请选择购买类型" clearable size="small" >
- <el-option
- v-for="item in orderBuyTypeOptions"
- :key="'bugType'+item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="渠道" prop="channel">
- <el-select multiple filterable style="width: 200px" v-model="channelArr" placeholder="请选择渠道" clearable size="small" >
- <el-option
- v-for="item in channelOptions"
- :key="'channel'+item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="企微主体" prop="qwSubject">
- <el-select multiple filterable style="width: 200px" v-model="qwSubjectArr" placeholder="请选择企微主体" clearable size="small" >
- <el-option
- v-for="item in qwSubjectOptions"
- :key="'qwSubject'+item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="推广佣金状态" prop="tuiMoneyStatus">
- <el-select filterable style="width: 200px" v-model="queryParams.tuiMoneyStatus" placeholder="请选择推广佣金状态" clearable size="small" >
- <el-option
- v-for="item in tuiOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="订单来源" prop="source">
- <el-select v-model="queryParams.source" placeholder="请选择是否支付" clearable size="small">
- <el-option
- v-for="dict in sourceOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="下单时间" prop="createTime">
- <el-date-picker v-model="createTime" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" @change="changeTime"></el-date-picker>
- </el-form-item>
- <el-form-item label="支付时间" prop="payTime">
- <el-date-picker v-model="payTime" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" @change="changePayTime"></el-date-picker>
- </el-form-item>
- <el-form-item label="发货时间" prop="deliverySendTime">
- <el-date-picker v-model="deliverySendTime" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" @change="changeTime"></el-date-picker>
- </el-form-item>
- <el-form-item label="回单时间" prop="deliveryImportTime">
- <el-date-picker v-model="deliveryImportTime" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" @change="changeTime"></el-date-picker>
- </el-form-item>
- <el-form-item label="入账时间" prop="tuiMoneyTime">
- <el-date-picker v-model="tuiMoneyTime" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" @change="changeTime"></el-date-picker>
- </el-form-item>
- <el-form-item label="ERP账户" prop="erpAccount" v-if="SFDFopen">
- <el-select v-model="queryParams.erpAccount" placeholder="ERP账户" clearable size="small">
- <el-option
- v-for="dict in erpAccountQueryList"
- :key="dict"
- :label="dict"
- :value="dict"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="ERP电话" prop="erpPhoneNumber" v-if="SFDFopen">
- <el-input
- v-model="queryParams.erpPhoneNumber"
- placeholder="ERP电话"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- :loading="exportLoading"
- @click="handleExport"
- v-hasPermi="['his:storeOrder:export']"
- >财务导出</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- :loading="exportLoading"
- @click="handleOrderExport"
- v-hasPermi="['store:storeOrder:export']"
- >导出订单</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="info"
- plain
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['his:storeOrder:exportDeliver']"
- >导入发货</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="info"
- plain
- icon="el-icon-upload2"
- size="mini"
- @click="handleImportStatus"
- v-hasPermi="['his:storeOrder:editImport']"
- >导入订单状态</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="info"
- plain
- icon="el-icon-upload2"
- size="mini"
- @click="handleImportExpress"
- v-hasPermi="['store:storeOrder:importExpress']"
- >导入银行回单</el-button>
- </el-col>
- <el-col :span="1.5" v-if="SFDFopen && orderStatus == 6"> <!--待推送erp-->
- <el-tooltip content="默认erp推送手机号" placement="top">
- <el-button
- type="warning"
- plain
- icon="el-icon-phone"
- size="mini"
- @click="handleErpPhone"
- v-hasPermi="['store:storeOrder:erpphone']"
- >推送手机号码</el-button>
- </el-tooltip>
- </el-col>
- <el-col :span="1.5" v-if="SFDFopen && orderStatus == 6">
- <el-tooltip content="批量设置erp推送手机号" placement="top">
- <el-button
- type="warning"
- plain
- icon="el-icon-phone"
- size="mini"
-
- @click="setErpPhone"
- v-hasPermi="['his:storeOrder:createErpOrder']"
- >设置推送手机</el-button>
- </el-tooltip>
- </el-col>
- <el-col :span="1.5" v-if="SFDFopen && orderStatus == 6">
- <el-tooltip content="批量设置erp账户" placement="top">
- <el-button
- type="warning"
- plain
- icon="el-icon-s-cooperation"
- size="mini"
- @click="showErpAccountSetDialog"
- v-hasPermi="['his:storeOrder:createErpOrder']"
- >数据分捡</el-button>
- </el-tooltip>
- </el-col>
- <el-col :span="1.5" v-if="SFDFopen && orderStatus == 6">
- <el-tooltip content="批量推送erp" placement="top">
- <el-button
- type="warning"
- plain
- icon="el-icon-s-cooperation"
- size="mini"
- @click="showErpAccountDialog"
- v-hasPermi="['his:storeOrder:createErpOrder']"
- >创建erp</el-button>
- </el-tooltip>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-tabs type="card" v-model="actName" @tab-click="handleClickX">
- <el-tab-pane label="全部订单" name="10"></el-tab-pane>
- <el-tab-pane v-for="(item,index) in orderOptions" :label="item.dictLabel" :name="item.dictValue"></el-tab-pane>
- </el-tabs>
- <el-table ref="orderTable" height="500" v-loading="loading" border :data="orderList" @selection-change="handleSelectionChange"
- @sort-change="handleSortChange" :default-sort="{prop: 'createTime', order: 'descending'}">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="ERP电话" align="center" prop="erpPhone" v-if="SFDFopen && orderStatus!=null && orderStatus != 1"/>
- <el-table-column label="ERP账号" align="center" prop="erpAccount" v-if="SFDFopen && orderStatus!=null && orderStatus != 1"/>
- <el-table-column label="处方单编号" align="center" prop="prescribeCode" width="180px"/>
- <el-table-column label="药品订单号" align="center" prop="orderCode" width="180px"/>
- <el-table-column label="所属公司" align="center" prop="companyName" />
- <el-table-column label="员工" align="center" prop="companyUserName" sortable="custom" :sort-orders="['ascending', 'descending']">
- <template slot="header" slot-scope="scope">
- <span>员工</span>
- <el-tooltip content="按员工姓名排序" placement="top"/>
- </template>
- </el-table-column>
- <el-table-column label="店铺名称" align="center" prop="storeName" />
- <el-table-column label="就诊人" align="center" prop="patientName" />
- <el-table-column label="收货人" align="center" prop="userName" />
- <el-table-column label="套餐名称" align="center" prop="packageName" width="100px" sortable="custom" :sort-orders="['ascending', 'descending']">
- <template slot="header" slot-scope="scope">
- <span>套餐名称</span>
- <el-tooltip content="按套餐名称排序" placement="top"/>
- </template>
- </el-table-column>
- <el-table-column label="套餐别名" align="center" prop="packageSecondName" width="100px"/>
- <el-table-column label="应收金额" align="center" prop="payPrice" width="100px" sortable="custom" :sort-orders="['ascending', 'descending']">
- <template slot="header" slot-scope="scope">
- <span>应收金额</span>
- <el-tooltip content="按应收金额排序" placement="top"/>
- </template>
- </el-table-column>
- <el-table-column label="实收金额" align="center" prop="payMoney" width="100px" sortable="custom" :sort-orders="['ascending', 'descending']">
- <template slot="header" slot-scope="scope">
- <span>实收金额</span>
- <el-tooltip content="按实收金额排序" placement="top"/>
- </template>
- </el-table-column>
- <el-table-column label="支付方式" align="center" prop="payType" >
- <template slot-scope="scope">
- <dict-tag :options="PayOptions" :value="scope.row.payType"/>
- </template>
- </el-table-column>
- <el-table-column label="下单时间" align="center" prop="createTime" width="180" />
- <el-table-column label="支付时间" align="center" prop="payTime" width="180" />
- <el-table-column label="订单状态" align="center" prop="status" >
- <template slot-scope="scope">
- <dict-tag :options="orderOptions" :value="scope.row.status"/>
- </template>
- </el-table-column>
- <el-table-column label="订单来源" align="center" prop="source" >
- <template slot-scope="scope">
- <dict-tag :options="sourceOptions" :value="scope.row.source"/>
- </template>
- </el-table-column>
- <el-table-column label="物流状态" align="center" prop="deliveryStatus" >
- <template slot-scope="scope">
- <dict-tag :options="deliveryStatusOptions" :value="scope.row.deliveryStatus"/>
- </template>
- </el-table-column>
- <el-table-column label="结算状态" align="center" prop="deliveryPayStatus" >
- <template slot-scope="scope">
- <dict-tag :options="deliveryPayStatusOptions" :value="scope.row.deliveryPayStatus"/>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- @click="handledetails(scope.row)"
- >查看
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 排序状态显示 -->
- <div v-if="currentSort.prop" class="sort-info">
- <el-tag size="small" type="info" closable @close="clearSort">
- <i class="el-icon-sort"></i>
- 当前排序:{{ getSortLabel(currentSort.prop) }}
- {{ currentSort.order === 'ascending' ? '升序' : '降序' }}
- </el-tag>
- <el-button
- type="text"
- size="mini"
- @click="clearSort"
- style="margin-left: 8px; color: #909399;"
- >
- </el-button>
- </div>
- <el-drawer
- :with-header="false"
- size="75%"
- :title="show.title" :visible.sync="show.open">
- <storeOrderDetails ref="Details" />
- </el-drawer>
- <!-- 用户导入对话框 -->
- <el-dialog :title="importExpress.title" :visible.sync="importExpress.open" width="400px" append-to-body>
- <el-upload
- ref="importExpress"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="importExpress.headers"
- :action="importExpress.url + '?updateSupport=' + importExpress.updateSupport"
- :disabled="importExpress.isUploading"
- :on-progress="handleFileUploadProgressExpress"
- :on-success="handleFileSuccessExpress"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <div class="el-upload__tip" slot="tip">
- <!-- <el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的数据 -->
- </div>
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplateExpress">下载模板</el-link>
- </div>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileFormExpress">确 定</el-button>
- <el-button @click="importExpress.open = false">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
- <el-upload
- ref="upload"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="upload.headers"
- :action="upload.url + '?updateSupport=' + upload.updateSupport"
- :disabled="upload.isUploading"
- :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <div class="el-upload__tip" slot="tip">
- </div>
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate">下载模板</el-link>
- </div>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog :title="uploadStatus.title" :visible.sync="uploadStatus.open" width="400px" append-to-body>
- <el-upload
- ref="uploadStatus"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="uploadStatus.headers"
- :action="uploadStatus.url + '?updateSupport=' + upload.updateSupport"
- :disabled="uploadStatus.isUploading"
- :on-progress="handleFileUploadProgressOrder"
- :on-success="handleFileSuccessOrder"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <div class="el-upload__tip" slot="tip">
- </div>
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importUpdateOrderTemplate">下载模板</el-link>
- </div>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitOrderStatusFileForm">确 定</el-button>
- <el-button @click="uploadStatus.open = false">取 消</el-button>
- </div>
- </el-dialog>
-
- <!-- 设置推送手机对话框 -->
- <el-dialog :title="erpPhone.title" :visible.sync="erpPhone.open" width="600px" append-to-body>
- <div style="margin-bottom: 20px;">
- <el-button type="primary" size="small" @click="handleAddPhone">新增手机号</el-button>
- </div>
- <el-table :data="phoneList" border style="width: 100%">
- <el-table-column prop="phone" label="手机号" align="center">
- <template slot-scope="scope">
- <el-input
- v-if="scope.row.editing"
- v-model="scope.row.phone"
- placeholder="请输入手机号"
- @blur="validatePhone(scope.row)"
- @keyup.enter.native="handleSavePhone(scope.$index)"
- />
- <span v-else>{{ scope.row.phone }}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="300">
- <template slot-scope="scope">
- <el-button
- v-if="scope.row.editing"
- type="success"
- size="mini"
- @click="handleSavePhone(scope.$index)"
- >保存</el-button>
- <el-button
- v-if="scope.row.editing"
- type="info"
- size="mini"
- @click="handleCancelEdit(scope.$index)"
- >取消</el-button>
- <el-button
- v-if="!scope.row.editing"
- type="primary"
- size="mini"
- @click="handleEditPhone(scope.$index)"
- >修改</el-button>
- <el-button
- type="danger"
- size="mini"
- @click="handleDeletePhone(scope.$index)"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="handleSavePhoneList">确 定</el-button>
- <el-button @click="handleCancelPhoneDialog">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog :title="erpPhone.title" :visible.sync="setPhoneOpen" width="600px" append-to-body>
- <el-select v-model="erpPhoneValue" multiple placeholder="请选择">
- <el-option
- v-for="item in phoneList"
- :key="item.phone"
- :label="item.phone"
- :value="item.phone">
- </el-option>
- </el-select>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitErpPhone">确 定</el-button>
- <el-button @click="handleCancelErpPhone">取 消</el-button>
- </div>
- </el-dialog>
- <!-- ERP账户选择对话框 -->
- <el-dialog :title="erpAccountDialog.title" :visible.sync="erpAccountDialog.open" width="600px" append-to-body>
- <div v-loading="erpAccountDialog.loading">
- <el-form :model="erpAccountForm" label-width="100px">
- <el-form-item label="ERP账户" required>
- <el-select
- v-model="erpAccountForm.selectedAccount"
- placeholder="请选择ERP账户"
- style="width: 100%"
- filterable
- >
- <el-option
- v-for="account in erpAccountList"
- :key="account"
- :label="account"
- :value="account"
- >
- <span style="float: left">{{ account}}</span>
- <span style="float: right; color: #8492a6; font-size: 13px">{{ account.accountCode }}</span>
- </el-option>
- </el-select>
- </el-form-item>
- </el-form>
-
- <!-- 订单统计信息 -->
- <div class="order-summary" v-if="orderSummary">
- <el-divider content-position="left">订单统计</el-divider>
- <el-row :gutter="20">
- <el-col :span="8">
- <div class="summary-item">
- <span class="label">选中订单数:</span>
- <span class="value">{{ orderSummary.selectedCount }}</span>
- </div>
- </el-col>
- <el-col :span="8">
- <div class="summary-item">
- <span class="label">总金额:</span>
- <span class="value">¥{{ orderSummary.totalAmount }}</span>
- </div>
- </el-col>
- <el-col :span="8">
- <div class="summary-item">
- <span class="label">查询条件订单:</span>
- <span class="value">{{ orderSummary.queryCount }}</span>
- </div>
- </el-col>
- </el-row>
- </div>
- </div>
-
- <div slot="footer" class="dialog-footer">
- <el-button @click="cancelErpAccountDialog">取 消</el-button>
- <el-button
- type="primary"
- @click="confirmCreateErpOrder"
- :disabled="!erpAccountForm.selectedAccount"
- :loading="erpAccountDialog.submitting"
- >确认</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { listOrder, getOrder, delOrder, addOrder,importExpressTemplate, updateOrder, exportOrder,importTemplate,exportOrder2,queryErpPhone,
- saveErpPhone,editErpPhone,batchCreateErpOrder,getErpAccount,batchSetErpOrder,importUpdateOrderTemplate } from "@/api/his/storeOrder";
- import storeOrderDetails from '../../components/his/storeOrderDetails.vue';
- import { getToken } from "@/utils/auth";
- import {listStore} from "@/api/his/storeProduct";
- import { getCompanyList } from "@/api/company/company";
- import { getTcmScheduleList } from "@/api/company/schedule";
- import { treeselect } from "@/api/company/companyDept";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import { getTask } from "@/api/common";
- export default {
- name: "Order",
- components: { storeOrderDetails,Treeselect },
- watch: {
- // 监听deptId
- 'deptId': 'currDeptChange'
- },
- data() {
- return {
- // 新增排序相关数据
- currentSort: {
- prop: null,
- order: null
- },
-
- // 排序字段映射
- sortFieldMap: {
- 'companyUserName': '员工',
- 'packageName': '套餐名称',
- 'payPrice': '应收金额',
- 'payMoney': '实收金额',
- 'createTime': '下单时间'
- },
- erpSettingType:'set',
- SFDFopen:false,
- // 最大订单号数量限制
- maxOrderCodes: {
- type: Number,
- default: 50
- },
- // 输入框是否可见
- inputVisible: false,
-
- // 无效订单号对话框
- showInvalidDialog: false,
- // 当前输入值
- currentInput: '',
- deptOpen:true,
- // ERP账户相关数据
- erpAccountDialog: {
- open: false,
- title: "选择ERP账户",
- loading: false,
- submitting: false
- },
- erpAccountList: [], // ERP账户列表
- erpAccountQueryList:[], // ERP账户查询条件列表
- erpAccountForm: {
- selectedAccount: null // 选中的账户ID
- },
- orderSummary: null, // 订单统计信息
- erpPhoneValue:[],
- setPhoneOpen:false,
- erpPhone:{
- open:false,
- title:"设置推送手机号"
- },
- phoneList: [], // 手机号列表
- originalPhoneList: [], // 原始手机号列表,用于取消时恢复
- orderStatus:null,
- scheduleOptions:[],
- companys:[],
- deptOptions:[],
- companyId:undefined,
- companyIds:[],
- deptId:undefined,
- actName:"10",
- show:{
- title:"订单详情",
- open:false,
- },
- sourceOptions:[],
- importExpress: {
- // 是否显示弹出层
- open: false,
- // 弹出层标题
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/his/storeOrder/importExpress"
- },
- upload: {
- // 是否显示弹出层
- open: false,
- // 弹出层标题
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/his/storeOrder/importData"
- },
- uploadStatus: {
- // 是否显示弹出层
- open: false,
- // 弹出层标题
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/his/storeOrder/importOrderStatusData"
- },
- // 遮罩层
- loading: true,
- // 导出遮罩层
- exportLoading: false,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 订单表格数据
- orderList: [],
- payTypeArr:[],
- scheduleIdArr:[],
- buyTypeArr:[],
- channelArr:[],
- qwSubjectArr:[],
- // 弹出层标题
- title: "",
- createTime:null,
- payTime:null,
- deliveryImportTime:null,
- deliverySendTime:null,
- tuiMoneyTime:null,
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- storeId: null,
- orderCode: null,
- orderCodes: [],
- userId: null,
- userName: null,
- userPhone: null,
- userPhoneMk: null,
- userAddress: null,
- cartId: null,
- totalNum: null,
- totalPrice: null,
- payPrice: null,
- payMoney: null,
- isPay: null,
- payTime: null,
- payType: null,
- status: null,
- refundStatus: null,
- refundImg: null,
- refundExplain: null,
- refundTime: null,
- refundReason: null,
- refundMoney: null,
- deliveryCode: null,
- deliveryName: null,
- deliverySn: null,
- isDel: null,
- costPrice: null,
- verifyCode: null,
- shippingType: null,
- isChannel: null,
- isPrescribe: null,
- prescribeId: null,
- finishTime: null,
- patientName: null,
- doctorName: null,
- sTime:null,
- eTime:null,
- paysTime:null,
- payeTime:null,
- deliveryTime: null,
- tuiMoney: null,
- tuiMoneyStatus: null,
- tuisTime:null,
- tuieTime:null,
- tuiUserId: null,
- orderCreateType: null,
- companyUserName:null,
- companyName:null,
- packageSecondName:null,
- isFirst:null,
- source:null,
- companyId:null,
- companyIds:null,
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- },
- PayOptions:[],
- orderOptions:[],
- payStatusOptions:[],
- refundOptions:[],
- channelOptions:[],
- qwSubjectOptions:[],
- orderTypeOptions:[],
- orderBuyTypeOptions:[],
- tuiOptions:[],
- orOptions:[],
- storeOPtions:[],
- deliveryPayStatusOptions:[],
- deliveryStatusOptions:[],
- };
- },
- created() {
- getCompanyList().then(response => {
- this.companys = response.data;
- if(this.companys!=null&&this.companys.length>0){
- // this.companyId=this.companys[0].companyId;
- this.getTreeselect();
- }
- this.companys.push({companyId:"-1",companyName:"无"})
- });
- getTcmScheduleList().then(response => {
- this.scheduleOptions = response.data;
- this.scheduleOptions.push({id: "-1",
- name: "无"})
- });
- this.getstoreList();
- this.getList();
- this.getDicts("sys_store_order_buy_type").then(response => {
- this.orderBuyTypeOptions = response.data;
- this.orderBuyTypeOptions.push({dictLabel: "无",
- dictValue: "-1"})
- });
- this.getDicts("sys_store_pay_type").then(response => {
- this.PayOptions = response.data;
- });
- this.getDicts("sys_order_source").then(response => {
- this.sourceOptions = response.data;
- });
- this.getDicts("sys_store_order_type").then(response => {
- this.orderTypeOptions = response.data;
- });
- this.getDicts("sys_order_status").then(response => {
- this.orderOptions = response.data;
- });
- this.getDicts("sys_order_pay").then(response => {
- this.payStatusOptions = response.data;
- });
- this.getDicts("sys_refund_status").then(response => {
- this.refundOptions = response.data;
- });
- this.getDicts("sys_store_channel").then(response => {
- this.channelOptions = response.data;
- this.channelOptions.push({dictLabel: "无",
- dictValue: "-1"})
- });
- this.getDicts("sys_store_qw_subject").then(response => {
- this.qwSubjectOptions = response.data;
- this.qwSubjectOptions.push({dictLabel: "无",
- dictValue: "-1"})
- });
- this.getDicts("sys_tui_money_status").then(response => {
- this.tuiOptions = response.data;
- });
- this.getDicts("sys_company_or").then(response => {
- this.orOptions = response.data;
- });
- this.getDicts("sys_store_delivery_pay_status").then(response => {
- this.deliveryPayStatusOptions = response.data;
- });
- this.getDicts("sys_store_order_delivery_status").then(response => {
- this.deliveryStatusOptions = response.data;
- });
- this.getErpAccountList();
- },
- methods: {
- // 新增排序处理方法
- handleSortChange({ column, prop, order }) {
- console.log('排序变化:', { column, prop, order });
-
- // 更新当前排序状态
- this.currentSort = {
- prop: prop,
- order: order
- };
-
- // 更新查询参数
- if (order) {
- this.queryParams.sortField = prop;
- this.queryParams.sortOrder = order === 'ascending' ? 'asc' : 'desc';
- } else {
- this.queryParams.sortField = null;
- this.queryParams.sortOrder = null;
- }
-
- // 重新查询数据
- this.queryParams.pageNum = 1; // 重置到第一页
- this.getList();
-
- // 显示排序提示
- if (order) {
- const fieldLabel = this.getSortLabel(prop);
- const orderLabel = order === 'ascending' ? '升序' : '降序';
- this.$message.success(`已按${fieldLabel}${orderLabel}排序`);
- }
- },
-
- // 获取排序字段的中文标签
- getSortLabel(prop) {
- return this.sortFieldMap[prop] || prop;
- },
-
- // 清除排序
- clearSort() {
- this.currentSort = {
- prop: null,
- order: null
- };
- this.queryParams.sortField = null;
- this.queryParams.sortOrder = null;
- this.queryParams.pageNum = 1;
- // 重置表格排序状态 - 关键代码
- this.$nextTick(() => {
- if (this.$refs.orderTable) {
- this.$refs.orderTable.clearSort();
- }
- });
- this.getList();
- this.$message.success('已清除排序');
- },
- // 修改查询列表方法,添加排序参数
- getList() {
- this.loading = true;
-
- // 处理多选参数
- if(this.payTypeArr.length>0){
- this.queryParams.payType=this.payTypeArr.toString();
- } else {
- this.queryParams.payType=null
- }
-
- if(this.scheduleIdArr.length>0){
- this.queryParams.scheduleId=this.scheduleIdArr.toString();
- } else {
- this.queryParams.scheduleId=null
- }
-
- if(this.buyTypeArr.length>0){
- this.queryParams.orderBuyType=this.buyTypeArr.toString();
- } else {
- this.queryParams.orderbuyType=null
- }
-
- if(this.channelArr.length>0){
- this.queryParams.orderChannel=this.channelArr.toString();
- } else {
- this.queryParams.orderChannel=null
- }
-
- if(this.qwSubjectArr.length>0){
- this.queryParams.qwSubject=this.qwSubjectArr.toString();
- } else {
- this.queryParams.qwSubject=null
- }
-
- // 处理公司参数
- if(this.companyIds && this.companyIds.length>1){
- this.queryParams.companyIds = this.companyIds
- this.queryParams.companyId = null;
- this.queryParams.deptId = null;
- } else {
- this.queryParams.companyId = this.companyId
- this.queryParams.companyIds = null;
- }
-
- // 处理订单号数组
- if (this.queryParams.orderCodes && this.queryParams.orderCodes.length > 0) {
- this.queryParams.orderCodeList = this.queryParams.orderCodes.join(',');
- } else {
- this.queryParams.orderCodeList = null;
- }
-
- console.log('查询参数:', this.queryParams);
-
- listOrder(this.queryParams).then(response => {
- this.orderList = response.rows;
- this.total = response.total;
- this.loading = false;
-
- if(response.msg == 'jnmy'){
- this.SFDFopen = true;
- } else{
- this.SFDFopen = false;
- }
-
- // 如果有排序,显示排序结果提示
- if (this.currentSort.prop) {
- const fieldLabel = this.getSortLabel(this.currentSort.prop);
- const orderLabel = this.currentSort.order === 'ascending' ? '升序' : '降序';
- console.log(`数据已按${fieldLabel}${orderLabel}加载`);
- }
- }).catch(error => {
- console.error('查询失败:', error);
- this.loading = false;
- this.$message.error('查询数据失败');
- });
- },
- // 处理键盘按下事件
- handleKeyDown(event) {
- const { key, target } = event
-
- // 处理退格键删除标签
- if (key === 'Backspace' && !target.value && this.queryParams.orderCodes.length > 0) {
- event.preventDefault()
- this.removeOrderCode(this.queryParams.orderCodes.length - 1)
- }
-
- // 处理分隔符
- if ([',', ',', ' ', 'Enter'].includes(key)) {
- event.preventDefault()
- this.handleInputConfirm()
- }
- },
-
- // 处理键盘抬起事件(实时分割输入)
- handleKeyUp(event) {
- const value = event.target.value
-
- // 检查是否包含分隔符
- if (/[,,\s]/.test(value)) {
- this.handleInputConfirm()
- }
- },
-
- // 确认输入
- handleInputConfirm() {
- const inputValue = this.currentInput.trim()
-
- if (inputValue) {
- // 分割多个订单号
- const codes = inputValue.split(/[,,\s]+/).filter(code => code.trim())
-
- codes.forEach(code => {
- this.addOrderCode(code.trim())
- })
- }
-
- this.currentInput = ''
- },
-
- // 添加订单号
- addOrderCode(code) {
- if (!code) return
-
- // 检查数量限制
- if (this.maxOrderCodes > 0 && this.queryParams.orderCodes.length >= this.maxOrderCodes) {
- this.$message.warning(`最多只能添加 ${this.maxOrderCodes} 个订单号`)
- return
- }
-
- // 检查重复
- if (this.queryParams.orderCodes.includes(code)) {
- this.$message.warning(`订单号 "${code}" 已存在`)
- return
- }
-
- // 添加到列表
- this.queryParams.orderCodes.push(code)
-
- },
-
- // 删除订单号
- removeOrderCode(index) {
- this.queryParams.orderCodes.splice(index, 1)
- },
-
- // 清空所有标签
- clearAllTags() {
- this.$confirm('确认清空所有订单号吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.queryParams.orderCodes = []
- this.$message.success('已清空所有订单号')
- })
- },
- // 显示输入框
- showInput() {
- this.inputVisible = true
- this.$nextTick(() => {
- this.$refs.tagInput.focus()
- })
- },
- // 删除订单号
- removeOrderCode(index) {
- this.queryParams.orderCodes.splice(index, 1)
- },
- // 聚焦输入框
- focusInput() {
- if (!this.inputVisible) {
- this.showInput()
- }
- },
- // 设置erp账户
- showErpAccountSetDialog() {
- this.erpAccountDialog.open = true;
- this.erpSettingType = 'set'
- this.calculateOrderSummary();
- },
- //显示ERP账户选择对话框
- showErpAccountDialog() {
- this.erpAccountDialog.open = true;
- this.erpSettingType = 'push'
- this.calculateOrderSummary();
- },
-
- //获取ERP账户列表
- async getErpAccountList() {
- try {
- const response = await getErpAccount();
- if (response.code === 200) {
- const list = response.data || [];
- this.erpAccountList = [...list];
- this.erpAccountQueryList = [...list, '未分拣'];
- // 设置默认值:第一条真实账户
- if (list.length && !this.queryParams.erpAccount) {
- this.$set(this.queryParams, 'erpAccount', list[0]);
- }
- } else {
- this.$message.error(response.msg || '获取ERP账户列表失败');
- this.erpAccountList = [];
- }
-
- } catch (error) {
- console.error('获取ERP账户列表失败:', error);
- this.$message.error('获取ERP账户列表失败');
- this.erpAccountList = [];
- } finally {
- this.erpAccountDialog.loading = false;
- }
- },
-
- // 新增:计算订单统计信息
- calculateOrderSummary() {
- let selectedCount = 0;
- let totalAmount = 0;
- let queryCount = this.total || 0;
-
- if (this.ids.length > 0) {
- // 如果有选中的订单,统计选中的订单
- selectedCount = this.ids.length;
- this.orderList.forEach(order => {
- if (this.ids.includes(order.orderId)) {
- totalAmount += parseFloat(order.payMoney || 0);
- }
- });
- } else {
- // 如果没有选中订单,统计当前查询条件下的所有订单
- selectedCount = queryCount;
- this.orderList.forEach(order => {
- totalAmount += parseFloat(order.payMoney || 0);
- });
- }
-
- this.orderSummary = {
- selectedCount,
- totalAmount: totalAmount.toFixed(2),
- queryCount
- };
- },
-
- //确认创建ERP订单
- confirmCreateErpOrder() {
- if (!this.erpAccountForm.selectedAccount) {
- this.$message.warning('请选择ERP账户');
- return;
- }
- console.log("-----------------",this.erpSettingType)
- if(this.erpSettingType == 'set'){
- this.$confirm(
- `确认将订单设置ERP账户为"${this.erpAccountForm.selectedAccount}"吗?`,
- '确认',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }
- ).then(() => {
- this.executSetErpOrder();
- });
- } else if(this.erpSettingType == 'push'){
- this.$confirm(
- `确认将订单推送到ERP账户"${this.erpAccountForm.selectedAccount}"吗?`,
- '确认推送',
- {
- confirmButtonText: '确定推送',
- cancelButtonText: '取消',
- type: 'warning'
- }
- ).then(() => {
- this.executeCreateErpOrder();
- });
- }
-
- },
- async executSetErpOrder() {
- this.erpAccountDialog.submitting = true;
-
- try {
- let param = {
- loginAccount: this.erpAccountForm.selectedAccount
- };
-
- if (this.ids.length > 0) {
- // 如果有选中的订单,只推送选中的
- param.orderIds = this.ids;
- } else {
- // 如果没有选中订单,推送查询条件下的所有订单
- if (this.payTypeArr.length > 0) {
- this.queryParams.payType = this.payTypeArr.toString();
- } else {
- this.queryParams.payType = null;
- }
- if (this.scheduleIdArr.length > 0) {
- this.queryParams.scheduleId = this.scheduleIdArr.toString();
- } else {
- this.queryParams.scheduleId = null;
- }
- if (this.buyTypeArr.length > 0) {
- this.queryParams.orderBuyType = this.buyTypeArr.toString();
- } else {
- this.queryParams.orderBuyType = null;
- }
- if (this.channelArr.length > 0) {
- this.queryParams.orderChannel = this.channelArr.toString();
- } else {
- this.queryParams.orderChannel = null;
- }
- if (this.qwSubjectArr.length > 0) {
- this.queryParams.qwSubject = this.qwSubjectArr.toString();
- } else {
- this.queryParams.qwSubject = null;
- }
-
- // 合并查询参数
- param = { ...param, ...this.queryParams };
- }
-
- const response = await batchSetErpOrder(param);
- if (response.code === 200) {
- this.$message.success('订单ERP账号设置成功');
- this.cancelErpAccountDialog();
- this.getList(); // 刷新列表
- } else {
- this.$message.error(response.msg || 'ERP账号设置失败');
- }
- } catch (error) {
- console.error('ERP账号设置失败:', error);
- this.$message.error('ERP账号设置失败');
- } finally {
- this.erpAccountDialog.submitting = false;
- }
- },
-
- //执行创建ERP订单
- async executeCreateErpOrder() {
- this.erpAccountDialog.submitting = true;
-
- try {
- let param = {
- loginAccount: this.erpAccountForm.selectedAccount
- };
-
- if (this.ids.length > 0) {
- // 如果有选中的订单,只推送选中的
- param.orderIds = this.ids;
- } else {
- // 如果没有选中订单,推送查询条件下的所有订单
- if (this.payTypeArr.length > 0) {
- this.queryParams.payType = this.payTypeArr.toString();
- } else {
- this.queryParams.payType = null;
- }
- if (this.scheduleIdArr.length > 0) {
- this.queryParams.scheduleId = this.scheduleIdArr.toString();
- } else {
- this.queryParams.scheduleId = null;
- }
- if (this.buyTypeArr.length > 0) {
- this.queryParams.orderBuyType = this.buyTypeArr.toString();
- } else {
- this.queryParams.orderBuyType = null;
- }
- if (this.channelArr.length > 0) {
- this.queryParams.orderChannel = this.channelArr.toString();
- } else {
- this.queryParams.orderChannel = null;
- }
- if (this.qwSubjectArr.length > 0) {
- this.queryParams.qwSubject = this.qwSubjectArr.toString();
- } else {
- this.queryParams.qwSubject = null;
- }
-
- // 合并查询参数
- param = { ...param, ...this.queryParams };
- }
-
- const response = await batchCreateErpOrder(param);
- if (response.code === 200) {
- this.$message.success('ERP订单创建成功');
- this.cancelErpAccountDialog();
- this.getList(); // 刷新列表
- } else {
- this.$message.error(response.msg || 'ERP订单创建失败');
- }
- } catch (error) {
- console.error('创建ERP订单失败:', error);
- this.$message.error('创建ERP订单失败');
- } finally {
- this.erpAccountDialog.submitting = false;
- }
- },
-
- // 新增:取消ERP账户选择对话框
- cancelErpAccountDialog() {
- this.erpAccountDialog.open = false;
- this.erpAccountForm.selectedAccount = null;
- this.orderSummary = null;
- this.erpAccountList = [];
- },
- handleCancelErpPhone(){
- this.erpPhoneValue = [];
- this.setPhoneOpen = false;
- },
- submitErpPhone(){
- let param = {};
- if(this.ids.length>0){
- param = {orderIds:this.ids,erpPhone:this.erpPhoneValue};
- } else {
- if(this.payTypeArr.length>0){
- this.queryParams.payType=this.payTypeArr.toString();
- }
- else{
- this.queryParams.payType=null
- }
- if(this.scheduleIdArr.length>0){
- this.queryParams.scheduleId=this.scheduleIdArr.toString();
- }
- else{
- this.queryParams.scheduleId=null
- }
- if(this.buyTypeArr.length>0){
- this.queryParams.orderBuyType=this.buyTypeArr.toString();
- }
- else{
- this.queryParams.orderbuyType=null
- }
- if(this.channelArr.length>0){
- this.queryParams.orderChannel=this.channelArr.toString();
- }
- else{
- this.queryParams.orderChannel=null
- }
- if(this.qwSubjectArr.length>0){
- this.queryParams.qwSubject=this.qwSubjectArr.toString();
- }
- else{
- this.queryParams.qwSubject=null
- }
- param = this.queryParams;
- param.erpPhone=this.erpPhoneValue;
- }
-
- editErpPhone(param).then(response=>{
- this.msgSuccess("修改成功");
- this.setPhoneOpen = false;
- this.getList();
- })
- },
- setErpPhone(){
- this.getErpPhoneList();
- this.setPhoneOpen = true;
- },
- // 设置推送手机相关方法
- handleErpPhone(){
- //查询配置手机号
- this.getErpPhoneList();
- this.erpPhone.open = true
- },
- getErpPhoneList(){
- queryErpPhone().then(response =>{
- if(response.data && response.data != null && response.data.length >0){
- const phones = response.data.filter(phone => phone.trim());
- this.phoneList = phones.map(phone => ({
- phone: phone.trim(),
- editing: false,
- originalPhone: phone.trim()
- }));
- }
-
- // 保存原始数据用于取消操作
- this.originalPhoneList = this.phoneList;
- });
- },
- // 新增手机号
- handleAddPhone() {
- this.phoneList.push({
- phone: '',
- editing: true,
- originalPhone: '',
- isNew: true
- });
- },
- // 编辑手机号
- handleEditPhone(index) {
- this.$set(this.phoneList[index], 'editing', true);
- this.$set(this.phoneList[index], 'originalPhone', this.phoneList[index].phone);
- },
- // 保存手机号
- handleSavePhone(index) {
- const phone = this.phoneList[index].phone.trim();
- if (!phone) {
- this.$message.error('手机号不能为空');
- return;
- }
- if (!this.validatePhoneFormat(phone)) {
- this.$message.error('请输入正确的手机号格式');
- return;
- }
- // 检查是否重复
- const duplicateIndex = this.phoneList.findIndex((item, idx) =>
- idx !== index && item.phone === phone
- );
- if (duplicateIndex !== -1) {
- this.$message.error('手机号已存在');
- return;
- }
- this.$set(this.phoneList[index], 'editing', false);
- this.$set(this.phoneList[index], 'isNew', false);
- },
- // 取消编辑
- handleCancelEdit(index) {
- if (this.phoneList[index].isNew) {
- // 如果是新增的,直接删除
- this.phoneList.splice(index, 1);
- } else {
- // 如果是编辑的,恢复原值
- this.$set(this.phoneList[index], 'phone', this.phoneList[index].originalPhone);
- this.$set(this.phoneList[index], 'editing', false);
- }
- },
- // 删除手机号
- handleDeletePhone(index) {
- this.$confirm('确认删除该手机号?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.phoneList.splice(index, 1);
- this.$message.success('删除成功');
- });
- },
- // 验证手机号格式
- validatePhoneFormat(phone) {
- const phoneRegex = /^1[3-9]\d{9}$/;
- return phoneRegex.test(phone);
- },
- // 验证手机号
- validatePhone(row) {
- if (row.phone && !this.validatePhoneFormat(row.phone)) {
- this.$message.error('请输入正确的手机号格式');
- }
- },
- // 保存手机号列表
- handleSavePhoneList() {
- // 检查是否有正在编辑的项
- const editingItem = this.phoneList.find(item => item.editing);
- if (editingItem) {
- this.$message.error('请先保存正在编辑的手机号');
- return;
- }
-
- // 检查是否有空的手机号
- const emptyPhone = this.phoneList.find(item => !item.phone.trim());
- if (emptyPhone) {
- this.$message.error('存在空的手机号,请删除或填写完整');
- return;
- }
-
- // 构造手机号列表
- const phoneList = this.phoneList.map(item => item.phone);
-
- // 调用保存接口
- saveErpPhone(phoneList).then(response => {
- if (response.code === 200) {
- this.$message.success('保存成功');
- this.erpPhone.open = false;
- } else {
- this.$message.error(response.msg || '保存失败');
- }
- }).catch(() => {
- this.$message.error('保存失败');
- });
- },
- // 取消手机号对话框
- handleCancelPhoneDialog() {
- // 恢复原始数据
- this.phoneList = JSON.parse(JSON.stringify(this.originalPhoneList));
- this.erpPhone.open = false;
- },
-
- handleImportExpress() {
- this.importExpress.title = "导入";
- this.importExpress.open = true;
- },
- /** 下载模板操作 */
- importTemplateExpress() {
- importExpressTemplate().then(response => {
- this.download(response.msg);
- });
- },
- // 文件上传中处理
- handleFileUploadProgressExpress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传中处理
- handleFileUploadProgressOrder(event, file, fileList) {
- this.uploadStatus.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccessExpress(response, file, fileList) {
- this.importExpress.open = false;
- this.importExpress.isUploading = false;
- this.$refs.importExpress.clearFiles();
- this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
- this.getList();
- },
- // 文件上传成功处理
- handleFileSuccessOrder(response, file, fileList) {
- this.uploadStatus.open = false;
- this.uploadStatus.isUploading = false;
- this.$refs.uploadStatus.clearFiles();
- this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
- this.getList();
- },
-
- // 提交上传文件
- submitFileFormExpress() {
- this.$refs.importExpress.submit();
- },
- handleImportStatus() {
- this.uploadStatus.title = "导入";
- this.uploadStatus.open = true;
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = "导入";
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- importTemplate().then(response => {
- this.download(response.msg);
- });
- },
- importUpdateOrderTemplate(){
- importUpdateOrderTemplate().then(response => {
- this.download(response.msg);
- });
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
- this.getList();
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- },
- submitOrderStatusFileForm(){
- this.$refs.uploadStatus.submit();
- },
- handledetails(row){
- this.show.open=true;
- setTimeout(() => {
- this.$refs.Details.getDetails(row.orderId,row.nickName,row.storeName);
- }, 1);
- },
- getstoreList() {
- listStore().then(response => {
- this.storeOPtions = response.rows;
- });
- },
- /** 查询订单列表 */
- getList() {
- this.loading = true;
- if(this.payTypeArr.length>0){
- this.queryParams.payType=this.payTypeArr.toString();
- }
- else{
- this.queryParams.payType=null
- }
- if(this.scheduleIdArr.length>0){
- this.queryParams.scheduleId=this.scheduleIdArr.toString();
- }
- else{
- this.queryParams.scheduleId=null
- }
- if(this.buyTypeArr.length>0){
- this.queryParams.orderBuyType=this.buyTypeArr.toString();
- }
- else{
- this.queryParams.orderbuyType=null
- }
- if(this.channelArr.length>0){
- this.queryParams.orderChannel=this.channelArr.toString();
- }
- else{
- this.queryParams.orderChannel=null
- }
- if(this.qwSubjectArr.length>0){
- this.queryParams.qwSubject=this.qwSubjectArr.toString();
- }
- else{
- this.queryParams.qwSubject=null
- }
- if(this.companyIds && this.companyIds.length>1){
- this.queryParams.companyIds = this.companyIds
- this.queryParams.companyId = null;
- this.queryParams.deptId = null;
- } else {
- this.queryParams.companyId = this.companyId
- this.queryParams.companyIds = null;
- }
- listOrder(this.queryParams).then(response => {
- this.orderList = response.rows;
- this.total = response.total;
- this.loading = false;
- if(response.msg == 'jnmy'){
- this.SFDFopen = true;
- } else{
- this.SFDFopen = false;
- }
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- orderId: null,
- storeId: null,
- orderCode: null,
- userId: null,
- userName: null,
- userPhone: null,
- userAddress: null,
- cartId: null,
- totalNum: null,
- totalPrice: null,
- payPrice: null,
- payMoney: null,
- isPay: null,
- payTime: null,
- payType: null,
- createTime: null,
- updateTime: null,
- status: null,
- refundStatus: "0",
- refundImg: null,
- refundExplain: null,
- refundTime: null,
- refundReason: null,
- refundMoney: null,
- deliveryCode: null,
- deliveryName: null,
- deliverySn: null,
- remark: null,
- isDel: null,
- costPrice: null,
- verifyCode: null,
- shippingType: null,
- isChannel: null,
- isPrescribe: null,
- prescribeId: null,
- finishTime: null,
- deliveryTime: null,
- tuiMoney: null,
- tuiMoneyStatus: 0,
- tuiUserId: null,
- orderCreateType: null
- };
- this.resetForm("form");
- this.payTypeArr = null;
- this.scheduleIdArr = null;
- this.buyTypeArr = null;
- this.channelArr = null;
- this.qwSubjectArr = null;
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- handleClickX(tab, event) {
- this.orderStatus = tab.name;
- if(tab.name=="10"){
- this.queryParams.status=null;
- }else{
- this.queryParams.status=tab.name;
- }
- this.handleQuery();
- },
- changeTime(){
- if(this.createTime!=null){
- this.queryParams.sTime=this.createTime[0];
- this.queryParams.eTime=this.createTime[1];
- }else{
- this.queryParams.sTime=null;
- this.queryParams.eTime=null;
- }
- if(this.deliverySendTime!=null){
- this.queryParams.deliverySendsTime=this.deliverySendTime[0];
- this.queryParams.deliverySendeTime=this.deliverySendTime[1];
- }else{
- this.queryParams.deliverySendsTime=null;
- this.queryParams.deliverySendeTime=null;
- }
- if(this.deliveryImportTime!=null){
- this.queryParams.deliveryImportsTime=this.deliveryImportTime[0];
- this.queryParams.deliveryImporteTime=this.deliveryImportTime[1];
- }else{
- this.queryParams.deliveryImportsTime=null;
- this.queryParams.deliveryImporteTime=null;
- }
- if(this.tuiMoneyTime!=null){
- this.queryParams.tuisTime=this.tuiMoneyTime[0];
- this.queryParams.tuieTime=this.tuiMoneyTime[1];
- }else{
- this.queryParams.tuisTime=null;
- this.queryParams.tuieTime=null;
- }
- },
- changePayTime(){
- if(this.payTime!=null){
- this.queryParams.sTime=this.payTime[0];
- this.queryParams.eTime=this.payTime[1];
- }else{
- this.queryParams.paysTime=null;
- this.queryParams.payeTime=null;
- }
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.createTime=null;
- this.queryParams.sTime=null;
- this.queryParams.eTime=null;
- this.payTime=null;
- this.queryParams.paysTime=null;
- this.queryParams.payeTime=null;
- this.queryParams.deliveryImportTime = null;
- this.queryParams.deliveryImportsTime = null;
- this.queryParams.deliveryImporteTime = null;
- this.queryParams.deliverySendTime = null;
- this.queryParams.deliverySendsTime = null;
- this.queryParams.deliverySendeTime = null;
- this.queryParams.tuisTIme = null;
- this.queryParams.tuieTIme = null;
- this.companyIds = null;
- this.companyId = null;
- // 清除排序
- this.currentSort = {
- prop: null,
- order: null
- };
- this.queryParams.sortField = null;
- this.queryParams.sortOrder = null;
-
- // 清除订单号标签
- this.queryParams.orderCodes = [];
- this.currentInput = '';
- this.inputVisible = false;
- // 重置表格排序状态 - 关键代码
- this.$nextTick(() => {
- if (this.$refs.orderTable) {
- this.$refs.orderTable.clearSort();
- }
- });
-
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.orderId)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "添加订单";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const orderId = row.orderId || this.ids
- getOrder(orderId).then(response => {
- this.form = response.data;
- this.open = true;
- this.title = "修改订单";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.orderId != null) {
- updateOrder(this.form).then(response => {
- this.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- addOrder(this.form).then(response => {
- this.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const orderIds = row.orderId || this.ids;
- this.$confirm('是否确认删除订单编号为"' + orderIds + '"的数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return delOrder(orderIds);
- }).then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- }).catch(() => {});
- },
- /** 导出按钮操作 */
- handleExport() {
- var that=this;
- if(this.payTypeArr.length>0){
- this.queryParams.payType=this.payTypeArr.toString();
- }
- else{
- this.queryParams.payType=null
- }
- if(this.scheduleIdArr.length>0){
- this.queryParams.scheduleId=this.scheduleIdArr.toString();
- }
- else{
- this.queryParams.scheduleId=null
- }
- if(this.buyTypeArr.length>0){
- this.queryParams.orderBuyType=this.buyTypeArr.toString();
- }
- else{
- this.queryParams.orderbuyType=null
- }
- if(this.channelArr.length>0){
- this.queryParams.orderChannel=this.channelArr.toString();
- }
- else{
- this.queryParams.orderChannel=null
- }
- if(this.qwSubjectArr.length>0){
- this.queryParams.qwSubject=this.qwSubjectArr.toString();
- }
- else{
- this.queryParams.qwSubject=null
- }
- const queryParams = this.queryParams;
- this.$confirm('是否确认导出所有订单数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- this.exportLoading = true;
- return exportOrder(queryParams);
- }).then(response => {
- console.log(response)
- if(response.code==200){
-
- that.msgSuccess(response.msg);
- that.taskId=response.data;
- that.time=setInterval(function(){
- //查订单
- getTask(that.taskId).then(res => {
- if(res.data.status==1){
- that.exportLoading = false;
- clearTimeout(that.time)
- that.time=null;
- that.download(res.data.fileUrl);
- }
- });
- },10000);
- }
- }).catch(() => {});
- },
- /** 导出按钮操作 */
- handleOrderExport() {
- var that=this;
- if(this.payTypeArr.length>0){
- this.queryParams.payType=this.payTypeArr.toString();
- }
- else{
- this.queryParams.payType=null
- }
- if(this.scheduleIdArr.length>0){
- this.queryParams.scheduleId=this.scheduleIdArr.toString();
- }
- else{
- this.queryParams.scheduleId=null
- }
- if(this.buyTypeArr.length>0){
- this.queryParams.orderBuyType=this.buyTypeArr.toString();
- }
- else{
- this.queryParams.orderbuyType=null
- }
- if(this.channelArr.length>0){
- this.queryParams.orderChannel=this.channelArr.toString();
- }
- else{
- this.queryParams.orderChannel=null
- }
- if(this.qwSubjectArr.length>0){
- this.queryParams.qwSubject=this.qwSubjectArr.toString();
- }
- else{
- this.queryParams.qwSubject=null
- }
- const queryParams = this.queryParams;
- this.$confirm('是否确认导出所有订单数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- this.exportLoading = true;
- return exportOrder2(queryParams);
- }).then(response => {
- console.log(response)
- if(response.code==200){
- console.log(response.msg)
- that.msgSuccess(response.msg);
- that.taskId=response.data;
- that.time=setInterval(function(){
- //查订单
- getTask(that.taskId).then(res => {
- if(res.data.status==1){
- that.exportLoading = false;
- clearTimeout(that.time)
- that.time=null;
- that.download(res.data.fileUrl);
- }
- });
- },10000);
- }
- }).catch(() => {});
- },
- /** 查询部门下拉树结构 */
- getTreeselect() {
- var that=this;
- var param={companyId:this.companyId}
- treeselect(param).then((response) => {
- this.deptOptions = response.data;
- console.log(this.deptOptions)
- if(response.data!=null&&response.data.length>0){
- //this.queryParams.deptId=response.data[0].id;
- }
- });
- },
- companyChange(val){
- console.log(this.companyIds);
- if(this.companyIds.length>1){
- this.deptOpen = false;
- } else {
- this.deptOpen = true
- if(this.companyIds.length=1){
- this.companyId=this.companyIds[0];
- this.getTreeselect();
- }
- }
-
- },
- // companyChange(val){
- // console.log(val);
- // this.companyId=val;
- // this.getTreeselect();
- // },
- currDeptChange(val){
- console.log(val)
- this.queryParams.deptId=val;
- this.getList();
- },
- }
- };
- </script>
- <style scoped>
- .tag-input-order-search {
- padding: 20px;
- background: #fff;
- border-radius: 4px;
- }
- .tag-input-container {
- min-width: 445px;
- }
- .tags-wrapper {
- min-height: 32px;
- padding: 4px 8px;
- border: 1px solid #dcdfe6;
- border-radius: 4px;
- cursor: text;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- gap: 4px;
- transition: border-color 0.2s;
- }
- .tags-wrapper:hover {
- border-color: #c0c4cc;
- }
- .tags-wrapper:focus-within {
- border-color: #409eff;
- box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
- }
- .order-tag {
- margin: 2px;
- flex-shrink: 0;
- }
- .tag-error {
- background-color: #fef0f0;
- border-color: #fbc4c4;
- color: #f56c6c;
- }
- .tag-input {
- border: none;
- outline: none;
- flex: 1;
- min-width: 120px;
- }
- .tag-input >>> .el-input__inner {
- border: none;
- padding: 0;
- height: 24px;
- line-height: 24px;
- }
- .button-new-tag {
- height: 24px;
- line-height: 22px;
- padding: 0 8px;
- margin: 2px;
- }
- .input-tips {
- margin-top: 4px;
- font-size: 12px;
- color: #909399;
- }
- /* 新增排序相关样式 */
- .sort-info {
- margin-top: 10px;
- padding: 8px 0;
- }
- .tip-text {
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .quick-actions {
- margin-top: 12px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 8px 0;
- border-top: 1px solid #ebeef5;
- }
- .stats-info {
- font-size: 12px;
- color: #909399;
- display: flex;
- align-items: center;
- gap: 4px;
- }
- .invalid-codes-list {
- margin: 16px 0;
- max-height: 200px;
- overflow-y: auto;
- }
- .invalid-tag {
- margin: 4px;
- }
- .debug-preview {
- margin-top: 20px;
- }
- .debug-content {
- font-size: 12px;
- }
- .debug-content code {
- display: block;
- background: #f5f5f5;
- padding: 8px;
- border-radius: 4px;
- margin: 4px 0 12px 0;
- white-space: pre-wrap;
- }
- /* 响应式设计 */
- @media (max-width: 768px) {
- .tag-input-container {
- min-width: auto;
- width: 100%;
- }
-
- .tags-wrapper {
- min-height: 40px;
- }
-
- .quick-actions {
- flex-direction: column;
- align-items: flex-start;
- gap: 8px;
- }
- }
- </style>
|