index.vue 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261
  1. <template>
  2. <zj-tab-page ref="tabPage" :defaultActives="[{ key: 'list', label: $route.meta.title + '-列表', essential: true }]">
  3. <template slot-scope="{ activeKey, data }">
  4. <div
  5. :style="{
  6. width: '100%',
  7. height: activeKey == 'list' ? '100%' : '0px',
  8. overflow: 'hidden'
  9. }"
  10. >
  11. <template-page
  12. ref="pageRef"
  13. :get-list="getList"
  14. :table-attributes="tableAttributes"
  15. :table-events="tableEvents"
  16. :options-evens-group="optionsEvensGroup"
  17. :moreParameters="moreParameters"
  18. :column-parsing="columnParsing"
  19. :exportList="exportList"
  20. :operation="operation()"
  21. >
  22. </template-page>
  23. </div>
  24. <div v-if="~['add', 'detail'].indexOf(activeKey)" style="box-sizing: border-box; padding: 16px">
  25. <el-tabs v-if="activeKey == 'detail'" v-model="activeType_e">
  26. <el-tab-pane label="基础资料" name="jbzl"></el-tab-pane>
  27. <el-tab-pane label="修改记录" name="xgjl"></el-tab-pane>
  28. </el-tabs>
  29. <br v-if="activeKey == 'detail'" />
  30. <div v-if="activeType_e == 'jbzl'">
  31. <zj-form-container ref="formRef" :form-data="formData" :styleSwitch="false">
  32. <zj-form-module :title="data.label" :showPackUp="false" :form-data="formData" :form-items="formItems">
  33. </zj-form-module>
  34. <zj-form-module title="" label-width="100px" :form-data="formData" :form-items="formItems2">
  35. <el-tabs slot="header" v-model="activeName">
  36. <el-tab-pane :disabled="isEditIndex > -1 ? true : false" label="辅材配置" name="items_m"></el-tab-pane>
  37. <el-tab-pane :disabled="isEditIndex > -1 ? true : false" label="配件配置" name="items_p"></el-tab-pane>
  38. </el-tabs>
  39. </zj-form-module>
  40. </zj-form-container>
  41. <div slot="footer" class="dialog-footer">
  42. <el-button size="mini" @click="data.removeTab">取 消</el-button>
  43. <el-button size="mini" type="primary" @click="quedingbaocun(data.removeTab)">确定</el-button>
  44. </div>
  45. </div>
  46. <div v-if="activeType_e == 'xgjl'">
  47. <zj-form-container :form-data="formData" :styleSwitch="false">
  48. <zj-form-module title="修改记录" :showPackUp="false" :form-data="formData" :form-items="logList">
  49. </zj-form-module>
  50. </zj-form-container>
  51. </div>
  52. </div>
  53. </template>
  54. </zj-tab-page>
  55. </template>
  56. <script>
  57. import TemplatePage from '@/components/template/template-page-1.vue'
  58. import import_mixin from '@/components/template/import_mixin.js'
  59. import operation_mixin from '@/components/template/operation_mixin.js'
  60. import ImageUpload from '@/components/file-upload'
  61. import { required, mobileRequired, mobile, httpUrl, email } from '@/components/template/rules_verify.js'
  62. import {
  63. orderEnginbaseList,
  64. orderEnginBaseListExport,
  65. orderEnginBaseSave,
  66. orderEnginBaseDetail
  67. } from '@/api/basicEngineeringData'
  68. import { lbsAmapRegion } from '@/api/common.js'
  69. import geographicalPosi from '@/components/geographicalPosi/index.vue'
  70. import { listPageV2 } from '@/api/auxiliaryFittings/attachmentProfile'
  71. import { materialNormList } from '@/api/auxiliaryPriceManagement'
  72. export default {
  73. components: { TemplatePage, ImageUpload, geographicalPosi },
  74. mixins: [import_mixin, operation_mixin],
  75. data() {
  76. return {
  77. // 表格属性
  78. tableAttributes: {
  79. // 启用勾选列
  80. selectColumn: false
  81. },
  82. // 表格事件
  83. tableEvents: {
  84. 'selection-change': this.selectionChange
  85. },
  86. // 勾选选中行
  87. recordSelected: [],
  88. activeName: 'items_m',
  89. formData: {
  90. companyWechatName: JSON.parse(localStorage.getItem('greemall_user')).companyName,
  91. projectName: '',
  92. projectNo: '',
  93. manger: '',
  94. mobile: '',
  95. startTime: '',
  96. endTime: '',
  97. provinceId: '',
  98. cityId: '',
  99. areaId: '',
  100. streetId: '',
  101. address: '',
  102. remark: '',
  103. items_m: [],
  104. items_p: []
  105. },
  106. provinceList: [],
  107. cityList: [],
  108. areaList: [],
  109. streetList: [],
  110. fucaiSel: [],
  111. peijianSel: [],
  112. isEditIndex: -1,
  113. activeType_e: 'jbzl'
  114. }
  115. },
  116. computed: {
  117. // 更多参数
  118. moreParameters() {
  119. return []
  120. },
  121. // 事件组合
  122. optionsEvensGroup() {
  123. return [
  124. [
  125. [
  126. this.optionsEvensAuth('add', {
  127. click: () => {
  128. this.$refs.tabPage.addTab({
  129. // 对应显示的模块
  130. activeKey: 'add',
  131. // 唯一标识
  132. key: 'add',
  133. // 页签名称
  134. label: '新增',
  135. // 打开时事件
  136. triggerEvent: () => {
  137. this.activeType_e = 'jbzl'
  138. this.handleClose()
  139. this.$nextTick(() => {
  140. this.getinitlbslist()
  141. this.openForm()
  142. })
  143. },
  144. // 关闭时事件
  145. closeEvent: () => {}
  146. })
  147. }
  148. })
  149. ]
  150. ]
  151. ]
  152. },
  153. formItems() {
  154. return [
  155. {
  156. name: 'el-input',
  157. md: 12,
  158. attributes: {
  159. placeholder: '请输入'
  160. },
  161. formItemAttributes: {
  162. label: '工程名称',
  163. prop: 'projectName',
  164. rules: [...required]
  165. }
  166. },
  167. {
  168. name: 'el-input',
  169. md: 6,
  170. attributes: {
  171. placeholder: '请输入'
  172. },
  173. formItemAttributes: {
  174. label: '工程编号',
  175. prop: 'projectNo',
  176. rules: [...required]
  177. }
  178. },
  179. {
  180. name: 'el-input',
  181. md: 6,
  182. attributes: {
  183. placeholder: '请输入'
  184. },
  185. formItemAttributes: {
  186. label: '负责人',
  187. prop: 'manger',
  188. rules: [...required]
  189. }
  190. },
  191. {
  192. name: 'el-input',
  193. md: 6,
  194. attributes: {
  195. placeholder: '请输入'
  196. },
  197. formItemAttributes: {
  198. label: '联系电话',
  199. prop: 'mobile',
  200. rules: [...mobileRequired]
  201. }
  202. },
  203. {
  204. name: 'slot-component',
  205. md: 6,
  206. formItemAttributes: {
  207. label: '项目时间',
  208. prop: 'startTime',
  209. rules: [...required]
  210. },
  211. render: (h, { props }) => {
  212. return (
  213. <div
  214. style={{
  215. display: 'flex',
  216. 'justify-content': 'space-between'
  217. }}
  218. >
  219. <div style="width:49%">
  220. <el-date-picker
  221. style="width:100%"
  222. value={this.formData.startTime}
  223. onInput={val => {
  224. this.formData.startTime = val
  225. }}
  226. value-format="yyyy-MM-dd HH:mm:ss"
  227. type="datetime"
  228. placeholder="选择日期"
  229. ></el-date-picker>
  230. </div>
  231. <div style="width:49%">
  232. <el-date-picker
  233. disabled={true}
  234. style="width:100%"
  235. value={this.formData.endTime}
  236. onInput={val => {
  237. this.formData.endTime = val
  238. }}
  239. value-format="yyyy-MM-dd HH:mm:ss"
  240. type="datetime"
  241. placeholder="选择日期"
  242. ></el-date-picker>
  243. </div>
  244. </div>
  245. )
  246. }
  247. },
  248. {
  249. name: 'el-select',
  250. md: 6,
  251. formItemAttributes: {
  252. label: '项目地址', //省
  253. prop: 'provinceId',
  254. errLabel: '省',
  255. rules: [...required]
  256. },
  257. options: this.provinceList.map((v, i) => ({ value: v.id, label: v.name })),
  258. attributes: { disabled: false, clearable: true, filterable: true, placeholder: '请选择' },
  259. events: {
  260. change: val => {
  261. // 获取省名称
  262. this.formData.province = this.provinceList.find(item => item.id === val)?.name || ''
  263. // 清除市区街道以及详细地址数据
  264. this.delDataK(1)
  265. lbsAmapRegion({ pid: val }).then(res => {
  266. this.cityList = res.data
  267. })
  268. }
  269. }
  270. },
  271. {
  272. name: 'el-select',
  273. md: 5,
  274. formItemAttributes: {
  275. 'label-width': '0px',
  276. label: '', //市
  277. prop: 'cityId',
  278. errLabel: '市',
  279. rules: [...required]
  280. },
  281. options: this.cityList.map((v, i) => ({ value: v.id, label: v.name })),
  282. attributes: { disabled: false, clearable: true, filterable: true, placeholder: '请选择' },
  283. events: {
  284. change: val => {
  285. // 获取市名称
  286. this.formData.city = this.cityList.find(item => item.id === val).name
  287. // 清除区街道以及详细地址数据
  288. this.delDataK(2)
  289. lbsAmapRegion({ pid: val }).then(res => {
  290. this.areaList = res.data
  291. })
  292. }
  293. }
  294. },
  295. {
  296. name: 'el-select',
  297. md: 5,
  298. formItemAttributes: {
  299. 'label-width': '0px',
  300. label: '', //区
  301. prop: 'areaId',
  302. errLabel: '区',
  303. rules: [...required]
  304. },
  305. options: this.areaList.map((v, i) => ({ value: v.id, label: v.name })),
  306. attributes: { disabled: false, clearable: true, filterable: true, placeholder: '请选择' },
  307. events: {
  308. change: val => {
  309. // 获取区名称
  310. this.formData.area = this.areaList.find(item => item.id === val).name
  311. // 清除街道以及详细地址数据
  312. this.delDataK(3)
  313. lbsAmapRegion({ pid: val }).then(res => {
  314. this.streetList = res.data
  315. })
  316. }
  317. }
  318. },
  319. {
  320. name: 'el-select',
  321. md: 5,
  322. formItemAttributes: {
  323. 'label-width': '0px',
  324. label: '', //街道
  325. prop: 'streetId',
  326. errLabel: '街道',
  327. rules: [...required]
  328. },
  329. options: this.streetList.map((v, i) => ({ value: v.id, label: v.name })),
  330. attributes: { disabled: false, clearable: true, filterable: true, placeholder: '请选择' },
  331. events: {
  332. change: val => {
  333. // 获取街道名称
  334. this.formData.street = this.streetList.find(item => item.id === val).name
  335. // 清除详细地址数据
  336. this.delDataK(4)
  337. }
  338. }
  339. },
  340. {
  341. name: 'slot-component',
  342. md: 3,
  343. formItemAttributes: {
  344. 'label-width': '0px',
  345. prop: ''
  346. },
  347. render: (h, { props }) => {
  348. return (
  349. <geographicalPosi
  350. formData={this.formData}
  351. onSelectPosi={data => {
  352. // 获取经纬度
  353. this.formData.lng = data.center[0]
  354. this.formData.lat = data.center[1]
  355. // 获取定位的省市区街道
  356. var { province, city, district, township } = data.data.addressComponent
  357. // 获取选中省名称id
  358. var { id, name } = this.provinceList.find(item => item.name === province)
  359. this.formData.provinceId = id
  360. this.formData.province = name
  361. // 请求市选项
  362. lbsAmapRegion({ pid: this.formData.provinceId }).then(res => {
  363. // 赋值市选项
  364. this.cityList = res.data
  365. // 获取选中市名称id
  366. var { id, name } = res.data.find(item => item.name === city)
  367. this.formData.cityId = id
  368. this.formData.city = name
  369. // 请求区选项
  370. lbsAmapRegion({ pid: this.formData.cityId }).then(res => {
  371. // 赋值区选项
  372. this.areaList = res.data
  373. // 获取选中区名称id
  374. var { id, name } = res.data.find(item => item.name === district)
  375. this.formData.areaId = id
  376. this.formData.area = name
  377. // 请求街道选项
  378. lbsAmapRegion({ pid: this.formData.areaId }).then(res => {
  379. // 赋值街道选项
  380. this.streetList = res.data
  381. // 获取选中街道名称id
  382. var { id, name } = res.data.find(item => item.name === township)
  383. this.formData.streetId = id
  384. this.formData.street = name
  385. this.formData.address = data.name
  386. })
  387. })
  388. })
  389. }}
  390. />
  391. )
  392. }
  393. },
  394. {
  395. name: 'el-input',
  396. md: 24,
  397. formItemAttributes: { label: '详细地址', prop: 'address', rules: [...required] },
  398. attributes: { placeholder: '详细地址' }
  399. },
  400. {
  401. name: 'el-input',
  402. md: 24,
  403. attributes: {
  404. type: 'textarea',
  405. rows: 3,
  406. placeholder: '请输入'
  407. },
  408. formItemAttributes: {
  409. label: '项目说明',
  410. prop: 'remark'
  411. }
  412. }
  413. ]
  414. },
  415. formItems2() {
  416. return [
  417. {
  418. md: 24,
  419. isShow: true,
  420. name: 'slot-component',
  421. formItemAttributes: {
  422. label: '',
  423. prop: '',
  424. 'label-width': '0px'
  425. },
  426. render: (h, { props, onInput }) => {
  427. var { value } = props
  428. return (
  429. <div>
  430. {this.activeName == 'items_m'
  431. ? [
  432. <div style="margin-bottom:10px">
  433. <el-button
  434. type="primary"
  435. onClick={() => {
  436. this.addItem('M')
  437. }}
  438. >
  439. 添加
  440. </el-button>
  441. </div>,
  442. <zj-table
  443. columns={[
  444. {
  445. columnAttributes: {
  446. label: '大类',
  447. prop: 'parentCategoryId',
  448. propName: 'parentCategoryName',
  449. width: 160
  450. },
  451. render: (h, { row, column, index }) => {
  452. return this.isEditIndex == index ? (
  453. <div class="redbordererr">
  454. <el-form-item
  455. label=""
  456. lebel-width="0px"
  457. prop={`${this.activeName}.${index}.${column.columnAttributes.prop}`}
  458. rules={required}
  459. >
  460. <el-select
  461. filterable={true}
  462. value={row[column.columnAttributes.prop]}
  463. onInput={val => {
  464. row[column.columnAttributes.prop] = val
  465. }}
  466. onChange={val => {
  467. if (val) {
  468. row[column.columnAttributes.propName] =
  469. this.arrQC(this.fucaiSel, {
  470. value: 'parentCategoryId',
  471. label: 'parentCategoryName'
  472. }).find(item => item.value == val)?.label || ''
  473. } else {
  474. row[column.columnAttributes.propName] = ''
  475. }
  476. this.delItemKey(1, row)
  477. }}
  478. placeholder="请选择"
  479. >
  480. {this.arrQC(this.fucaiSel, {
  481. value: 'parentCategoryId',
  482. label: 'parentCategoryName'
  483. }).map((item, index_) => (
  484. <el-option key={index_} label={item.label} value={item.value}></el-option>
  485. ))}
  486. </el-select>
  487. </el-form-item>
  488. </div>
  489. ) : (
  490. <div style="padding:0 6px">{row[column.columnAttributes.propName]}</div>
  491. )
  492. }
  493. },
  494. {
  495. columnAttributes: {
  496. label: '小类',
  497. prop: 'goodsCategoryId',
  498. propName: 'goodsCategoryName',
  499. width: 160
  500. },
  501. render: (h, { row, column, index }) => {
  502. return this.isEditIndex == index ? (
  503. <div class="redbordererr">
  504. <el-form-item
  505. label=""
  506. lebel-width="0px"
  507. prop={`${this.activeName}.${index}.${column.columnAttributes.prop}`}
  508. rules={required}
  509. >
  510. <el-select
  511. filterable={true}
  512. value={row[column.columnAttributes.prop]}
  513. onInput={val => {
  514. row[column.columnAttributes.prop] = val
  515. }}
  516. onChange={val => {
  517. if (val) {
  518. row[column.columnAttributes.propName] =
  519. this.arrQC(
  520. this.fucaiSel.filter(
  521. item => item.parentCategoryId === row.parentCategoryId
  522. ),
  523. { value: 'goodsCategoryId', label: 'categoryName' }
  524. ).find(item => item.value == val)?.label || ''
  525. } else {
  526. row[column.columnAttributes.propName] = ''
  527. }
  528. this.delItemKey(2, row)
  529. }}
  530. placeholder="请选择"
  531. >
  532. {this.arrQC(
  533. this.fucaiSel.filter(item => item.parentCategoryId === row.parentCategoryId),
  534. { value: 'goodsCategoryId', label: 'categoryName' }
  535. ).map((item, index_) => (
  536. <el-option key={index_} label={item.label} value={item.value}></el-option>
  537. ))}
  538. </el-select>
  539. </el-form-item>
  540. </div>
  541. ) : (
  542. <div style="padding:0 6px">{row[column.columnAttributes.propName]}</div>
  543. )
  544. }
  545. },
  546. {
  547. columnAttributes: {
  548. label: '辅材名称',
  549. prop: 'goodsId',
  550. propName: 'goodsName',
  551. width: 160
  552. },
  553. render: (h, { row, column, index }) => {
  554. return this.isEditIndex == index ? (
  555. <div class="redbordererr">
  556. <el-form-item
  557. label=""
  558. lebel-width="0px"
  559. prop={`${this.activeName}.${index}.${column.columnAttributes.prop}`}
  560. rules={required}
  561. >
  562. <el-select
  563. filterable={true}
  564. value={row[column.columnAttributes.prop]}
  565. onInput={val => {
  566. row[column.columnAttributes.prop] = val
  567. }}
  568. onChange={val => {
  569. this.delItemKey(3, row)
  570. if (val) {
  571. var data = this.arrQC(
  572. this.fucaiSel.filter(
  573. item =>
  574. item.parentCategoryId === row.parentCategoryId &&
  575. item.goodsCategoryId === row.goodsCategoryId
  576. ),
  577. { value: 'goodsId', label: 'goodsName' }
  578. ).find(item => item.value == val)
  579. row[column.columnAttributes.propName] = data?.label || ''
  580. if (data) {
  581. row.goodsCode = data?.data?.goodsCode
  582. row.goodsSpecification = data?.data?.goodsSpecification
  583. row.normType = 'M'
  584. row.goodsStockUnit = data?.data?.goodsStockUnit
  585. }
  586. } else {
  587. row[column.columnAttributes.propName] = ''
  588. }
  589. }}
  590. placeholder="请选择"
  591. >
  592. {this.arrQC(
  593. this.fucaiSel.filter(
  594. item =>
  595. item.parentCategoryId === row.parentCategoryId &&
  596. item.goodsCategoryId === row.goodsCategoryId
  597. ),
  598. { value: 'goodsId', label: 'goodsName' }
  599. ).map((item, index_) => (
  600. <el-option key={index_} label={item.label} value={item.value}></el-option>
  601. ))}
  602. </el-select>
  603. </el-form-item>
  604. </div>
  605. ) : (
  606. <div style="padding:0 6px">{row[column.columnAttributes.propName]}</div>
  607. )
  608. }
  609. },
  610. {
  611. columnAttributes: {
  612. label: '商品代码',
  613. prop: 'goodsCode',
  614. width: 160
  615. }
  616. },
  617. {
  618. columnAttributes: {
  619. label: '规格型号',
  620. prop: 'goodsSpecification',
  621. width: 160
  622. }
  623. },
  624. {
  625. columnAttributes: {
  626. label: '单位',
  627. prop: 'goodsStockUnit',
  628. width: 160
  629. }
  630. },
  631. {
  632. columnAttributes: {
  633. label: '收费类型',
  634. prop: 'normType',
  635. width: 160
  636. },
  637. render: (h, { row, column, index }) => {
  638. return (
  639. <div style="padding:0 6px">
  640. {{ M: '物料收费', S: '服务收费' }[row[column.columnAttributes.prop]] || ''}
  641. </div>
  642. )
  643. }
  644. },
  645. ...this.commonColumns
  646. ]}
  647. tableData={this.formData.items_m}
  648. tableAttributes={{
  649. size: 'mini',
  650. border: true
  651. }}
  652. />
  653. ]
  654. : this.activeName == 'items_p'
  655. ? [
  656. <div style="margin-bottom:10px">
  657. <el-button
  658. type="primary"
  659. onClick={() => {
  660. this.addItem('P')
  661. }}
  662. >
  663. 添加
  664. </el-button>
  665. </div>,
  666. <zj-table
  667. columns={[
  668. {
  669. columnAttributes: {
  670. label: '配件名称',
  671. prop: 'goodsId',
  672. propName: 'goodsName',
  673. width: 160
  674. },
  675. render: (h, { row, column, index }) => {
  676. return this.isEditIndex == index ? (
  677. <div class="redbordererr">
  678. <el-form-item
  679. label=""
  680. lebel-width="0px"
  681. prop={`${this.activeName}.${index}.${column.columnAttributes.prop}`}
  682. rules={required}
  683. >
  684. <el-select
  685. filterable={true}
  686. value={row[column.columnAttributes.prop]}
  687. onInput={val => {
  688. row[column.columnAttributes.prop] = val
  689. }}
  690. onChange={val => {
  691. this.delItemKey(3, row)
  692. if (val) {
  693. var data = this.peijianSel.find(item => item.goodsId == val)
  694. row[column.columnAttributes.propName] = data?.goodsName || ''
  695. if (data) {
  696. row.goodsStockUnit = data.goodsStockUnit
  697. row.goodsCode = data.goodsCode
  698. row.normType = data.normType
  699. row.brandRelaName = data.brandRelaName
  700. row.productRelaName = data.productRelaName
  701. }
  702. } else {
  703. row[column.columnAttributes.propName] = ''
  704. }
  705. }}
  706. placeholder="请选择"
  707. >
  708. {this.peijianSel.map((item, index_) => (
  709. <el-option key={index_} label={item.goodsName} value={item.goodsId}></el-option>
  710. ))}
  711. </el-select>
  712. </el-form-item>
  713. </div>
  714. ) : (
  715. <div style="padding:0 6px">{row[column.columnAttributes.propName]}</div>
  716. )
  717. }
  718. },
  719. {
  720. columnAttributes: {
  721. label: '单位',
  722. prop: 'goodsStockUnit',
  723. width: 160
  724. }
  725. },
  726. {
  727. columnAttributes: {
  728. label: '商品代码',
  729. prop: 'goodsCode',
  730. width: 160
  731. }
  732. },
  733. {
  734. columnAttributes: {
  735. label: '收费类型',
  736. prop: 'normType',
  737. width: 160
  738. },
  739. render: (h, { row, column, index }) => {
  740. return (
  741. <div style="padding:0 6px">
  742. {{ M: '物料收费', S: '服务收费' }[row[column.columnAttributes.prop]] || ''}
  743. </div>
  744. )
  745. }
  746. },
  747. {
  748. columnAttributes: {
  749. label: '适用品牌',
  750. prop: 'brandRelaName',
  751. width: 160
  752. }
  753. },
  754. {
  755. columnAttributes: {
  756. label: '适用产品大类',
  757. prop: 'productRelaName',
  758. width: 160
  759. }
  760. },
  761. ...this.commonColumns
  762. ]}
  763. tableData={this.formData.items_p}
  764. tableAttributes={{
  765. size: 'mini',
  766. border: true
  767. }}
  768. />
  769. ]
  770. : null}
  771. </div>
  772. )
  773. }
  774. }
  775. ]
  776. },
  777. commonColumns() {
  778. return [
  779. {
  780. columnAttributes: {
  781. label: '销售价格(元)',
  782. prop: 'normAmount'
  783. },
  784. render: (h, { row, column, index }) => {
  785. return this.isEditIndex == index ? (
  786. <div class="redbordererr">
  787. <el-form-item
  788. label=""
  789. lebel-width="0px"
  790. prop={`${this.activeName}.${index}.${column.columnAttributes.prop}`}
  791. rules={required}
  792. >
  793. <el-input
  794. value={row[column.columnAttributes.prop]}
  795. onInput={val => {
  796. row[column.columnAttributes.prop] = val
  797. }}
  798. type="number"
  799. placeholder="请输入"
  800. ></el-input>
  801. </el-form-item>
  802. </div>
  803. ) : (
  804. <div style="padding:0 6px">{row[column.columnAttributes.prop]}</div>
  805. )
  806. }
  807. },
  808. // {
  809. // columnAttributes: {
  810. // label: '师傅分账金额(元)',
  811. // prop: 'workerAmount',
  812. // width: 160
  813. // },
  814. // render: (h, { row, column, index }) => {
  815. // return this.isEditIndex == index ? (
  816. // <div class="redbordererr">
  817. // <el-form-item
  818. // label=""
  819. // lebel-width="0px"
  820. // prop={`${this.activeName}.${index}.${column.columnAttributes.prop}`}
  821. // rules={required}
  822. // >
  823. // <el-input
  824. // value={row[column.columnAttributes.prop]}
  825. // onInput={val => {
  826. // row[column.columnAttributes.prop] = val
  827. // }}
  828. // type="number"
  829. // placeholder="请输入"
  830. // ></el-input>
  831. // </el-form-item>
  832. // </div>
  833. // ) : (
  834. // <div style="padding:0 6px">{row[column.columnAttributes.prop]}</div>
  835. // )
  836. // }
  837. // }, {
  838. // columnAttributes: {
  839. // label: '商户分账金额(元)',
  840. // prop: 'websitAmount',
  841. // width: 160
  842. // },
  843. // render: (h, { row, column, index }) => {
  844. // return this.isEditIndex == index ? (
  845. // <div class="redbordererr">
  846. // <el-form-item
  847. // label=""
  848. // lebel-width="0px"
  849. // prop={`${this.activeName}.${index}.${column.columnAttributes.prop}`}
  850. // rules={required}
  851. // >
  852. // <el-input
  853. // value={row[column.columnAttributes.prop]}
  854. // onInput={val => {
  855. // row[column.columnAttributes.prop] = val
  856. // }}
  857. // type="number"
  858. // placeholder="请输入"
  859. // ></el-input>
  860. // </el-form-item>
  861. // </div>
  862. // ) : (
  863. // <div style="padding:0 6px">{row[column.columnAttributes.prop]}</div>
  864. // )
  865. // }
  866. // },
  867. {
  868. columnAttributes: {
  869. label: '操作',
  870. fixed: 'right',
  871. width: 140
  872. },
  873. render: (h, { row, column, index }) => {
  874. return (
  875. <div style="padding:0 6px" class="operation-btns">
  876. {[
  877. this.isEditIndex == index ? (
  878. <el-button
  879. type="text"
  880. onClick={() => {
  881. this.verifyBtn()
  882. }}
  883. >
  884. 确认
  885. </el-button>
  886. ) : null,
  887. this.isEditIndex == -1 ? (
  888. <el-button
  889. type="text"
  890. onClick={() => {
  891. this.isEditIndex = index
  892. }}
  893. >
  894. 编辑
  895. </el-button>
  896. ) : null,
  897. <el-button
  898. type="text"
  899. onClick={() => {
  900. this.formData?.[this.activeName]?.splice(index, 1)
  901. if (index == this.isEditIndex) {
  902. this.isEditIndex = -1
  903. }
  904. }}
  905. >
  906. 删除
  907. </el-button>
  908. ]}
  909. </div>
  910. )
  911. }
  912. }
  913. ]
  914. },
  915. logList() {
  916. return [
  917. {
  918. md: 24,
  919. isShow: true,
  920. name: 'slot-component',
  921. formItemAttributes: {
  922. label: '',
  923. prop: '',
  924. 'label-width': '0px'
  925. },
  926. render: (h, { props, onInput }) => {
  927. var { value } = props
  928. return (
  929. <zj-table
  930. columns={[
  931. {
  932. columnAttributes: {
  933. label: '操作类型',
  934. prop: 'typeText'
  935. }
  936. },
  937. {
  938. columnAttributes: {
  939. label: '操作内容',
  940. prop: 'content'
  941. }
  942. },
  943. {
  944. columnAttributes: {
  945. label: '操作人',
  946. prop: 'createBy'
  947. }
  948. },
  949. {
  950. columnAttributes: {
  951. label: '操作时间',
  952. prop: 'createTime'
  953. }
  954. }
  955. ]}
  956. tableData={this.formData.operatorLogList}
  957. tableAttributes={{
  958. size: 'mini',
  959. border: true
  960. }}
  961. />
  962. )
  963. }
  964. }
  965. ]
  966. }
  967. },
  968. methods: {
  969. // 列表请求函数
  970. getList: orderEnginbaseList,
  971. // 列表导出函数
  972. exportList: orderEnginBaseListExport,
  973. // 表格列解析渲染数据更改
  974. columnParsing(item, defaultData) {
  975. return defaultData
  976. },
  977. // 监听勾选变化
  978. selectionChange(data) {
  979. this.recordSelected = data
  980. },
  981. handleClose() {
  982. this.$refs?.formRef?.resetFields()
  983. this.$data.formData = this.$options.data().formData
  984. this.activeName = 'items_m'
  985. },
  986. // 打开弹窗
  987. openForm() {
  988. this.isEditIndex = -1
  989. // 获取辅材下拉数据
  990. materialNormList({ pageNum: 1, pageSize: -1, params: [{ param: 'a.status', compare: '=', value: 'ON' }] }).then(
  991. res => {
  992. this.fucaiSel = res.data.records
  993. }
  994. )
  995. // 获取配件下拉数据
  996. listPageV2({
  997. pageNum: 1,
  998. pageSize: -1,
  999. params: [
  1000. { param: 'a.status', compare: '=', value: 'ON' },
  1001. { param: 'a.norm_type', compare: '=', value: 'M' }
  1002. ]
  1003. }).then(res => {
  1004. this.peijianSel = res.data.records
  1005. })
  1006. },
  1007. quedingbaocun(removeTab) {
  1008. this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
  1009. if (valid) {
  1010. orderEnginBaseSave({
  1011. ...this.formData,
  1012. items: [...this.formData.items_m, ...this.formData.items_p]
  1013. }).then(res => {
  1014. this.$message({
  1015. type: 'success',
  1016. message: '保存成功'
  1017. })
  1018. this.handleClose()
  1019. this.$refs.pageRef.refreshList()
  1020. removeTab && removeTab()
  1021. })
  1022. }
  1023. })
  1024. },
  1025. // 操作按钮
  1026. operation() {
  1027. return this.operationBtn({
  1028. detail: {
  1029. click: ({ row, index, column }) => {
  1030. this.$refs.tabPage.addTab({
  1031. // 对应显示的模块
  1032. activeKey: 'detail',
  1033. // 唯一标识
  1034. key: 'detail',
  1035. // 页签名称
  1036. label: '详情',
  1037. // 打开时事件
  1038. triggerEvent: () => {
  1039. this.activeType_e = 'jbzl'
  1040. this.handleClose()
  1041. this.$nextTick(() => {
  1042. orderEnginBaseDetail({ id: row.id }).then(res => {
  1043. Object.assign(this.formData, res.data, {
  1044. items_m: (res.data.items || []).filter(item => item.goodsType == 'M'),
  1045. items_p: (res.data.items || []).filter(item => item.goodsType == 'P')
  1046. })
  1047. this.getinitlbslist()
  1048. this.openForm()
  1049. })
  1050. })
  1051. },
  1052. // 关闭时事件
  1053. closeEvent: () => {}
  1054. })
  1055. }
  1056. },
  1057. orderDetail: {
  1058. click: ({ row, index, column }) => {
  1059. this.$router.push({
  1060. name: window.isWorkOrderPoolPath,
  1061. params: {
  1062. pageName: row.projectNo,
  1063. pageType: 'projectNo',
  1064. pageCode: row.projectNo
  1065. }
  1066. })
  1067. }
  1068. }
  1069. })
  1070. },
  1071. // 获取省市区街道
  1072. getinitlbslist() {
  1073. // 初始化请求省市区街道下拉选项数据
  1074. lbsAmapRegion({ pid: 0 }).then(res => {
  1075. this.provinceList = res.data
  1076. if (this.formData.provinceId) {
  1077. var item = this.provinceList.find(item => item.name === this.formData.provinceId)
  1078. if (item) {
  1079. this.formData.province = item.name
  1080. }
  1081. lbsAmapRegion({ pid: this.formData.provinceId }).then(res => {
  1082. this.cityList = res.data
  1083. if (this.formData.cityId) {
  1084. var item2 = this.cityList.find(item => item.name === this.formData.cityId)
  1085. if (item2) {
  1086. this.formData.city = item2.name
  1087. }
  1088. lbsAmapRegion({ pid: this.formData.cityId }).then(res => {
  1089. this.areaList = res.data
  1090. if (this.formData.areaId) {
  1091. var item3 = this.areaList.find(item => item.name === this.formData.areaId)
  1092. if (item3) {
  1093. this.formData.city = item2.name
  1094. }
  1095. lbsAmapRegion({ pid: this.formData.areaId }).then(res => {
  1096. this.streetList = res.data
  1097. if (this.formData.streetId) {
  1098. var item4 = this.streetList.find(item => item.name === this.formData.streetId)
  1099. if (item4) {
  1100. this.formData.street = item4.name
  1101. }
  1102. }
  1103. })
  1104. }
  1105. })
  1106. }
  1107. })
  1108. }
  1109. })
  1110. },
  1111. delDataK(num) {
  1112. if (num <= 1) {
  1113. // 删除市
  1114. this.formData.cityId = ''
  1115. this.formData.city = ''
  1116. // 删除市选项
  1117. this.cityList = []
  1118. }
  1119. if (num <= 2) {
  1120. // 删除区
  1121. this.formData.areaId = ''
  1122. this.formData.area = ''
  1123. // 删除区选项
  1124. this.areaList = []
  1125. }
  1126. if (num <= 3) {
  1127. // 删除街道
  1128. this.formData.streetId = ''
  1129. this.formData.street = ''
  1130. // 删除街道选项
  1131. this.streetList = []
  1132. }
  1133. // 删除gps地址
  1134. this.formData.address = ''
  1135. },
  1136. delItemKey(num, row) {
  1137. if (num <= 1) {
  1138. row.goodsCategoryId = ''
  1139. row.goodsCategoryName = ''
  1140. }
  1141. if (num <= 2) {
  1142. row.goodsId = ''
  1143. row.goodsName = ''
  1144. }
  1145. if (num <= 3) {
  1146. row.brandRelaId = ''
  1147. row.brandRelaName = ''
  1148. row.goodsBarcodeId = ''
  1149. row.goodsCode = ''
  1150. row.goodsSpecification = ''
  1151. row.goodsStockUnit = ''
  1152. row.normType = ''
  1153. row.orderEnginBaseId = ''
  1154. row.productCreateBy = ''
  1155. row.productCreateTime = ''
  1156. row.productRelaId = ''
  1157. row.productRelaName = ''
  1158. row.productUpdateBy = ''
  1159. row.productUpdateTime = ''
  1160. }
  1161. },
  1162. arrQC(list, qz = { label: '', value: '' }) {
  1163. var obj = {}
  1164. for (var item of list) {
  1165. obj[item[qz?.value || 'value']] = item
  1166. }
  1167. return Object.keys(obj).map(key => {
  1168. return {
  1169. data: obj[key],
  1170. value: key,
  1171. label: obj[key][qz?.label || 'label']
  1172. }
  1173. })
  1174. },
  1175. addItem(goodsType) {
  1176. if (this.isEditIndex > -1) {
  1177. this.$refs.formRef.validateField(this.getVfyKey(this.isEditIndex), (valid, invalidFields, errLabels) => {
  1178. if (valid) {
  1179. this.formData[this.activeName].unshift({
  1180. brandRelaId: '',
  1181. brandRelaName: '',
  1182. goodsBarcodeId: '',
  1183. goodsCategoryId: '',
  1184. goodsCategoryName: '',
  1185. goodsCode: '',
  1186. goodsId: '',
  1187. goodsName: '',
  1188. goodsSpecification: '',
  1189. goodsStockUnit: '',
  1190. goodsType: goodsType,
  1191. normAmount: '',
  1192. normType: '',
  1193. orderEnginBaseId: '',
  1194. parentCategoryId: '',
  1195. parentCategoryName: '',
  1196. productCreateBy: '',
  1197. productCreateTime: '',
  1198. productRelaId: '',
  1199. productRelaName: '',
  1200. productUpdateBy: '',
  1201. productUpdateTime: ''
  1202. // "websitAmount": '',
  1203. // "workerAmount": ''
  1204. })
  1205. this.isEditIndex = 0
  1206. }
  1207. })
  1208. } else {
  1209. this.formData[this.activeName].unshift({
  1210. brandRelaId: '',
  1211. brandRelaName: '',
  1212. goodsBarcodeId: '',
  1213. goodsCategoryId: '',
  1214. goodsCategoryName: '',
  1215. goodsCode: '',
  1216. goodsId: '',
  1217. goodsName: '',
  1218. goodsSpecification: '',
  1219. goodsStockUnit: '',
  1220. goodsType: goodsType,
  1221. normAmount: '',
  1222. normType: '',
  1223. orderEnginBaseId: '',
  1224. parentCategoryId: '',
  1225. parentCategoryName: '',
  1226. productCreateBy: '',
  1227. productCreateTime: '',
  1228. productRelaId: '',
  1229. productRelaName: '',
  1230. productUpdateBy: '',
  1231. productUpdateTime: ''
  1232. // "websitAmount": '',
  1233. // "workerAmount": ''
  1234. })
  1235. this.isEditIndex = 0
  1236. }
  1237. },
  1238. getVfyKey() {
  1239. return [
  1240. `${this.activeName}.${this.isEditIndex}.parentCategoryId`,
  1241. `${this.activeName}.${this.isEditIndex}.goodsCategoryId`,
  1242. `${this.activeName}.${this.isEditIndex}.goodsId`,
  1243. `${this.activeName}.${this.isEditIndex}.normAmount`
  1244. // `${this.activeName}.${this.isEditIndex}.workerAmount`,
  1245. // `${this.activeName}.${this.isEditIndex}.websitAmount`,
  1246. ]
  1247. },
  1248. verifyBtn() {
  1249. this.$refs.formRef.validateField(this.getVfyKey(this.isEditIndex), (valid, invalidFields, errLabels) => {
  1250. if (valid) {
  1251. this.isEditIndex = -1
  1252. }
  1253. })
  1254. }
  1255. }
  1256. }
  1257. </script>
  1258. <style lang="scss" scoped></style>