| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097 |
- <template>
- <div class="BidSystemContractInfo">
- <Toptitle title="查看工装订单">
- <slot name="titleButton">
- <!-- <Button
- type="primary"
- style="margin-right: 10px"
- :disabled="isChecked"
- @click="showAddInputModal = true"
- >
- 添加特殊字段
- </Button> -->
- <!-- <Button
- @click="showForms = true"
- v-show="currencyTab == 'name2'"
- type="primary"
- style="margin-right: 10px"
- >表单设置</Button
- > -->
- <Button
- @click="handleOpenModal"
- v-show="currencyTab == 'name2'"
- type="primary"
- style="margin-right: 10px"
- >批量下深化</Button
- >
- <Button
- @click="handleOpenModal"
- v-show="currencyTab != 'name2'"
- type="primary"
- style="margin-right: 10px"
- >下深化</Button
- >
- <Button
- @click="showSupModal = true"
- type="primary"
- style="margin-right: 10px"
- >项目辅料</Button
- >
- <Button
- @click="goback()"
- type="primary"
- ghost
- style="margin-right: 10px"
- >返回</Button
- >
- </slot>
- </Toptitle>
- <Tabs value="name1" @on-click="handleCurTabChange">
- <TabPane
- label="块状形式"
- name="name1"
- style="overflow: hidden; overflow-y: auto"
- >
- <div class="top_search">
- <Form :model="formData" :label-width="100" class="top_search_form">
- <FormItem label="订单号:">
- {{ formData.order_no }}
- </FormItem>
- <FormItem label="项目名称:">
- {{ formData.residential_name }}
- </FormItem>
- <FormItem label="客户姓名:">
- {{ formData.client_name }}
- </FormItem>
- <FormItem label="紧急程度:">
- <span
- v-for="_item in warningList"
- :key="_item.id"
- v-show="_item.id == formData.warning_state"
- :style="{ color: _item.color }"
- >{{ _item.title }}
- </span>
- </FormItem>
- <FormItem label="项目定金:">
- {{ formData.front_money }}
- <!-- <RadioGroup v-model="formData.pay_state"
- size="small">
- <Radio :label=0
- :disabled="isChecked">未收款</Radio>
- <Radio :label=1
- :disabled="isChecked">已收款</Radio>
- </RadioGroup> -->
- </FormItem>
- <FormItem label="详细地址:">
- {{ formData.address }}
- </FormItem>
- <FormItem label="手机号:">
- {{ formData.mobile }}
- </FormItem>
- <FormItem label="开始日期:">
- {{
- formData.start_time
- ? func.replaceDateNoHMS(formData.start_time)
- : ""
- }}
- </FormItem>
- <FormItem label="结束日期:">
- {{
- formData.end_time
- ? func.replaceDateNoHMS(formData.end_time)
- : ""
- }}
- </FormItem>
- <FormItem label="业务员:">
- <span
- v-for="_item in salesmanList"
- :key="_item.id"
- v-show="_item.id == formData.salesman"
- :style="{ color: _item.color }"
- >{{ _item.nickname }}
- </span>
- </FormItem>
- <!-- <FormItem label="订单类型:">
- <Select v-model="formData.type"
- :disabled="isChecked"
- size="small"
- style="width:200px">
- <Option label='工装'
- :value=1></Option>
- <Option label='家装'
- :value=2></Option>
- </Select>
- </FormItem> -->
- <FormItem
- v-for="item in formData.special"
- :key="item.id"
- :label="item.key + ':'"
- >
- {{ item.value }}
- </FormItem>
- <FormItem label="备注:">
- {{ formData.remark }}
- </FormItem>
- </Form>
- </div>
- <div
- class="addArea"
- v-for="(areaItem, areaIndex) in formData.list"
- :key="areaItem.areaIndex"
- >
- <div class="addAreaBtn">
- <Button
- @click="handleShowCurrencyArea(areaItem, areaIndex)"
- size="small"
- type="primary"
- style="margin-right:10px"
- v-show="!(areaItem.product && areaItem.product.length > 0)"
- >展示产品</Button
- >
- <!-- <Button
- @click="handleHiddenCurrencyArea(areaItem, areaIndex)"
- size="small"
- type="primary"
- style="margin-right:10px"
- v-show="areaItem.product && areaItem.product.length > 0"
- >收缩</Button
- > -->
- <Button
- @click="handleOpenModal(areaItem.id)"
- size="small"
- type="primary"
- style="margin-right:10px"
- >下深化</Button
- >
- <!-- <Button
- size="small"
- type="primary"
- v-show="areaItem.isAllDeeped && areaItem.product.length > 0"
- >已下深化</Button
- > -->
- </div>
- <div class="addAreaForm">
- <Form :label-width="100" :model="areaItem" style="width: 60%">
- <FormItem label="区域编码:">
- {{ areaItem.num }}
- </FormItem>
- <FormItem label="区域名称:">
- {{ areaItem.title }}
- </FormItem>
- <FormItem label="单位:">
- {{ areaItem.unit }}
- </FormItem>
- <FormItem label="工程量:">
- {{ areaItem.quantity }}
- </FormItem>
- <FormItem label="户型:">
- {{ areaItem.house_type }}
- </FormItem>
- <FormItem
- v-for="item in areaItem.special"
- :key="item.id"
- :label="item.key + ':'"
- >
- {{ item.value }}
- </FormItem>
- <FormItem label="备注:">
- {{ areaItem.remark }}
- </FormItem>
- </Form>
- </div>
- <div class="addAreaTable">
- <Table
- v-show="areaItem.isCurrencyArea"
- :columns="tableColumns"
- @on-selection-change="handleSelection"
- :data="areaItem.product"
- max-height="600"
- border
- >
- <template slot="set" slot-scope="{ row, index }">
- <a
- :disabled="row.sub_state >= 1"
- @click="handleRowDeep(row, index)"
- >下深化</a
- >
- </template>
- </Table>
- </div>
- </div>
- <li v-show="false" v-for="item in formData.list" :key="item.id"></li>
- </TabPane>
- <TabPane
- label="列表形式"
- name="name2"
- style="overflow: hidden; overflow-y: auto"
- >
- <div class="top_search">
- <div class="top_search_content">
- <Form
- :model="searchData"
- :label-width="100"
- class="top_search_form"
- >
- <FormItem label="区域编码:">
- <Select
- filterable
- clearable
- v-model="searchData.area_no"
- size="small"
- style="width:120px"
- >
- <Option
- v-for="(_item, _index) in area_no_list"
- :key="_index"
- :label="_item"
- :value="_item"
- ></Option>
- </Select>
- <!-- <Input
- type="text"
- size="small"
- clearable
- v-model="searchData.area_no"
- placeholder="请输入区域编码"
- style="width: 120px"
- /> -->
- </FormItem>
- <FormItem label="区域名称:">
- <Select
- filterable
- clearable
- v-model="searchData.area_title"
- size="small"
- style="width:120px"
- >
- <Option
- v-for="(_item, _index) in area_title_list"
- :key="_index"
- :label="_item"
- :value="_item"
- ></Option>
- </Select>
- <!-- <Input
- type="text"
- size="small"
- clearable
- v-model="searchData.area_title"
- placeholder="请输入区域名称"
- style="width: 120px"
- /> -->
- </FormItem>
- <FormItem label="产品名称:">
- <Select
- filterable
- clearable
- v-model="searchData.product_title"
- size="small"
- style="width:120px"
- >
- <Option
- v-for="(_item, _index) in product_title_list"
- :key="_index"
- :label="_item"
- :value="_item"
- ></Option>
- </Select>
- <!-- <Input
- type="text"
- size="small"
- clearable
- v-model="searchData.product_title"
- placeholder="请输入产品名称"
- style="width: 120px"
- /> -->
- </FormItem>
- <FormItem label="图号:">
- <Select
- filterable
- clearable
- v-model="searchData.url_number"
- size="small"
- style="width:120px"
- >
- <Option
- v-for="(_item, _index) in url_number_list"
- :key="_index"
- :label="_item"
- :value="_item"
- ></Option>
- </Select>
- <!-- <Input
- type="text"
- size="small"
- clearable
- v-model="searchData.url_number"
- placeholder="请输入图号"
- style="width: 120px"
- /> -->
- </FormItem>
- <FormItem label="深化状态:">
- <Select
- clearable
- v-model="searchData.sub_state"
- size="small"
- style="width:120px"
- >
- <Option label="未下深化" :value="0"></Option>
- <Option label="深化中" :value="1"></Option>
- <Option label="深化完成" :value="2"></Option>
- </Select>
- </FormItem>
- <FormItem>
- <Button @click="getListData" type="primary" size="small"
- >搜索</Button
- >
- </FormItem>
- </Form>
- </div>
- <Form :model="formData" :label-width="100" class="top_search_form">
- <FormItem label="订单号:">
- {{ formData.order_no }}
- </FormItem>
- <FormItem label="项目名称:">
- {{ formData.residential_name }}
- </FormItem>
- <FormItem label="客户姓名:">
- {{ formData.client_name }}
- </FormItem>
- <FormItem label="紧急程度:">
- <span
- v-for="_item in warningList"
- :key="_item.id"
- v-show="_item.id == formData.warning_state"
- :style="{ color: _item.color }"
- >{{ _item.title }}
- </span>
- </FormItem>
- <FormItem label="项目定金:">
- {{ formData.front_money }}
- <!-- <RadioGroup v-model="formData.pay_state"
- size="small">
- <Radio :label=0
- :disabled="isChecked">未收款</Radio>
- <Radio :label=1
- :disabled="isChecked">已收款</Radio>
- </RadioGroup> -->
- </FormItem>
- <FormItem label="详细地址:">
- {{ formData.address }}
- </FormItem>
- <FormItem label="手机号:">
- {{ formData.mobile }}
- </FormItem>
- <FormItem label="开始日期:">
- {{
- formData.start_time
- ? func.replaceDateNoHMS(formData.start_time)
- : ""
- }}
- </FormItem>
- <FormItem label="结束日期:">
- {{
- formData.end_time
- ? func.replaceDateNoHMS(formData.end_time)
- : ""
- }}
- </FormItem>
- <FormItem label="业务员:">
- <span
- v-for="_item in salesmanList"
- :key="_item.id"
- v-show="_item.id == formData.salesman"
- :style="{ color: _item.color }"
- >{{ _item.nickname }}
- </span>
- </FormItem>
- <!-- <FormItem label="订单类型:">
- <Select v-model="formData.type"
- :disabled="isChecked"
- size="small"
- style="width:200px">
- <Option label='工装'
- :value=1></Option>
- <Option label='家装'
- :value=2></Option>
- </Select>
- </FormItem> -->
- <FormItem
- v-for="item in formData.special"
- :key="item.id"
- :label="item.key + ':'"
- >
- {{ item.value }}
- </FormItem>
- <FormItem label="备注:">
- {{ formData.remark }}
- </FormItem>
- </Form>
- </div>
- <div>
- <Table
- :columns="listTableColumns"
- :data="listTableData"
- @on-selection-change="handleSelection"
- :max-height="500"
- border
- >
- <template slot="set" slot-scope="{ row, index }">
- <a
- :disabled="row.sub_state >= 1"
- @click="handleRowDeep(row, index)"
- >下深化</a
- >
- </template>
- </Table>
- </div>
- <div ref="footercenter" class="footer-center">
- <Page
- transfer
- :total="total"
- :current.sync="page_index"
- :show-total="true"
- :page-size="page_size"
- :show-sizer="true"
- :show-elevator="true"
- @on-change="changePage"
- @on-page-size-change="changeSize"
- >
- </Page>
- </div>
- </TabPane>
- </Tabs>
- <!-- 项目辅料弹窗 -->
- <Modal title="项目辅料" v-model="showSupModal" :width="400">
- <div>
- <Table :columns="supTableColumns" :data="supTableData" border>
- <template slot="combine" slot-scope="{ index }">
- <!-- <Select
- v-model="supTableData[index].id"
- @on-change="handlechange"
- size="small"
- >
- <Option
- v-for="item in combineList"
- :value="item.id"
- :key="item.id"
- :label="item.title"
- ></Option>
- </Select> -->
- <span
- v-for="_item in combineList"
- :key="_item.id"
- v-show="_item.id == supTableData[index].id"
- >
- {{ _item.title }}
- </span>
- </template>
- <template slot="supSet" slot-scope="{ row, index }">
- <a
- style="margin: 0 5px; color: red"
- v-show="$route.query.type != 3"
- @click="handleSupSet(row, index)"
- >删除</a
- >
- </template>
- </Table>
- </div>
- <div class="modal-footer" slot="footer">
- <Button @click="showSupModal = false">取消</Button>
- <Button type="primary" @click="showSupModal = false">确认</Button>
- </div>
- </Modal>
- <!-- 编辑产品弹窗 -->
- <Modal
- title="编辑产品"
- v-model="showPDTEditModal"
- :mask-closable="false"
- class="addPDTFormModal"
- :width="1000"
- >
- <div class="modal-footer" slot="footer"></div>
- </Modal>
- <!-- 特殊字段弹窗 -->
- <Modal
- title="特殊字段"
- v-model="showAddInputModal"
- :mask-closable="false"
- class="addInputClassModal"
- :width="600"
- >
- <div class="addInputClass">
- <Tabs value="name1">
- <TabPane label="订单特殊字段" name="name1">
- <div style="display: flex; justify-content: center">
- <span
- class="dele_icon"
- @click="handleSpecValueAdd('', 1)"
- style="text-align: center; width: 50px"
- >添加
- </span>
- </div>
- <div class="addInputClassTab">
- <div v-for="(item, index) in contactSpecValueList" :key="index">
- <span>特殊字段名:</span>
- <Input
- type="text"
- size="small"
- v-model="item.key"
- placeholder="请输入"
- style="width: 120px"
- />
- <span class="dele_icon" style="margin-right: 5px">
- <Icon type="md-add" @click="handleSpecValueAdd(item, 1)" />
- </span>
- <span class="dele_icon">
- <Icon
- type="md-remove"
- @click="handleSpecValueDele(index, 1)"
- />
- </span>
- </div>
- </div>
- </TabPane>
- <TabPane label="区域特殊字段" name="name2">
- <div style="display: flex; justify-content: center">
- <span
- class="dele_icon"
- @click="handleSpecValueAdd('', 2)"
- style="text-align: center; width: 50px"
- >添加
- </span>
- </div>
- <div class="addInputClassTab">
- <div v-for="(item, index) in areaSpecValueList" :key="index">
- <span>特殊字段名:</span>
- <Input
- type="text"
- size="small"
- v-model="item.key"
- placeholder="请输入"
- style="width: 120px"
- />
- <span class="dele_icon" style="margin-right: 5px">
- <Icon type="md-add" @click="handleSpecValueAdd(item, 2)" />
- </span>
- <span class="dele_icon">
- <Icon
- type="md-remove"
- @click="handleSpecValueDele(index, 2)"
- />
- </span>
- </div>
- </div>
- </TabPane>
- <TabPane label="产品特殊字段" name="name3">
- <div style="display: flex; justify-content: center">
- <span
- class="dele_icon"
- @click="handleSpecValueAdd('', 3)"
- style="text-align: center; width: 50px"
- >添加
- </span>
- </div>
- <div class="addInputClassTab">
- <div v-for="(item, index) in productSpecValueList" :key="index">
- <span>特殊字段名:</span>
- <Input
- type="text"
- size="small"
- v-model="item.key"
- placeholder="请输入"
- style="width: 120px"
- />
- <span class="dele_icon" style="margin-right: 5px">
- <Icon type="md-add" @click="handleSpecValueAdd(item, 3)" />
- </span>
- <span class="dele_icon">
- <Icon
- type="md-remove"
- @click="handleSpecValueDele(index, 3)"
- />
- </span>
- </div>
- </div>
- </TabPane>
- </Tabs>
- <!-- <Form :label-width="100">
- <FormItem label="请输入字段名:">
- <Input type="text"
- size="small"
- v-model="addInputName"
- placeholder="请输入"
- style="width: 200px" />
- </FormItem>
- </Form> -->
- </div>
- <div class="modal-footer" slot="footer">
- <Button @click="showAddInputModal = false">取消</Button>
- <Button type="primary" @click="handleAddInputConfirm">确认</Button>
- </div>
- </Modal>
- <!-- 批量下深化 -->
- <Modal v-model="processModal" title="下深化">
- <div>
- <div class="process_modal">
- <span>深化人员:</span>
- <Select v-model="process_man" style="width: 150px">
- <Option
- v-for="item in processManList"
- :key="item.id"
- :label="item.nickname"
- :value="item.id"
- ></Option>
- </Select>
- </div>
- <div class="process_modal">
- <span>选择时间:</span>
- <DatePicker
- type="date"
- v-model="process_start_time"
- placeholder="年/月/日"
- style="width: 150px"
- ></DatePicker>
- 至
- <DatePicker
- type="date"
- v-model="process_end_time"
- placeholder="年/月/日"
- style="width: 150px"
- ></DatePicker>
- </div>
- </div>
- <div slot="footer">
- <Button @click="processModal = false">取消</Button>
- <Button type="primary" @click="handleProcess">确认</Button>
- </div>
- </Modal>
- <!-- 表单设置 -->
- <!-- <Modal
- v-model="showForms"
- @on-ok="postForms(1)"
- class-name="vertical-center-modal"
- style="max-height: 700px; overflow: hidden; overflow-y: auto"
- title="表单设置"
- >
- <Table
- :max-height="600"
- border
- :columns="formSetTableColumns"
- :data="post_formSetTableData"
- >
- </Table>
- </Modal> -->
- </div>
- </template>
- <script>
- // 这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
- // 例如:import 《组件名称》 from '《组件路径》';
- export default {
- name: "BidSystemContractInfo",
- components: {},
- props: {},
- // import引入的组件需要注入到对象中才能使用
- data() {
- // 这里存放数据
- return {
- showSupModal: false,
- showPDTEditModal: false,
- options: {
- disabledDate(date) {
- return date && date.valueOf() < Date.now() - 86400000;
- },
- },
- formData: {
- order_no: "",
- residential_name: "",
- client_name: "",
- address: "",
- mobile: "",
- pay_state: "",
- warning_state: "",
- salesman: "",
- remark: "",
- start_time: "",
- end_time: "",
- type: "",
- special: [],
- head: [],
- //区域列表
- list: [
- {
- areaIndex: null,
- num: "",
- title: "",
- unit: "",
- quantity: "",
- house_type: "",
- remark: "",
- order_no: "",
- product: [],
- },
- ],
- },
- tableColumns: [
- { type: "selection", align: "center", minWidth: 100 },
- { title: "序号", key: "index", align: "center", minWidth: 80 },
- {
- title: "产品名称",
- key: "title",
- align: "center",
- tooltip: true,
- minWidth: 100,
- },
- { title: "数量", key: "num", align: "center", minWidth: 80 },
- { title: "价格", key: "price", align: "center", minWidth: 80 },
- {
- title: "规格",
- key: "measure",
- align: "center",
- tooltip: true,
- minWidth: 140,
- },
- {
- title: "工艺属性",
- key: "process_property",
- align: "center",
- tooltip: true,
- minWidth: 120,
- },
- {
- title: "图纸",
- align: "center",
- key: "url",
- minWidth: 100,
- render: (h, params) => {
- const { row } = params;
- let url = row.url ? row.url : [];
- return h("img", {
- attrs: {
- src: this.$store.state.ip + url[0],
- style:
- "max-width:50px;max-height:50px;position:relative;top:3px;",
- },
- on: {
- click: (e) => {
- // this.axios('/api/orders_img', { params: { id: row.id, type: 1 } }).then(res => {
- // row.imgs = res.data
- let list = [];
- row.url.forEach((el) => {
- list.push({ img_url: el });
- });
- this.$previewImg({
- list,
- baseUrl: this.$store.state.ip,
- baseImgField: "img_url",
- baseTitleField: "",
- });
- // })
- },
- },
- });
- },
- },
- {
- title: "左右式",
- key: "left_right_mode",
- align: "center",
- tooltip: true,
- minWidth: 80,
- render: (h, params) => {
- return h(
- "span",
- {},
- params.row.left_right_mode == 1
- ? "左式"
- : params.row.left_right_mode == 2
- ? "右式"
- : ""
- );
- },
- },
- {
- title: "图号",
- key: "url_number",
- align: "center",
- tooltip: true,
- minWidth: 80,
- },
- { title: "备注", key: "remark", align: "center", minWidth: 80 },
- {
- title: "是否下深化",
- key: "sub_state",
- align: "center",
- minWidth: 80,
- render: (h, params) => {
- return h("span", {}, params.row.sub_state >= 1 ? "是" : "否");
- },
- },
- {
- title: "操作",
- key: "set",
- align: "center",
- minWidth: 100,
- slot: "set",
- },
- ],
- supTableColumns: [
- { title: "序号", type: "index", align: "center", minWidth: 100 },
- {
- title: "辅料名称",
- key: "title",
- align: "center",
- slot: "combine",
- minWidth: 150,
- },
- {
- title: "操作",
- key: "set",
- align: "center",
- slot: "supSet",
- minWidth: 100,
- },
- ],
- listTableColumns: [
- { type: "selection", align: "center", minWidth: 100 },
- { title: "区域编码", key: "area_num", align: "center", minWidth: 100 },
- {
- title: "区域名称",
- key: "area_title",
- align: "center",
- minWidth: 100,
- },
- { title: "单位", key: "area_unit", align: "center", minWidth: 100 },
- {
- title: "工程量",
- key: "area_quantity",
- align: "center",
- minWidth: 100,
- },
- { title: "户型", key: "house_type", align: "center", minWidth: 100 },
- { title: "备注", key: "area_remark", align: "center", minWidth: 100 },
- { title: "产品名称", key: "title", align: "center", minWidth: 100 },
- { title: "数量", key: "num", align: "center", minWidth: 100 },
- { title: "价格", key: "price", align: "center", minWidth: 100 },
- { title: "规格", key: "measure", align: "center", minWidth: 100 },
- {
- title: "工艺属性",
- key: "process_property",
- align: "center",
- minWidth: 100,
- },
- {
- title: "图纸",
- key: "url",
- align: "center",
- minWidth: 100,
- render: (h, params) => {
- const { row } = params;
- let url = row.url ? row.url : [];
- return h("img", {
- attrs: {
- src: url.length > 0 ? this.$store.state.ip + url[0] : "",
- style:
- "max-width:50px;max-height:50px;position:relative;top:3px;",
- },
- on: {
- click: () => {
- // this.axios('/api/orders_img', { params: { id: row.id, type: 1 } }).then(res => {
- // row.imgs = res.data
- let list = [];
- row.url.forEach((el) => {
- list.push({ img_url: el });
- });
- console.log("row.url :>> ", row.url);
- this.$previewImg({
- list,
- baseUrl: this.$store.state.ip,
- baseImgField: "img_url",
- baseTitleField: "",
- });
- // })
- },
- },
- });
- },
- },
- {
- title: "左右式",
- key: "left_right_mode",
- align: "center",
- minWidth: 100,
- },
- { title: "图号", key: "url_number", align: "center", minWidth: 100 },
- { title: "备注", key: "remark", align: "center", minWidth: 100 },
- { title: "备注", key: "remark", align: "center", minWidth: 100 },
- {
- title: "深化状态",
- key: "sub_state",
- align: "center",
- minWidth: 100,
- render: (h, params) => {
- return h(
- "span",
- {},
- params.row.sub_state == 0
- ? "未下深化"
- : params.row.sub_state == 1
- ? "深化中"
- : "深化完成"
- );
- },
- },
- {
- title: "操作",
- key: "set",
- align: "center",
- minWidth: 100,
- slot: "set",
- },
- ],
- listTableData: [],
- supTableData: [],
- PDTTypeList: [], //产品分类列表
- PDTEditTypeList: [],
- combineList: [], //项目辅料→辅料名称列表
- salesmanList: [], //业务员列表
- //是否查看
- isChecked: false,
- PDTProcessAttrList: [],
- // 测量字段列表
- measureList: [],
- contactForm: [],
- addInputTitle: "",
- showAddInputModal: false,
- addInputName: "",
- contactSpecValueList: [],
- areaSpecValueList: [],
- productSpecValueList: [],
- warningList: [],
- currencyTab: "",
- processModal: false,
- processManList: [],
- process_man: "",
- process_start_time: "",
- process_end_time: "",
- selected: [],
- page_index: 1,
- page_size: 10,
- total: 0,
- searchData: {},
- showForms: false,
- formSetTableColumns: [
- {
- title: "是否展示",
- align: "center",
- key: "is_show",
- minWidth: 60,
- render: (h, params) => {
- const { index } = params;
- const currentRow = JSON.parse(
- JSON.stringify(this.post_formSetTableData[index])
- );
- return h("Checkbox", {
- props: {
- value: currentRow.is_show,
- disabled:
- currentRow.key == "order_no" ||
- currentRow.key == "residential_name" ||
- currentRow.key == "warning_state" ||
- currentRow.key == "start_time" ||
- currentRow.key == "end_time" ||
- currentRow.key == "client_name" ||
- currentRow.key == "predict_price" ||
- currentRow.key == "box_id" ||
- currentRow.key == "predict_price" ||
- currentRow.key == "order_price" ||
- currentRow.key == "fax_price" ||
- currentRow.key == "remark",
- },
- on: {
- "on-change": (e) => {
- currentRow.is_show = e;
- this.post_formSetTableData.splice(index, 1, currentRow);
- },
- },
- });
- },
- },
- {
- title: "字段名",
- align: "center",
- key: "value",
- minWidth: 100,
- },
- {
- title: "展示名称",
- align: "center",
- key: "title",
- minWidth: 100,
- render: (h, params) => {
- const { index } = params;
- const currentRow = JSON.parse(
- JSON.stringify(this.post_formSetTableData[index])
- );
- return h("Input", {
- props: {
- value: currentRow.title,
- type: "text",
- },
- on: {
- "on-change": (e) => {
- currentRow.title = e.target.value;
- this.post_formSetTableData.splice(index, 1, currentRow);
- },
- },
- });
- },
- },
- ],
- post_formSetTableData: [],
- formSetTableData: [
- {
- is_show: true,
- key: "order_no",
- value: "订单编号",
- title: "订单编号",
- },
- {
- is_show: true,
- key: "residential_name",
- value: "项目名称",
- title: "项目名称",
- },
- {
- is_show: true,
- key: "warning_state",
- value: "紧急程度",
- title: "紧急程度",
- },
- {
- is_show: true,
- key: "front_money",
- value: "项目定金",
- title: "项目定金",
- },
- {
- is_show: true,
- key: "start_time",
- value: "开始日期",
- title: "开始日期",
- },
- {
- is_show: true,
- key: "client_name",
- value: "客户名称",
- title: "客户名称",
- },
- {
- is_show: true,
- key: "custom_detail_name",
- value: "负责人",
- title: "负责人",
- },
- {
- is_show: true,
- key: "custom_detail_mobile",
- value: "手机号",
- title: "手机号",
- },
- {
- is_show: true,
- key: "custom_detail_id",
- value: "详细地址",
- title: "详细地址",
- },
- {
- is_show: true,
- key: "service_id",
- value: "专营业务员",
- title: "专营业务员",
- },
- {
- is_show: true,
- key: "end_time",
- value: "交付日期",
- title: "交付日期",
- },
- {
- is_show: true,
- key: "predict_price",
- value: "产品总价",
- title: "产品总价",
- },
- {
- is_show: true,
- key: "order_price",
- value: "订单金额",
- title: "订单金额",
- },
- {
- is_show: true,
- key: "fax_price",
- value: "折扣金额",
- title: "折扣金额",
- },
- { is_show: true, key: "box_id", value: "包装", title: "包装" },
- { is_show: true, key: "remark", value: "订单备注", title: "订单备注" },
- ],
- area_no_list: [],
- area_title_list: [],
- product_title_list: [],
- url_number_list: [],
- is_area_deep: false,
- order_area_id: null,
- };
- },
- // 生命周期 - 创建完成(可以访问当前this实例)
- created() {
- //2编辑 3详情 0新增
- this.$route.query.type == 3 ? (this.isChecked = true) : "";
- this.$route.query.order_no
- ? (this.formData.order_no = this.$route.query.order_no)
- : "";
- // 获取表单设置列表
- this.get_forms();
- // 获取工艺属性
- this.axios("/api/basics_properties_index").then((res) => {
- this.PDTProcessAttrList = res.data.data;
- });
- // 获取紧急程度
- this.axios.get("/api/warning_list").then((res) => {
- this.warningList = res.data.data;
- });
- },
- // 生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- this.$route.query.type == 3 || this.$route.query.type == 2
- ? this.initData(this.$route.query.order_no)
- : "";
- //获取操作员
- this.axios("/api/user").then(
- (res) => (
- (this.salesmanList = res.data.data),
- (this.processManList = res.data.data)
- )
- );
- //获取产品分类下拉列表
- this.axios("/api/parts_product_list").then((res) => {
- this.PDTTypeList = res.data;
- this.PDTTypeList.forEach((el) => {
- el.value = el.id;
- el.label = el.title;
- });
- this.PDTEditTypeList = this.PDTTypeList;
- });
- //获取基础测量字段列表
- this.axios("/api/basics_measure_index").then((res) => {
- this.measureList = res.data.data;
- });
- // 获取项目辅料列表
- this.axios("/api/material_combination").then((res) => {
- this.combineList = res.data.data;
- });
- },
- methods: {
- get_forms() {
- this.axios
- .post("/api/update/get_table", { id: "ContractList_info" })
- .then((res) => {
- if (Array.isArray(res.data)) {
- this.post_formSetTableData = JSON.parse(
- JSON.stringify(this.formSetTableData)
- );
- } else {
- if (res.data.table.formSet && res.data.table.formSet.length > 0) {
- this.formSetTableData = JSON.parse(
- JSON.stringify(res.data.table.formSet)
- );
- this.post_formSetTableData = JSON.parse(
- JSON.stringify(res.data.table.formSet)
- );
- } else {
- this.post_formSetTableData = JSON.parse(
- JSON.stringify(this.formSetTableData)
- );
- }
- }
- });
- },
- handlechange(val) {
- console.log("val :>> ", val);
- },
- initData(order_no) {
- this.axios({
- method: "get",
- url: "/api/order_area_list",
- params: {
- order_no,
- oa_id: this.$route.query.oa_id || "",
- type: 1,
- },
- }).then((res) => {
- if (res.code == 200) {
- this.formData = res.data;
- this.supTableData = res.data.ext;
- if (this.formData.list.length == 0) {
- this.formData.list.push({
- areaIndex: 1,
- num: "",
- title: "",
- unit: "",
- quantity: "",
- house_type: "",
- remark: "",
- order_no: "",
- special: [],
- head: [],
- product: [
- {
- title: "",
- num: "",
- measure: "",
- process_property: "",
- special: [],
- url: [],
- url_number: "",
- remark: "",
- },
- ],
- });
- }
- this.formData.start_time = this.func.replaceDateNoHMS(
- this.formData.start_time
- );
- this.formData.end_time = this.func.replaceDateNoHMS(
- this.formData.end_time
- );
- // 产品特殊字段→ 弹窗窗口,table表头
- let arr = [];
- res.data.head[3] &&
- res.data.head[3].forEach((item) => {
- // ele[key] = item.key
- arr.push({
- title: item.key,
- key: item.key,
- align: "center",
- minWidth: 80,
- });
- });
- this.tableColumns = [
- { type: "selection", align: "center", minWidth: 100 },
- { title: "序号", key: "index", align: "center", minWidth: 80 },
- {
- title: "产品名称",
- key: "title",
- align: "center",
- tooltip: true,
- minWidth: 100,
- },
- { title: "数量", key: "num", align: "center", minWidth: 80 },
- { title: "价格", key: "price", align: "center", minWidth: 80 },
- {
- title: "规格",
- key: "measure",
- align: "center",
- tooltip: true,
- minWidth: 140,
- },
- {
- title: "工艺属性",
- key: "process_property",
- align: "center",
- tooltip: true,
- minWidth: 120,
- },
- {
- title: "图纸",
- align: "center",
- key: "url",
- minWidth: 100,
- render: (h, params) => {
- const { row } = params;
- let url = row.url ? row.url : [];
- return h("img", {
- attrs: {
- src: this.$store.state.ip + url[0],
- style:
- "max-width:50px;max-height:50px;position:relative;top:3px;",
- },
- on: {
- click: (e) => {
- // this.axios('/api/orders_img', { params: { id: row.id, type: 1 } }).then(res => {
- // row.imgs = res.data
- let list = [];
- row.url.forEach((el) => {
- list.push({ img_url: el });
- });
- this.$previewImg({
- list,
- baseUrl: this.$store.state.ip,
- baseImgField: "img_url",
- baseTitleField: "",
- });
- // })
- },
- },
- });
- },
- },
- {
- title: "左右式",
- key: "left_right_mode",
- align: "center",
- tooltip: true,
- minWidth: 80,
- render: (h, params) => {
- return h(
- "span",
- {},
- params.row.left_right_mode == 1
- ? "左式"
- : params.row.left_right_mode == 2
- ? "右式"
- : ""
- );
- },
- },
- {
- title: "图号",
- key: "url_number",
- align: "center",
- tooltip: true,
- minWidth: 80,
- },
- ...arr,
- { title: "备注", key: "remark", align: "center", minWidth: 80 },
- {
- title: "是否下深化",
- key: "sub_state",
- align: "center",
- minWidth: 80,
- render: (h, params) => {
- return h("span", {}, params.row.sub_state >= 1 ? "是" : "否");
- },
- },
- {
- title: "操作",
- key: "set",
- align: "center",
- minWidth: 100,
- slot: "set",
- },
- ];
- // 订单特殊字段
- this.formData.special &&
- this.formData.special.forEach((element) => {
- this.formData.head[1].forEach((item) => {
- if (element.head_id == item.id) {
- element = Object.assign(element, item);
- this.contactSpecValueList.push(element);
- }
- });
- });
- this.contactForm = this.formData.head[1] ? this.formData.head[1] : [];
- // 区域特殊字段
- this.formData.list.forEach((element, index) => {
- element.special &&
- element.special.forEach((ele) => {
- this.formData.head[2].forEach((item) => {
- if (ele.head_id == item.id) {
- ele = Object.assign(ele, item);
- this.areaSpecValueList.push(ele);
- }
- });
- });
- // if (index == 0) {
- // element.isCurrencyArea = true;
- // //编辑进入页面是展示第一条区域的产品
- // element.id &&
- // this.axios
- // .get("/api/order_area_list_product", {
- // params: {
- // order_no: this.$route.query.order_no,
- // area_id: element.id,type:1
- // },
- // })
- // .then((res) => {
- // if (res.code == 200) {
- // if (!element.product) {
- // element.product = [];
- // }
- // element.product = res.data;
- // element.product.forEach((pdt, index) => {
- // if (!pdt.url) {
- // pdt.url = [];
- // }
- // pdt.index = index + 1;
- // pdt.special &&
- // pdt.special.length > 0 &&
- // pdt.special.forEach((_pdt) => {
- // this.formData.head[3].forEach((element) => {
- // if (_pdt.head_id == element.id) {
- // _pdt = Object.assign(_pdt, element);
- // pdt[_pdt.key] = _pdt.value;
- // this.productSpecValueList.push(_pdt);
- // }
- // });
- // });
- // });
- // this.$forceUpdate();
- // }
- // });
- // } else {
- // element.isCurrencyArea = false;
- // }
- });
- this.areaSpecValueList = this.formData.head[2]
- ? this.formData.head[2]
- : [];
- this.productSpecValueList = this.formData.head[3]
- ? this.formData.head[3]
- : [];
- }
- });
- },
- //项目辅料删除
- handleSupSet(row, index) {
- this.supTableData.splice(index, 1);
- // this.supTableData.forEach((element, index) => {
- // element.index = index + 1
- // });
- },
- goback() {
- this.$router.go(-1);
- },
- looks(img) {
- const array = [{ img_url: img }];
- this.$previewImg({
- list: array,
- baseUrl: this.$store.state.ip,
- baseImgField: "img_url",
- baseTitleField: "",
- });
- },
- delItems(n, arr) {
- arr.splice(n, 1);
- },
- changeIpt(e, row) {
- let file = e.target.files[0];
- this.postImg(file, row);
- e.target.value = null;
- },
- postImg(file, row) {
- let formData = new FormData();
- formData.append("file", file);
- this.axios.post("/api/upload_pic", formData).then((res) => {
- this.$nextTick(() => {
- row.push(res.data.url);
- this.$forceUpdate();
- });
- });
- },
- // 添加特殊字段
- handleAddInputConfirm() {
- this.formData.special = JSON.parse(
- JSON.stringify(this.contactSpecValueList)
- );
- this.formData.list.forEach((element) => {
- element.special = JSON.parse(JSON.stringify(this.areaSpecValueList));
- element.product.forEach((ele) => {
- ele.special = JSON.parse(JSON.stringify(this.productSpecValueList));
- });
- });
- let arr = [];
- this.productSpecValueList.forEach((element) => {
- arr.push({
- title: element.key,
- key: element.key,
- align: "center",
- minWidth: 80,
- });
- });
- this.tableColumns = [
- { type: "selection", align: "center", minWidth: 100 },
- { title: "序号", key: "index", align: "center", minWidth: 80 },
- {
- title: "产品名称",
- key: "title",
- align: "center",
- tooltip: true,
- minWidth: 100,
- },
- { title: "数量", key: "num", align: "center", minWidth: 80 },
- { title: "价格", key: "price", align: "center", minWidth: 80 },
- {
- title: "规格",
- key: "measure",
- align: "center",
- tooltip: true,
- minWidth: 140,
- },
- {
- title: "工艺属性",
- key: "process_property",
- align: "center",
- tooltip: true,
- minWidth: 120,
- },
- {
- title: "图纸",
- align: "center",
- key: "url",
- minWidth: 100,
- render: (h, params) => {
- const { row } = params;
- let url = row.url ? row.url : [];
- return h("img", {
- attrs: {
- src: this.$store.state.ip + url[0],
- style:
- "max-width:50px;max-height:50px;position:relative;top:3px;",
- },
- on: {
- click: (e) => {
- // this.axios('/api/orders_img', { params: { id: row.id, type: 1 } }).then(res => {
- // row.imgs = res.data
- let list = [];
- row.url.forEach((el) => {
- list.push({ img_url: el });
- });
- this.$previewImg({
- list,
- baseUrl: this.$store.state.ip,
- baseImgField: "img_url",
- baseTitleField: "",
- });
- // })
- },
- },
- });
- },
- },
- {
- title: "左右式",
- key: "left_right_mode",
- align: "center",
- tooltip: true,
- minWidth: 80,
- render: (h, params) => {
- return h(
- "span",
- {},
- params.row.left_right_mode == 1
- ? "左式"
- : params.row.left_right_mode == 2
- ? "右式"
- : ""
- );
- },
- },
- {
- title: "图号",
- key: "url_number",
- align: "center",
- tooltip: true,
- minWidth: 80,
- },
- ...arr,
- { title: "备注", key: "remark", align: "center", minWidth: 80 },
- {
- title: "是否下深化",
- key: "sub_state",
- align: "center",
- minWidth: 80,
- render: (h, params) => {
- return h("span", {}, params.row.sub_state >= 1 ? "是" : "否");
- },
- },
- {
- title: "操作",
- key: "set",
- align: "center",
- minWidth: 100,
- slot: "set",
- },
- ];
- this.showAddInputModal = false;
- },
- // 添加特殊字段
- handleSpecValueAdd(item, type) {
- switch (type) {
- case 1:
- this.contactSpecValueList.push({ key: "", value: "" });
- break;
- case 2:
- this.areaSpecValueList.push({ key: "", value: "" });
- break;
- case 3:
- this.productSpecValueList.push({ key: "", value: "" });
- break;
- }
- },
- // 删除特殊字段
- handleSpecValueDele(index, type) {
- switch (type) {
- case 1:
- this.contactSpecValueList.splice(index, 1);
- break;
- case 2:
- this.areaSpecValueList.splice(index, 1);
- break;
- case 3:
- this.productSpecValueList.splice(index, 1);
- break;
- }
- },
- getListData() {
- this.axios
- .get("/api/order_area_detail_list?", {
- params: {
- order_no: this.$route.query.order_no,
- oa_id: this.$route.query.oa_id || "",
- ...this.searchData,
- type: 1,
- },
- })
- .then((res) => {
- console.log(res)
- this.listTableData = res.data.data;
- this.area_no_list = res.data.area_no;
- this.area_title_list = res.data.area_title;
- this.product_title_list = res.data.product_title;
- this.url_number_list = res.data.url_number;
- this.listTableData.map((item) => {
- !item.url && (item.url = []);
- res.data.imgs.map((element) => {
- if (item.sign_id == element.sign_id) {
- item.url.push({ img_url: element.img_url });
- }
- });
- });
- this.total = res.data.total;
- this.$forceUpdate();
- });
- },
- handleCurTabChange(name) {
- this.currencyTab = name;
- if (name == "name2" && this.listTableData.length < 1) {
- this.getListData();
- }
- },
- handleSelection(selection) {
- this.selected = selection;
- },
- handleOpenModal(order_area_id) {
- if (typeof order_area_id == "number") {
- this.is_area_deep = true;
- this.order_area_id = order_area_id;
- this.processModal = true;
- } else {
- this.is_area_deep = false;
- this.order_area_id = null;
- if (this.selected.length < 1) {
- this.$Message.warning("请选择数据");
- } else {
- this.processModal = true;
- }
- }
- },
- handleRowDeep(row) {
- (this.selected = [row]), (this.processModal = true);
- },
- handleProcess() {
- if (this.process_man) {
- if (this.is_area_deep) {
- this.axios
- .get("/api/order_area_deep_pull", {
- params: {
- order_no: this.order_no,
- type: 1,
- sub_state: 1,
- order_area_id: this.order_area_id,
- process_man: this.process_man,
- process_start_time: this.process_start_time
- ? this.func.replaceDateNoHMS(this.process_start_time)
- : "",
- process_end_time: this.process_end_time
- ? this.func.replaceDateNoHMS(this.process_end_time)
- : "",
- },
- })
- .then((res) => {
- if (res.code == 200) {
- this.$Message.success(res.msg);
- this.processModal = false;
- this.getListData();
- this.initData(this.$route.query.order_no);
- }
- });
- } else {
- let flag = true;
- this.selected.map((item) => {
- if (item.sub_state > 1) {
- flag = false;
- }
- });
- if (!flag) {
- this.$Message.warning("选择数据中存在已下深化产品,请重新选择");
- } else {
- const order_area_product_id = this.selected.map(
- (item) => item.order_area_product_id || item.id
- );
- this.axios({
- method: "get",
- url: "/api/order_area_detail_pull",
- params: {
- order_no: this.order_no,
- type: 1,
- sub_state: 1,
- order_area_product_id,
- process_man: this.process_man,
- process_start_time: this.process_start_time
- ? this.func.replaceDateNoHMS(this.process_start_time)
- : "",
- process_end_time: this.process_end_time
- ? this.func.replaceDateNoHMS(this.process_end_time)
- : "",
- },
- }).then((res) => {
- if (res.code == 200) {
- this.$Message.success(res.msg);
- this.selected = [];
- this.processModal = false;
- this.getListData();
- this.initData(this.$route.query.order_no);
- }
- });
- }
- }
- } else {
- this.$Message.warning("请选择人员");
- }
- },
- changePage(e) {
- this.page_index = e;
- this.getListData();
- },
- changeSize(e) {
- this.page_size = e;
- this.getListData();
- },
- handleHiddenCurrencyArea(item, index) {
- item.isCurrencyArea = false;
- this.$forceUpdate();
- },
- // 展示区域产品
- handleShowCurrencyArea(item, index) {
- const preObj = this.formData.list.filter((item) => item.isCurrencyArea);
- if (preObj.length > 0) {
- // 1.1移除上一个展开区域及产品
- this.formData.list.forEach((element) => {
- element.product = [];
- if (element.id == preObj[0].id) {
- element.isCurrencyArea = false;
- }
- });
- // 2.获取当前展开区域及产品
- item.isCurrencyArea = true;
- this.axios
- .get("/api/order_area_list_product", {
- params: {
- order_no: this.$route.query.order_no,
- oa_id: this.$route.query.oa_id || "",
- area_id: item.id,
- type: 1,
- },
- })
- .then((res) => {
- if (res.code == 200) {
- if (!item.product) {
- item.product = [];
- }
- item.product = res.data;
- let flag = true;
- item.product.forEach((pdt, index) => {
- pdt.index = index + 1;
- pdt.special &&
- pdt.special.length > 0 &&
- pdt.special.forEach((element) => {
- this.formData.head[3].forEach((item) => {
- if (element.head_id == item.id) {
- element = Object.assign(element, item);
- pdt[element.key] = element.value;
- this.productSpecValueList.push(element);
- }
- });
- });
- // 是否已全部下深化
- if (pdt.sub_state != 1) {
- flag = false;
- }
- });
- item.isAllDeeped = flag;
- this.$forceUpdate();
- }
- });
- } else {
- // 2.获取当前展开区域及产品
- item.isCurrencyArea = true;
- this.axios
- .get("/api/order_area_list_product", {
- params: {
- order_no: this.$route.query.order_no,
- oa_id: this.$route.query.oa_id || "",
- area_id: item.id,
- type: 1,
- },
- })
- .then((res) => {
- if (res.code == 200) {
- if (!item.product) {
- item.product = [];
- }
- item.product = res.data;
- let flag = true;
- item.product.forEach((pdt, index) => {
- pdt.index = index + 1;
- pdt.special &&
- pdt.special.length > 0 &&
- pdt.special.forEach((element) => {
- this.formData.head[3].forEach((item) => {
- if (element.head_id == item.id) {
- element = Object.assign(element, item);
- pdt[element.key] = element.value;
- this.productSpecValueList.push(element);
- }
- });
- });
- // 是否已全部下深化
- if (pdt.sub_state != 1) {
- flag = false;
- }
- });
- item.isAllDeeped = flag;
- this.$forceUpdate();
- }
- });
- }
- },
- },
- // 监听属性 类似于data概念
- computed: {},
- // 监控data中的数据变化
- watch: {},
- beforeCreate() {}, // 生命周期 - 创建之前
- beforeMount() {}, // 生命周期 - 挂载之前
- beforeUpdate() {}, // 生命周期 - 更新之前
- updated() {}, // 生命周期 - 更新之后
- beforeDestroy() {}, // 生命周期 - 销毁之前
- destroyed() {}, // 生命周期 - 销毁完成
- activated() {}, // 如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style lang="scss" scoped>
- .BidSystemContractInfo {
- overflow: hidden;
- overflow-y: auto;
- position: relative;
- top: 20px;
- height: 85%;
- padding-bottom: 20px;
- }
- .footer-center {
- display: flex;
- justify-content: center;
- padding: 10px 0;
- }
- .top_search {
- padding: 20px 0;
- width: 100%;
- .top_search_form {
- // width: 800px;
- // display: flex;
- // justify-content: space-around;
- /deep/ .ivu-form-item {
- display: inline-block;
- width: 300px;
- }
- }
- }
- .addArea {
- position: relative;
- padding: 15px;
- margin: 5px;
- margin-bottom: 30px;
- border-radius: 5px;
- box-shadow: 1px 1px 5px 1px #999;
- .addAreaBtn {
- position: absolute;
- right: 20px;
- top: 20px;
- }
- /deep/ .ivu-form-item {
- display: inline-block;
- width: 220px;
- }
- }
- .addPDTFormModal {
- .addPDTForm {
- width: 100%;
- position: relative;
- border-bottom: 1px solid #e8eaec;
- margin-bottom: 30px;
- /deep/ .ivu-form-item {
- display: inline-block;
- width: 300px;
- }
- .addPDTBtn {
- position: absolute;
- right: 10px;
- bottom: 25px;
- }
- }
- /deep/ .ivu-modal-body {
- // display: flex;
- // justify-content: center;
- // flex-wrap: wrap;
- max-height: 700px;
- overflow: hidden;
- overflow-y: auto;
- }
- }
- .addPDTProcess {
- width: 300px;
- padding-bottom: 15px;
- div {
- display: flex;
- justify-content: space-around;
- padding: 5px 0;
- span {
- padding-top: 6px;
- }
- }
- .dele_icon {
- width: 10px;
- /deep/ .ivu-icon {
- padding-top: 5px;
- }
- }
- }
- .product-img {
- padding-top: 10px;
- }
- .product-add {
- display: flex;
- flex-wrap: wrap;
- .ipt {
- position: absolute;
- width: 100%;
- height: 100%;
- opacity: 0;
- cursor: pointer;
- outline: none;
- top: 0;
- left: 0;
- }
- .add-items {
- width: 40px;
- height: 40px;
- border: 1px dotted #e7e7e7;
- border-radius: 5px;
- display: flex;
- justify-content: center;
- align-items: center;
- overflow: hidden;
- position: relative;
- flex-direction: column;
- background: #f4f5f7;
- .item {
- width: 46px;
- height: 46px;
- background: #3764ff;
- opacity: 0.6;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 50%;
- color: #fff;
- }
- }
- .items {
- width: 40px;
- height: 40px;
- margin-bottom: 10px;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #e7e7e7;
- margin-right: 10px;
- border-radius: 5px;
- position: relative;
- img {
- max-width: 40px;
- max-height: 40px;
- }
- }
- }
- .supModalBtn {
- display: flex;
- justify-content: flex-end;
- margin-bottom: 10px;
- }
- /deep/.ivu-modal-body {
- // display: flex;
- // justify-content: center;
- .addInputClass {
- display: flex;
- justify-content: center;
- width: 500px;
- .dele_icon {
- cursor: pointer;
- width: 10px;
- /deep/ .ivu-icon {
- padding-top: 5px;
- }
- }
- }
- }
- .addInputClassTab {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
- div {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- padding: 5px;
- .dele_icon {
- i {
- font-size: 20px;
- }
- }
- }
- }
- /deep/.ivu-tabs-nav-scroll {
- display: flex;
- justify-content: center;
- }
- /deep/ .ivu-table-wrapper {
- overflow: visible;
- }
- /deep/.ivu-table-fixed-body {
- padding-bottom: 20px;
- }
- .process_modal {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 10px;
- }
- </style>
|