| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="公司名" prop="companyId">
- <el-select filterable v-model="queryParams.companyId" placeholder="请选择公司名" @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>
- <treeselect style="width: 220px" :clearable="false" v-model="queryParams.deptId" :options="deptOptions" :show-count="true" placeholder="请选择归属部门" />
- </el-form-item>
- <!-- <el-form-item label="订单号" prop="orderCode">
- <el-input
- v-model="queryParams.orderCode"
- placeholder="请输入订单号"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </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="deliveryId">
- <el-input
- v-model="queryParams.deliveryId"
- 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="realName">
- <el-input
- v-model="queryParams.realName"
- placeholder="请输入收件人姓名"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"/>
- </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="orderType">
- <el-select v-model="queryParams.orderType" placeholder="请选择订单类型" clearable size="small" >
- <el-option
- v-for="item in orderTypeOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="支付方式" prop="payType">
- <el-select v-model="queryParams.payType" placeholder="请选择支付方式" clearable size="small" >
- <el-option
- v-for="item in payTypeOptions"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="上传凭证" prop="isUpload">
- <el-select v-model="queryParams.isUpload" placeholder="请选择" clearable size="small" >
- <el-option key="0" label="未上传" value="0" />
- <el-option key="1" label="已上传" value="1" />
- </el-select>
- </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 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="coursePlaySourceConfigId">
- <el-select v-model="queryParams.coursePlaySourceConfigId" placeholder="请选择所属小程序" clearable size="small">
- <el-option
- v-for="dict in appMallOptions"
- :key="dict.id"
- :label="dict.name + '(' + dict.appid + ')'"
- :value="dict.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="下单时间" prop="createTimeRange">
- <el-date-picker
- style="width:215px"
- clearable size="small"
- v-model="createTimeRange"
- type="daterange"
- value-format="yyyy-MM-dd"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="支付时间" prop="payTimeRange">
- <el-date-picker
- style="width: 215px"
- clearable size="small"
- v-model="payTimeRange"
- type="daterange"
- value-format="yyyy-MM-dd"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="发货时间" prop="deliverySendTimeRange">
- <el-date-picker
- style="width:215px"
- clearable size="small"
- v-model="deliverySendTimeRange"
- type="daterange"
- value-format="yyyy-MM-dd"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="回单时间" prop="deliveryImportTimeRange">
- <el-date-picker
- style="width:215px"
- clearable size="small"
- v-model="deliveryImportTimeRange"
- type="daterange"
- value-format="yyyy-MM-dd"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="档期归属" prop="scheduleId" >
- <el-select filterable style="width: 215px" v-model="queryParams.scheduleId" placeholder="请选择档期" clearable size="small" >
- <el-option
- v-for="item in scheduleOptions"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="代服账户" prop="erpAccount" v-if="SFDFopen">
- <el-select v-model="queryParams.erpAccount" style="width: 215px" 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="代服电话" 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="cyan" 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="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['store:storeOrder:add']"
- >创建订单</el-button>
- </el-col> -->
- <el-col :span="1.5">
- <el-button plain type="info" icon="el-icon-upload2" size="mini" @click="handleImport" v-hasPermi="['store:storeOrder:importExpress']">导入银行回单</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleOrderExport"
- v-hasPermi="['store:storeOrder:export']"
- >导出订单</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExportItems"
- v-hasPermi="['store:storeOrder:exportItems']"
- >导出订单明细</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-s-order"
- size="mini"
- @click="openDeliveryNote"
- >批量导入物流单号</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExportDetails"
- v-hasPermi="['store:storeOrder:export:details']"
- >导出订单(明文)</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExportItemsDetails"
- v-hasPermi="['store:storeOrder:exportItems:details']"
- >导出订单明细(明文)</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleOrderDelete"
- v-hasPermi="['store:storeOrder:remove']"
- >删除
- </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>
- <el-col :span="1.5">
- <el-button
- disabled
- plain
- type="primary"
- size="mini"
- >应付金额: {{ payPriceTotal}}</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- disabled
- plain
- type="primary"
- size="mini"
- >实付金额: {{payMoneyTotal}}</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- disabled
- plain
- type="primary"
- size="mini"
- >物流代收金额: {{payRemainTotal }}</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- disabled
- plain
- type="primary"
- size="mini"
- >订单量/金额: {{ total }}/{{payPriceTotal }}</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-input
- v-model="orderItemNum"
- disabled
- size="mini"
- />
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-tabs type="card" v-model="activeName" @tab-click="handleClick">
- <el-tab-pane label="全部订单" name="00"></el-tab-pane>
- <el-tab-pane label="待支付" name="0"></el-tab-pane>
- <el-tab-pane label="待推送" name="6"></el-tab-pane>
- <el-tab-pane label="待发货" name="1"></el-tab-pane>
- <el-tab-pane label="待收货" name="2"></el-tab-pane>
- <el-tab-pane label="交易完成" name="3"></el-tab-pane>
- <el-tab-pane label="退款中" name="-1"></el-tab-pane>
- <el-tab-pane label="已退款" name="-2"></el-tab-pane>
- <el-tab-pane label="已取消" name="-3"></el-tab-pane>
- </el-tabs>
- <el-table ref="orderTable" height="500" border v-loading="loading" :data="storeOrderList" @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="订单号" align="center" prop="orderCode" width="200px" />
- <el-table-column label="ERP电话" align="center" prop="erpPhone" width="120px" v-if="SFDFopen "/>
- <el-table-column label="ERP账号" align="center" prop="erpAccount" width="120px" v-if="SFDFopen"/>
- <el-table-column label="所属公司" align="center" prop="companyName" />
- <el-table-column label="所属员工" align="center" prop="companyUserNickName" width="120px" 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="小程序名称" width="120px" align="center" prop="miniProgramName"/>
- <el-table-column label="用户昵称" align="center" prop="nickname" width="150px" >
- <template slot-scope="scope">
- <span>{{scope.row.nickname}} </span>
- </template>
- </el-table-column>
- <el-table-column label="收件人" align="center" prop="realName" width="150px" >
- <template slot-scope="scope">
- <span>{{scope.row.realName}} </span>
- </template>
- </el-table-column>
- <!-- <el-table-column label="商品" align="center" width="300px" >
- <template slot-scope="scope">
- <div v-for="(item, index) in scope.row.items" class="items" >
- <img class="pic" :src="JSON.parse(item.jsonInfo).image" />
- <div class="goods-content">
- <div class="goods-title">{{ JSON.parse(item.jsonInfo).productName}}</div>
- <div class="sku">{{ JSON.parse(item.jsonInfo).sku}}</div>
- <div class="price">¥{{JSON.parse(item.jsonInfo).price}}×{{item.num}}</div>
- </div>
- </div>
- </template>
- </el-table-column> -->
- <el-table-column label="订单金额" align="center" prop="totalPrice" >
- <template slot-scope="scope">
- <span v-if="scope.row.totalPrice!=null">{{scope.row.totalPrice.toFixed(2)}}</span>
- </template>
- </el-table-column>
- <!-- <el-table-column label="应付金额" align="center" prop="payPrice" >
- <template slot-scope="scope">
- <span v-if="scope.row.payPrice!=null">{{scope.row.payPrice.toFixed(2)}}</span>
- </template>
- </el-table-column> -->
- <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" >
- <template slot="header" slot-scope="scope">
- <span>实收金额</span>
- <el-tooltip content="按实收金额排序" placement="top"/>
- </template>
- </el-table-column>
- <el-table-column label="物流代收金额" align="center" prop="payDelivery" >
- <template slot-scope="scope">
- <span v-if="scope.row.payPrice!=null">{{scope.row.payDelivery.toFixed(2)}}</span>
- </template>
- </el-table-column>
- <el-table-column label="下单时间" align="center" prop="createTime" />
- <!-- <el-table-column label="支付状态" align="center" prop="paid" /> -->
- <el-table-column label="支付时间" align="center" prop="payTime" width="180" />
- <el-table-column label="发货时间" align="center" prop="deliverySendTime" width="180"></el-table-column>
- <el-table-column label="支付方式" align="center" prop="payType" >
- <template slot-scope="scope">
- <el-tag prop="payType" v-for="(item, index) in payTypeOptions" v-if="scope.row.payType==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="订单类型" align="center" prop="orderType" >
- <template slot-scope="scope">
- <el-tag prop="orderType" v-for="(item, index) in orderTypeOptions" v-if="scope.row.orderType==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="媒体来源" align="center" prop="orderMedium" >
- <template slot-scope="scope">
- <el-tag prop="orderMedium" v-for="(item, index) in orderMediumOptions" v-if="scope.row.orderMedium==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="订单产品" align="center" width="200px">
- <template slot-scope="scope">
- <div v-if="scope.row.items && scope.row.items.length > 0">
- <el-tag
- v-for="(item, index) in scope.row.items"
- :key="index"
- size="mini"
- class="product-tag"
- >
- {{ JSON.parse(item.jsonInfo).productName }} × {{ item.num }}
- </el-tag>
- </div>
- <span v-else class="no-products">暂无商品</span>
- </template>
- </el-table-column>
- <el-table-column label="状态" align="center" prop="status" >
- <template slot-scope="scope">
- <el-tag prop="status" v-for="(item, index) in statusOptions" v-if="scope.row.status==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="运单号" align="center" prop="deliveryId" >
- </el-table-column>
- <el-table-column label="物流状态" align="center" prop="deliveryStatus" >
- <template slot-scope="scope">
- <el-tag prop="status" v-for="(item, index) in deliveryStatusOptions" v-if="scope.row.deliveryStatus==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="物流结算状态" align="center" prop="deliveryPayStatus" >
- <template slot-scope="scope">
- <el-tag prop="status" v-for="(item, index) in deliveryPayStatusOptions" v-if="scope.row.deliveryPayStatus==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="操作" fixed="right" width="80px" align="center" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- @click="handleDetails(scope.row)"
- v-hasPermi="['store:storeOrder:query']"
- >查看</el-button>
- <!-- <el-button
- size="mini"
- type="text"
- @click="handleGenPayUrl(scope.row)"
- v-hasPermi="['store:storeOrder:genPayUrl']"
- >生成付款链接</el-button> -->
- </template>
- </el-table-column>
- </el-table>
- <div>
- 商品数量合计:{{ productInfo }}
- </div>
- <!-- 排序状态显示 -->
- <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>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <el-drawer size="75%" :title="show.title" :visible.sync="show.open">
- <product-order ref="order" />
- </el-drawer>
- <el-dialog :title="title" v-if="open" :visible.sync="open" width="1000px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="120px">
- <el-form-item label="会员信息" prop="userId">
- <el-row >
- <el-col >
- <el-input placeholder="请输入会员手机号" style="width:240px;cursor:pointer" v-model="phone">
- </el-input>
- <el-button plain style="margin-left:10px;" @click="searchUser()">查询</el-button>
- <el-button plain style="margin-left:10px;" icon="el-icon-plus" type="primary" @click="handleAddUser()">添加会员</el-button>
- </el-col>
- </el-row>
- <el-table border style="margin-top:5px;" v-loading="userloading" :data="users">
- <el-table-column label="ID" align="center" prop="userId" />
- <el-table-column label="会员头像" align="center" width="80">
- <template slot-scope="scope">
- <el-popover
- placement="right"
- title=""
- trigger="hover"
- >
- <img slot="reference" :src="scope.row.avatar" width="50" >
- <img :src="scope.row.avatar" style="max-width: 120px;">
- </el-popover>
- </template>
- </el-table-column>
- <el-table-column label="昵称" align="center" prop="nickname" />
- <el-table-column label="手机号" align="center" prop="phone" />
- <el-table-column label="状态" align="center" prop="status" >
- <template slot-scope="scope">
- <el-tag prop="status" v-for="(item, index) in userStatusOptions" v-if="scope.row.status==item.dictValue">{{item.dictLabel}}</el-tag>
- </template>
- </el-table-column>
- </el-table>
- </el-form-item>
- <el-form-item label="收货信息" prop="addressId">
- <el-row >
- <el-col >
- <el-button plain type="primary" icon="el-icon-plus" @click="handleAddUserAddress()">添加收货地址</el-button>
- </el-col>
- </el-row>
- <el-radio-group v-model="form.addressId" style="width:100%">
- <el-table border style="margin-top:5px;" v-loading="addressloading" :data="address">
- <el-table-column label="ID" align="center" >
- <template slot-scope="scope">
- <el-radio :label="scope.row.id"></el-radio>
- </template>
- </el-table-column>
- <el-table-column label="收货人姓名" align="center" prop="realName" />
- <el-table-column label="收货人电话" align="center" prop="phone" />
- <el-table-column label="地址" align="center" prop="detail" >
- <template slot-scope="scope">
- {{scope.row.province}} {{scope.row.city}} {{scope.row.district}} {{scope.row.detail}}
- </template>
- </el-table-column>
- </el-table>
- </el-radio-group>
- </el-form-item>
- <el-form-item label="商品列表" >
- <el-row >
- <el-col >
- <el-button plain type="primary" icon="el-icon-plus" @click="handleAddProduct">添加商品</el-button>
- </el-col>
- </el-row>
- <el-table border :key = "tablekey" width="100%" style="margin-top:5px;" :data="products">
- <el-table-column label="商品编号" align="center" prop="barCode" />
- <el-table-column label="商品图片" align="center" width="100">
- <template slot-scope="scope">
- <el-popover
- placement="right"
- title=""
- trigger="hover"
- >
- <img slot="reference" :src="scope.row.image" width="50">
- <img :src="scope.row.image" style="max-width: 50px;">
- </el-popover>
- </template>
- </el-table-column>
- <el-table-column label="商品名称" show-overflow-tooltip align="center" prop="productName" />
- <el-table-column label="商品规格" align="center" prop="sku" />
- <el-table-column label="库存" align="center" prop="stock" />
- <el-table-column label="单价" align="center" prop="price" />
- <el-table-column label="数量" align="center" prop="count" width="200px" :key="tablekey">
- <template slot-scope="scope">
- <div>
- <el-input-number v-model="scope.row.count" @change="handleProductCountChange(scope.row)" size="mini" :min="1" :max="scope.row.stock" ></el-input-number>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="小计" align="center" prop="money" />
- <el-table-column label="操作" align="center" width="100px" >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-row>
- <el-col>
- <span>商品合计:{{products.length}}</span><span style="margin-left:10px;">商品总价:{{totalMoney.toFixed(2)}}</span>
- </el-col>
- </el-row>
- </el-form-item>
- <el-form-item label="订单备注" prop="mark">
- <el-input type="textarea" rows="2" v-model="form.mark" placeholder="" />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog :title="product.title" v-if="product.open" :visible.sync="product.open" width="1000px" append-to-body>
- <product-select @selectProduct="selectProduct" />
- </el-dialog>
- <el-dialog :title="user.title" v-if="user.open" :visible.sync="user.open" width="500px" append-to-body>
- <add-user @addUser="addUser" />
- </el-dialog>
- <el-dialog :title="userAddress.title" v-if="userAddress.open" :visible.sync="userAddress.open" width="800px" append-to-body>
- <add-user-address ref="addUserAddress" @addUserAddress="addUserAddress" />
- </el-dialog>
- <el-dialog :title="payQr.title" v-if="payQr.open" :visible.sync="payQr.open" width="240px" append-to-body>
- <div style="padding-bottom:15px;" >
- <div class="qrcode" ref="qrCodeUrl"></div>
- </div>
- </el-dialog>
- <el-dialog :title="upload.title" :visible.sync="upload.open" append-to-body width="400px">
- <el-upload ref="upload" :action="upload.url + '?updateSupport=' + upload.updateSupport" :auto-upload="false" :disabled="upload.isUploading"
- :headers="upload.headers" :limit="1"
- :on-progress="handleFileUploadProgress" :on-success="handleFileSuccess" accept=".xlsx, .xls" drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- 将文件拖到此处,或
- <em>点击上传</em>
- </div>
- <div slot="tip" class="el-upload__tip">
- <!-- <el-checkbox v-model="upload.updateSupport" />是否更新已经存在的数据 -->
- <el-link
- style="font-size:12px"
- type="info"
- id="templateDownloadLink"
- >
- 下载模板
- </el-link>
- </div>
- <div slot="tip" class="el-upload__tip" style="color:red">提示:仅允许导入“xls”或“xlsx”格式文件!</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 :close-on-click-modal="false" :close-on-press-escape="false" :visible.sync="importMsgOpen"
- append-to-body title="导入结果" width="500px"
- >
- <h1>{{importMsg}}</h1>
- </el-dialog>
- <!-- 批量发货 -->
- <el-dialog
- :before-close="handleClose"
- :visible.sync="deliveryNoteOpen"
- center
- title="批量发货"
- width="35%"
- >
- <span slot="footer" class="dialog-footer">
- <!-- 小程序Appid选择 -->
- <!-- <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm">-->
- <!-- <el-form-item label="小程序:" prop="miniAppId">-->
- <!-- <el-select-->
- <!-- v-model="ruleForm.miniAppId"-->
- <!-- clearable-->
- <!-- placeholder="请选择发货小程序"-->
- <!-- style="width: 100%"-->
- <!-- >-->
- <!-- <el-option-->
- <!-- v-for="item in miniAppList"-->
- <!-- :key="item.appId"-->
- <!-- :label="item.appName"-->
- <!-- :value="item.appId"-->
- <!-- />-->
- <!-- </el-select>-->
- <!-- </el-form-item>-->
- <!-- </el-form>-->
- <el-upload ref="upload" :action="orderUpload.url" :auto-upload="false" :disabled="orderUpload.isUploading" :headers="orderUpload.headers"
- :limit="1" :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess" accept=".xlsx, .xls" drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- 将文件拖到此处,或
- <em>点击上传</em>
- </div>
- <div slot="tip" class="el-upload__tip">
- <el-link
- type="info"
- id="templateDownloadLink"
- @click.prevent="importDeliveryNoteTemplate"
- >
- 下载模板
- </el-link>
- </div>
- <div slot="tip" class="el-upload__tip" style="color:red">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
- </el-upload>
- <el-divider></el-divider>
- <el-button @click="deliveryNoteOpen = false">取 消</el-button>
- <el-button type="primary" @click="submitDeliveryNote">确 定</el-button>
- </span>
- </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>
- <!-- 导出字段选择对话框 -->
- <el-dialog :title="exportFieldDialog.title" :visible.sync="exportFieldDialog.open" width="800px" append-to-body>
- <div v-loading="exportFieldDialog.loading">
- <div style="margin-bottom: 20px;">
- <el-button type="primary" size="small" @click="selectAllFields">全选</el-button>
- <el-button type="default" size="small" @click="unselectAllFields">全不选</el-button>
- <el-button type="success" size="small" @click="selectDefaultFields">选择常用</el-button>
- </div>
- <div class="field-selection-container">
- <el-row :gutter="20">
- <el-col :span="8" v-for="field in exportFieldOptions" :key="field.key">
- <el-checkbox
- v-model="field.checked"
- :label="field.label"
- style="margin-bottom: 12px; width: 100%;"
- >
- {{ field.label }}
- </el-checkbox>
- </el-col>
- </el-row>
- </div>
- <div class="field-count-info" style="margin-top: 20px; padding: 10px; background: #f5f7fa; border-radius: 4px;">
- <i class="el-icon-info"></i>
- <span v-if="getSelectedFieldsCount() > 0">
- 已选择 <span style="color: #409EFF; font-weight: bold;">{{ getSelectedFieldsCount() }}</span> 个字段
- </span>
- <span v-else style="color: #E6A23C; font-weight: bold;">
- <i class="el-icon-warning"></i>
- 未选择任何字段,将导出所有字段
- </span>
- </div>
- </div>
- <div slot="footer" class="dialog-footer">
- <el-button @click="cancelExportFieldDialog">取 消</el-button>
- <el-button
- type="primary"
- @click="confirmExportFields"
- >确认导出</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- importTemplate,
- exportStoreOrderItems,
- createUserOrder,
- listStoreOrder,
- getStoreOrder,
- delStoreOrder,
- addStoreOrder,
- updateStoreOrder,
- exportStoreOrder,
- getOrderItemsNum,
- importDeliveryNoteExpressTemplate, exportStoreOrderDetails, exportStoreOrderItemsDetails,getErpAccount,
- queryErpPhone,
- saveErpPhone,editErpPhone,batchCreateErpOrder,batchSetErpOrder
- } from '@/api/hisStore/storeOrder'
- import { getUserList } from "@/api/hisStore/user";
- import { getAddressList } from "@/api/hisStore/userAddress";
- import productOrder from "../components/productOrder";
- import productSelect from "../components/productSelect";
- import addUser from "../components/addUser";
- import addUserAddress from "../components/addUserAddress";
- import { getToken } from "@/utils/auth";
- import QRCode from 'qrcodejs2'
- 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 { getConfigByKey } from '@/api/system/config'
- import {list as getAppMallOptions} from '@/api/course/coursePlaySourceConfig';
- export default {
- components: { productOrder,productSelect,addUser,addUserAddress,Treeselect },
- name: "HisStoreOrder",
- watch: {
- // 监听deptId
- 'deptId': 'currDeptChange'
- },
- data() {
- return {
- orderStatus:null,
- productInfo:"",
- payPriceTotal:"0",
- payMoneyTotal:"0",
- payRemainTotal:"0",
- // 新增排序相关数据
- 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: [] // 选中的账户ID
- },
- orderSummary: null, // 订单统计信息
- erpPhoneValue:[],
- setPhoneOpen:false,
- erpPhone:{
- open:false,
- title:"设置推送手机号"
- },
- phoneList: [], // 手机号列表
- originalPhoneList: [], // 原始手机号列表,用于取消时恢复
- exportFieldDialog: {
- open: false,
- title: "选择导出字段",
- loading: false,
- type:null
- },
- // 可选择的导出字段列表
- exportFieldOptions: [
- { key: 'orderCode', label: '订单号', checked: true },
- { key: 'miniProgramName', label: '小程序名称', checked: true },
- { key: 'companyName', label: '公司名称', checked: true },
- { key: 'companyUserNickName', label: '所属销售', checked: true },
- { key: 'patientName', label: '就诊人', checked: true },
- { key: 'productName', label: '编号', checked: true },
- { key: 'barCode', label: '药品信息', checked: false },
- { key: 'payMoney', label: '实收金额', checked: true },
- { key: 'payRemain', label: '物流代收金额', checked: false },
- { key: 'payType', label: '支付方式', checked: true },
- { key: 'createTime', label: '下单时间', checked: true },
- { key: 'payTime', label: '支付时间', checked: true },
- { key: 'status', label: '订单状态', checked: true },
- { key: 'userName', label: '收货人姓名', checked: true },
- { key: 'userPhone', label: '收货人电话', checked: true },
- { key: 'userAddress', label: '详细地址', checked: true },
- { key: 'deliveryCode', label: '快递公司编号', checked: false },
- { key: 'deliveryName', label: '快递公司', checked: false },
- { key: 'deliverySn', label: '快递单号', checked: false },
- { key: 'remark', label: '备注', checked: false },
- { key: 'erpPhone', label: 'ERP电话', checked: false },
- { key: 'erpAccount', label: 'ERP账号', checked: false },
- ],
- itemlist : [],
- importMsgOpen:false,
- importMsg:"",
- scheduleOptions:[],
- deliveryPayStatusOptions:[],
- deliveryStatusOptions:[],
- companys:[],
- deptOptions:[],
- companyId:undefined,
- deptId:undefined,
- orderMediumOptions:[],
- orderTypeOptions:[],
- payTypeOptions:[],
- appMallOptions:[],
- payQr:{
- open:false,
- title:"付款二维码"
- },
- user:{
- open:false,
- title:"创建会员"
- },
- userAddress:{
- open:false,
- title:"创建收货地址"
- },
- tablekey:false,
- totalMoney:0.00,
- products:[],
- product:{
- open:false,
- title:"商品选择"
- },
- userStatusOptions:[],
- phone:null,
- address:[],
- addressloading: false,
- userloading: false,
- users:[],
- show:{
- open:false,
- title:"订单详情"
- },
- activeName:"00",
- statusOptions:[],
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 订单表格数据
- storeOrderList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- createTimeRange:[],
- payTimeRange:[],
- deliveryImportTimeRange:[],
- deliverySendTimeRange:[],
- orderItemNum:"",
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- orderCode: null,
- orderCodes:[],
- extendOrderId: null,
- userId: null,
- realName: null,
- userPhone: null,
- userAddress: null,
- cartId: null,
- freightPrice: null,
- totalNum: null,
- totalPrice: null,
- totalPostage: null,
- payPrice: null,
- payPostage: null,
- deductionPrice: null,
- couponId: null,
- couponPrice: null,
- paid: null,
- payTime: null,
- payType: null,
- status: null,
- refundStatus: null,
- refundReasonWapImg: null,
- refundReasonWapExplain: null,
- refundReasonTime: null,
- refundReasonWap: null,
- refundReason: null,
- refundPrice: null,
- deliverySn: null,
- deliveryName: null,
- deliveryType: null,
- deliveryId: null,
- gainIntegral: null,
- useIntegral: null,
- payIntegral: null,
- backIntegral: null,
- mark: null,
- isDel: null,
- cost: null,
- verifyCode: null,
- storeId: null,
- shippingType: null,
- isChannel: null,
- isRemind: null,
- isSysDel: null,
- deptId:null,
- isUpload:null,
- },
- // 表单参数
- form: {
- addressId:null,
- userId:null,
- },
- // 表单校验
- rules: {
- userId: [
- { required: true, message: "会员信息不能为空" }
- ],
- addressId: [
- { required: true, message: "收货信息不能为空" }
- ],
- },
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/store/storeOrder/importExpress",
- },
- orderUpload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: '',
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: 'Bearer ' + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + '/store/store/storeOrder/importDeliveryNoteExpress',
- },
- deliveryNoteOpen:false,
- miniAppList: [],
- ruleForm:{
- miniAppId: null,
- },
- };
- },
- 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.getDicts("crm_customer_source").then((response) => {
- this.orderMediumOptions = response.data;
- });
- this.getDicts("store_order_type").then((response) => {
- this.orderTypeOptions = response.data;
- });
- this.getDicts("user_status").then((response) => {
- this.userStatusOptions = response.data;
- });
- this.getDicts("store_pay_type").then((response) => {
- this.payTypeOptions = response.data;
- });
- this.getDicts("store_order_status").then((response) => {
- this.statusOptions = response.data;
- });
- this.getDicts("store_order_delivery_status").then((response) => {
- this.deliveryStatusOptions = response.data;
- });
- this.getDicts("store_delivery_pay_status").then((response) => {
- this.deliveryPayStatusOptions = response.data;
- });
- getTcmScheduleList().then(response => {
- this.scheduleOptions = response.data;
- });
- this.getList();
- this.getItemsNum();
- this.getErpAccountList();
- this.getAppMallOptions();
- },
- 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('已清除排序');
- },
- // 处理键盘按下事件
- 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]);
- this.getList();
- }
- } 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.storeOrderList.forEach(order => {
- if (this.ids.includes(order.orderId)) {
- totalAmount += parseFloat(order.payMoney || 0);
- }
- });
- } else {
- // 如果没有选中订单,统计当前查询条件下的所有订单
- selectedCount = queryCount;
- this.storeOrderList.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 {
- // 如果没有选中订单,推送查询条件下的所有订单
- // 合并查询参数
- param = { ...param, ...this.queryParams };
- }
- const response = await batchSetErpOrder(param);
- if (response.code === 200) {
- this.$message.success('订单ERP账号设置成功');
- this.cancelErpAccountDialog();
- this.getErpAccountList(); // 刷新列表
- 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 {
- // 如果没有选中订单,推送查询条件下的所有订单
- // 合并查询参数
- param = { ...param, ...this.queryParams };
- }
- const response = await batchCreateErpOrder(param);
- if (response.code === 200) {
- this.$message.success('ERP订单创建成功');
- this.cancelErpAccountDialog();
- this.getErpAccountList(); // 刷新列表
- 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 {
- 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 || '保存失败');
- }
- this.getList();
- }).catch(() => {
- this.$message.error('保存失败');
- });
- },
- // 取消手机号对话框
- handleCancelPhoneDialog() {
- // 恢复原始数据
- this.phoneList = JSON.parse(JSON.stringify(this.originalPhoneList));
- this.erpPhone.open = false;
- },
- // 获取小程序选项列表
- getAppMallOptions() {
- getAppMallOptions({pageNum:1,pageSize:100,isMall:1}).then(response => {
- this.appMallOptions = response.rows;
- })
- },
- // 获取已选择字段数量
- getSelectedFieldsCount() {
- return this.exportFieldOptions.filter(field => field.checked).length;
- },
- // 取消导出字段选择
- cancelExportFieldDialog() {
- this.exportFieldDialog.open = false;
- this.exportFieldDialog.type = null;
- },
- // 选择常用字段
- selectDefaultFields() {
- // 先全不选
- this.unselectAllFields();
- // 然后选择常用字段
- const defaultFields = ['orderCode', 'prescribeCode', 'companyName', 'companyUserNickName',
- 'storeName', 'miniProgramName', 'userName', 'userPhone', 'userAddress', 'totalPrice',
- 'totalNum', 'payPrice', 'payMoney', 'createTime', 'payTime',
- 'payType', 'status', 'packageName', 'patientName'];
- this.exportFieldOptions.forEach(field => {
- if (defaultFields.includes(field.key)) {
- field.checked = true;
- }
- });
- },
- // 确认导出字段
- confirmExportFields() {
- // 获取已选择的字段
- const selectedFieldsArray = this.exportFieldOptions.filter(field => field.checked);
- let selectedFields = '';
- if (selectedFieldsArray.length === 0) {
- // 如果没有选择任何字段,则导出全部字段(不传filter参数)
- selectedFields = null;
- } else {
- // 如果选择了字段,则只导出选中的字段
- selectedFields = selectedFieldsArray.map(field => field.key).join(',');
- }
- // 关闭弹窗
- this.exportFieldDialog.open = false;
- // 执行导出操作
- this.doExportOrder(selectedFields);
- },
- // 执行导出操作
- doExportOrder(selectedFields) {
- if(this.queryParams.status=='00'){
- this.queryParams.status=null;
- }
- if(this.createTimeRange!=null&&this.createTimeRange.length==2){
- this.queryParams.createTimeRange=this.createTimeRange[0]+"--"+this.createTimeRange[1]
- }
- else{
- this.queryParams.createTimeRange=null;
- }
- if(this.payTimeRange!=null&&this.payTimeRange.length==2){
- this.queryParams.payTimeRange=this.payTimeRange[0]+"--"+this.payTimeRange[1]
- }
- else{
- this.queryParams.payTimeRange=null;
- }
- if(this.deliveryImportTimeRange!=null&&this.deliveryImportTimeRange.length==2){
- this.queryParams.deliveryImportTimeRange=this.deliveryImportTimeRange[0]+"--"+this.deliveryImportTimeRange[1]
- }
- else{
- this.queryParams.deliveryImportTimeRange=null;
- }
- if(this.deliverySendTimeRange!=null&&this.deliverySendTimeRange.length==2){
- this.queryParams.deliverySendTimeRange=this.deliverySendTimeRange[0]+"--"+this.deliverySendTimeRange[1]
- }
- else{
- this.queryParams.deliverySendTimeRange=null;
- }
- const queryParams = this.addDateRange(this.queryParams, this.dateRange);
- // 根据是否选择字段显示不同的确认消息
- let confirmMessage = '';
- if (selectedFields === null) {
- confirmMessage = '没有选择字段,将导出所有字段的订单数据,确认继续?';
- } else {
- const fieldCount = selectedFields.split(',').length;
- confirmMessage = `确认导出选中的 ${fieldCount} 个字段的订单数据?`;
- }
- this.$confirm('是否确认导出所有订单数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(()=> {
- this.exportLoading = true;
- // 构建请求参数
- const requestParams = {...queryParams};
- // 只有当selectedFields不为null时才添加filter参数
- if (selectedFields !== null) {
- requestParams.filter = selectedFields;
- }
- console.log(requestParams)
- if(this.exportFieldDialog.type == 1){
- return exportStoreOrder(requestParams);
- } else if (this.exportFieldDialog.type == 2){
- return exportStoreOrderDetails(requestParams);
- }
- }).then(response => {
- this.download(response.msg);
- }).catch(function() {});
- },
- // 导出字段选择相关方法
- // 全选字段
- selectAllFields() {
- this.exportFieldOptions.forEach(field => {
- field.checked = true;
- });
- },
- // 全不选字段
- unselectAllFields() {
- this.exportFieldOptions.forEach(field => {
- field.checked = false;
- });
- },
- handleGenPayUrl(row){
- this.payQr.open=true;
- setTimeout(() => {
- var qrcode = new QRCode(this.$refs.qrCodeUrl, {
- text: config.payQRUrl+row.id, // 需要转换为二维码的内容
- width: 200,
- height: 200,
- colorDark: '#000000',
- colorLight: '#ffffff',
- correctLevel: QRCode.CorrectLevel.H
- })
- }, 200);
- },
- handleAddUser(){
- this.user.open=true;
- },
- handleAddUserAddress(){
- if(this.form.userId==null){
- this.msgError("请选择会员");
- return;
- }
- this.userAddress.open=true;
- setTimeout(() => {
- this.$refs.addUserAddress.init(this.form.userId);
- }, 500);
- },
- addUser(){
- this.user.open=false;
- },
- addUserAddress(){
- this.userAddress.open=false;
- //获取地址
- this.getAddressList(this.form.userId);
- },
- compute(){
- this.totalMoney=0;
- var that=this;
- this.products.forEach (function (value) {
- that.totalMoney += value.money;
- });
- console.log(that.totalMoney)
- },
- handleProductCountChange(row){
- this.tablekey = !this.tablekey
- console.log(row)
- row.money=row.count*row.price;
- this.$forceUpdate();
- this.compute();
- },
- selectProduct(row){
- console.log(row);
- for(var i=0;i<this.products.length;i++){
- if(this.products[i].id==row.id){
- return;
- }
- }
- row.count=1;
- row.money=row.count*row.price;
- this.products.push(row);
- this.compute();
- },
- handleAddProduct(){
- this.product.open=true;
- },
- searchUser(){
- if(this.phone==null||this.phone==""){
- return;
- }
- var data={phone:this.phone}
- this.userloading = true;
- this.users=[];
- this.address=[];
- getUserList(data).then(response => {
- this.users = response.data;
- this.userloading = false;
- if(this.users!=null&&this.users.length==1){
- this.form.userId=this.users[0].userId;
- this.getAddressList(this.form.userId)
- }
- });
- },
- getAddressList(userId){
- var data={userId:userId}
- this.addressloading = true;
- this.address=[];
- getAddressList(data).then(response => {
- this.address = response.data;
- this.addressloading = false;
- });
- },
- handleDetails(row){
- this.show.open=true;
- const orderId = row.id ;
- setTimeout(() => {
- this.$refs.order.getOrder(orderId);
- }, 500);
- },
- handleClick(tab, event) {
- this.orderStatus = tab.name;
- this.activeName=tab.name;
- this.queryParams.status=tab.name
- console.log(this.queryParams.status)
- this.getList();
- },
- /** 查询订单列表 */
- getList() {
- this.loading = true;
- if(this.queryParams.status=='00'){
- this.queryParams.status=null;
- }
- if(this.createTimeRange!=null&&this.createTimeRange.length==2){
- this.queryParams.createTimeRange=this.createTimeRange[0]+"--"+this.createTimeRange[1]
- }
- else{
- this.queryParams.createTimeRange=null;
- }
- if(this.payTimeRange!=null&&this.payTimeRange.length==2){
- this.queryParams.payTimeRange=this.payTimeRange[0]+"--"+this.payTimeRange[1]
- }
- else{
- this.queryParams.payTimeRange=null;
- }
- if(this.deliveryImportTimeRange!=null&&this.deliveryImportTimeRange.length==2){
- this.queryParams.deliveryImportTimeRange=this.deliveryImportTimeRange[0]+"--"+this.deliveryImportTimeRange[1]
- }
- else{
- this.queryParams.deliveryImportTimeRange=null;
- }
- if(this.deliverySendTimeRange!=null&&this.deliverySendTimeRange.length==2){
- this.queryParams.deliverySendTimeRange=this.deliverySendTimeRange[0]+"--"+this.deliverySendTimeRange[1]
- }
- else{
- this.queryParams.deliverySendTimeRange=null;
- }
- // 处理订单号数组
- if (this.queryParams.orderCodes && this.queryParams.orderCodes.length > 0) {
- this.queryParams.orderCodeList = this.queryParams.orderCodes.join(',');
- } else {
- this.queryParams.orderCodeList = null;
- }
- listStoreOrder(this.queryParams).then(response => {
- this.storeOrderList = response.rows;
- this.total = response.total;
- if(this.total>0){
- this.payPriceTotal = response.payPriceTotal;
- this.payMoneyTotal = response.payMoneyTotal;
- this.payRemainTotal = response.payRemainTotal;
- this.productInfo = response.productInfo;
- } else {
- this.payPriceTotal = "0"
- this.payMoneyTotal = "0"
- this.payRemainTotal = "0"
- this.productInfo = response.productInfo;
- }
- this.loading = false;
- if(response.msg == 'knt'){
- 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('查询数据失败');
- });
- },
- getItemsNum() {
- this.loading = true;
- if(this.queryParams.status=='00'){
- this.queryParams.status=null;
- }
- if(this.createTimeRange!=null&&this.createTimeRange.length==2){
- this.queryParams.createTimeRange=this.createTimeRange[0]+"--"+this.createTimeRange[1]
- }
- else{
- this.queryParams.createTimeRange=null;
- }
- if(this.payTimeRange!=null&&this.payTimeRange.length==2){
- this.queryParams.payTimeRange=this.payTimeRange[0]+"--"+this.payTimeRange[1]
- }
- else{
- this.queryParams.payTimeRange=null;
- }
- if(this.deliveryImportTimeRange!=null&&this.deliveryImportTimeRange.length==2){
- this.queryParams.deliveryImportTimeRange=this.deliveryImportTimeRange[0]+"--"+this.deliveryImportTimeRange[1]
- }
- else{
- this.queryParams.deliveryImportTimeRange=null;
- }
- if(this.deliverySendTimeRange!=null&&this.deliverySendTimeRange.length==2){
- this.queryParams.deliverySendTimeRange=this.deliverySendTimeRange[0]+"--"+this.deliverySendTimeRange[1]
- }
- else{
- this.queryParams.deliverySendTimeRange=null;
- }
- getOrderItemsNum(this.queryParams).then(response => {
- this.orderItemNum = response.orderItemsNum;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- addressId:null,
- userId:null,
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- this.getItemsNum();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.payTimeRange = []
- this.createTimeRange = []
- this.deliverySendTimeRange = []
- this.deliveryImportTimeRange = []
- this.resetForm("queryForm");
- // 清除排序
- this.currentSort = {
- prop: null,
- order: null
- };
- this.queryParams.sortField = null;
- this.queryParams.sortOrder = null;
- // 重置表格排序状态 - 关键代码
- this.$nextTick(() => {
- if (this.$refs.orderTable) {
- this.$refs.orderTable.clearSort();
- }
- });
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "创建订单";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const id = row.id || this.ids
- getStoreOrder(id).then(response => {
- this.form = response.data;
- this.open = true;
- this.title = "修改订单";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- this.form.products=this.products;
- if (valid) {
- console.log(this.form);
- createUserOrder(this.form).then(response => {
- if (response.code === 200) {
- this.msgSuccess("创建成功");
- this.open = false;
- this.getList();
- }
- });
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- this.products.splice(this.products.findIndex(item => item.id === row.id), 1)
- this.compute();
- },
- /** 删除按钮操作 */
- handleOrderDelete(row) {
- const ids = row.id || this.ids;
- this.$confirm('是否确认删除当前选择的订单数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function () {
- return delStoreOrder(ids);
- }).then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- }).catch(() => {
- });
- },
- /** 导出按钮操作 */
- handleOrderExport() {
- // 打开字段选择对话框
- this.exportFieldDialog.open = true;
- this.exportFieldDialog.type = 1;
- },
- handleExportItemsDetails() {
- if(this.queryParams.status=='00'){
- this.queryParams.status=null;
- }
- if(this.createTimeRange!=null&&this.createTimeRange.length==2){
- this.queryParams.createTimeRange=this.createTimeRange[0]+"--"+this.createTimeRange[1]
- }
- else{
- this.queryParams.createTimeRange=null;
- }
- if(this.payTimeRange!=null&&this.payTimeRange.length==2){
- this.queryParams.payTimeRange=this.payTimeRange[0]+"--"+this.payTimeRange[1]
- }
- else{
- this.queryParams.payTimeRange=null;
- }
- if(this.deliveryImportTimeRange!=null&&this.deliveryImportTimeRange.length==2){
- this.queryParams.deliveryImportTimeRange=this.deliveryImportTimeRange[0]+"--"+this.deliveryImportTimeRange[1]
- }
- else{
- this.queryParams.deliveryImportTimeRange=null;
- }
- if(this.deliverySendTimeRange!=null&&this.deliverySendTimeRange.length==2){
- this.queryParams.deliverySendTimeRange=this.deliverySendTimeRange[0]+"--"+this.deliverySendTimeRange[1]
- }
- else{
- this.queryParams.deliverySendTimeRange=null;
- }
- const queryParams = this.addDateRange(this.queryParams, this.dateRange);
- this.$confirm('是否确认导出所有订单明细数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return exportStoreOrderItemsDetails(queryParams);
- }).then(response => {
- this.download(response.msg);
- }).catch(function() {});
- },
- /** 导出按钮操作 */
- handleExportDetails() {
- this.exportFieldDialog.open = true;
- this.exportFieldDialog.type = 2;
- },
- handleExportItems() {
- if(this.queryParams.status=='00'){
- this.queryParams.status=null;
- }
- if(this.createTimeRange!=null&&this.createTimeRange.length==2){
- this.queryParams.createTimeRange=this.createTimeRange[0]+"--"+this.createTimeRange[1]
- }
- else{
- this.queryParams.createTimeRange=null;
- }
- if(this.payTimeRange!=null&&this.payTimeRange.length==2){
- this.queryParams.payTimeRange=this.payTimeRange[0]+"--"+this.payTimeRange[1]
- }
- else{
- this.queryParams.payTimeRange=null;
- }
- if(this.deliveryImportTimeRange!=null&&this.deliveryImportTimeRange.length==2){
- this.queryParams.deliveryImportTimeRange=this.deliveryImportTimeRange[0]+"--"+this.deliveryImportTimeRange[1]
- }
- else{
- this.queryParams.deliveryImportTimeRange=null;
- }
- if(this.deliverySendTimeRange!=null&&this.deliverySendTimeRange.length==2){
- this.queryParams.deliverySendTimeRange=this.deliverySendTimeRange[0]+"--"+this.deliverySendTimeRange[1]
- }
- else{
- this.queryParams.deliverySendTimeRange=null;
- }
- const queryParams = this.addDateRange(this.queryParams, this.dateRange);
- this.$confirm('是否确认导出所有订单明细数据项?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return exportStoreOrderItems(queryParams);
- }).then(response => {
- this.download(response.msg);
- }).catch(function() {});
- },
- handleImport() {
- this.upload.title = "导入银行回单";
- this.upload.open = true;
- },
- submitFileForm() {
- this.$refs.upload.submit();
- },
- handleDownloadTemplate() {
- console.log("===== 点击了下载模板,进入 importTemplate 方法 ====="); // 新增这行
- importTemplate().then((response) => {
- console.log("接口返回的下载链接:", response.msg);
- this.download(response.msg);
- }).catch((error) => {
- console.error("下载模板接口调用失败:", error); // 新增失败回调日志
- });
- },
- // 文件上传中处理
- 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.importMsgOpen=true;
- this.importMsg=response.msg
- // this.$alert(response.msg, '导入结果', {
- // dangerouslyUseHTMLString: true
- // });
- this.getList();
- },
- /** 查询部门下拉树结构 */
- 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(val);
- this.companyId=val;
- this.getTreeselect();
- },
- currDeptChange(val){
- console.log(val)
- this.queryParams.deptId=val;
- this.getList();
- },
- //打开发货单
- openDeliveryNote(){
- this.deliveryNoteOpen=true;
- // this.getAppList();
- },
- handleClose(done) {
- this.$confirm('确认关闭?')
- .then(_ => {
- done();
- })
- .catch(_ => {});
- },
- //发货单模板下载
- importDeliveryNoteTemplate(){
- importDeliveryNoteExpressTemplate().then((response) => {
- this.download(response.msg)
- })
- },
- getAppList() {
- this.miniAppList = []
- const key = "courseMa.config"
- getConfigByKey(key).then(response => {
- const {code,data} = response
- if (code === 200) {
- let value = data?.configValue
- if (value) {
- console.log("打印-----------------》",value)
- const appList = JSON.parse(value);
- this.miniAppList = appList.filter(v => v.type === '1').map(v => {
- return { appId: v.appid, appName: v.name }
- })
- }
- }
- })
- },
- // 提交发货单
- submitDeliveryNote() {
- const uploadFiles = this.$refs.upload.uploadFiles;
- if (uploadFiles.length === 0) {
- this.$message.error('请选择要上传的文件');
- return;
- }
- this.$refs.upload.submit();
- },
- }
- };
- </script>
- <style scoped lang="scss">
- .items{
- margin: 5px 0px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-start;
- .pic{
- width:60px;
- height:60px;
- }
- .goods-content{
- margin-left: 10px;
- max-width: 200px;
- text-align: left;
- .goods-title{
- overflow:hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- -o-text-overflow:ellipsis;
- }
- }
- }
- .el-message-box__message p{
- max-height: 400px;
- overflow:scroll;
- }
- .import-msg{
- height: 500px;
- overflow: auto;
- }
- </style>
- <style>
- .el-descriptions-item__label.is-bordered-label{
- font-weight: normal;
- }
- </style>
- <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;
- }
- /* 表格布局优化 */
- .el-table {
- min-width: 100%;
- table-layout: fixed;
- }
- .el-table .el-table__body-wrapper {
- overflow-x: auto;
- }
- .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>
|