recommend.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. <template>
  2. <div class="saga-recommend">
  3. <div v-if="hasData">
  4. <div class="recommend-card">
  5. <h4>当前资产:
  6. <el-tooltip class="item" effect="dark" :content="fm.FmName">
  7. <span>{{fm.FmName}}</span>
  8. </el-tooltip>
  9. </h4>
  10. </div>
  11. <div class="saga-change-name" v-if="!isChangeFor">
  12. <h3 class="saga-gray saga-explain">您可能需要快捷改值操作</h3>
  13. <!-- 智能推荐按钮 -->
  14. <div v-if="isChangeId">
  15. <template v-if="changeList.length" v-for="(item,index) in changeList">
  16. <saga-button :key="index" @click="getList(item)">修正 "{{getName(key)}}" 为 {{item.value}}</saga-button>
  17. </template>
  18. <template v-if="!changeList.length">
  19. <p>{{changeMsg}}</p>
  20. </template>
  21. </div>
  22. <!-- 修正按钮 -->
  23. <div v-else>
  24. <saga-button @click="changeToNull">修正 "{{getName(key)}}" 为 {{noIdChangeVal}}</saga-button>
  25. </div>
  26. </div>
  27. <div class="saga-change-name" v-if="!isSameForCreate">
  28. <h3 class="saga-gray saga-explain">您可能需要快捷维护厂商库</h3>
  29. <template>
  30. <saga-button v-if="!isChangeVender" @click="create">
  31. 增加 {{obj.name}} “ {{val ? val : fm.Infos[key]}} ”</saga-button>
  32. <saga-button v-if="isChangeVender" @click="changeVender">更新厂商库中此{{obj.name}}对应值</saga-button>
  33. </template>
  34. </div>
  35. <div class="saga-change-name" v-if="elseBtnsShow">
  36. <h3 class="saga-gray saga-explain">您可能需要其他快捷操作</h3>
  37. <!-- <saga-button @click="checkVenders">先维护 xxx 信息点</saga-button> -->
  38. <saga-button @click="checkVenders" v-if="showBtn">批量维护 {{!!obj ? obj.name : ""}} 相关信息点</saga-button>
  39. <saga-button v-if="!showBtn">先维护 {{objMsg}}</saga-button>
  40. <!-- <saga-button @click="checkVenders"></saga-button> -->
  41. </div>
  42. </div>
  43. <div v-else class="saga-message">
  44. <p>{{!!dataMessage ? dataMessage : "请确定该信息点是支持推荐的信息点"}}</p>
  45. </div>
  46. <venders-change
  47. :create="isCreate"
  48. v-if="dialog.visible"
  49. ref="venders"
  50. :dialog="dialog"
  51. :infosKey="infosKey"
  52. :types="types"
  53. :fmData="fm"
  54. @change="loadFm"
  55. :title="isCreate ? '添加' + obj.name : '修改' + obj.name"
  56. ></venders-change>
  57. </div>
  58. </template>
  59. <script>
  60. import sagaButton from "./sagaButton"
  61. import vendersChange from "./vendersChange"
  62. import getVenderRecommend from "./findId"
  63. import tools from "@/utils/scan/tools"
  64. import getJson from "@/utils/buildData/vendersUtils"
  65. import buildJson from "@/utils/buildData/buildJson"
  66. import cutHeader from "@/utils/scan/cutHeader"
  67. import {
  68. upDateTableMain,
  69. getBasicMatch
  70. } from "@/api/scan/request"
  71. export default {
  72. components: {
  73. sagaButton,
  74. vendersChange
  75. },
  76. data() {
  77. return {
  78. hasData: false,
  79. fm: {},
  80. infosKey: null,
  81. dialog: {
  82. visible: false
  83. },
  84. createList: [],
  85. changeList: [],
  86. types: {},
  87. headers: [],
  88. message: "",
  89. obj: {},
  90. key: "",
  91. isCreate: false,
  92. showBtn: false,
  93. createShow: false,
  94. changeMsg: "", //修改的提示
  95. dataMessage: "⬅请点击资产信息点",
  96. falg: false, //上级页面传入的数值,用于实时请求
  97. val: null, //上级传入的val
  98. isSameForCreate: false,
  99. isChangeFor: false,
  100. isChangeVender: false,
  101. isChangeId: true, //是否为修改id
  102. noIdChangeVal: "",
  103. elseBtnsShow: true, //是否显示修改按钮
  104. msgTable: true,
  105. content: {}, //厂商库信息点
  106. objMsg: "相关信息点"
  107. }
  108. },
  109. created() {},
  110. mounted() {},
  111. methods: {
  112. //主页面重新加载
  113. loadFm() {
  114. this.$emit("loadData")
  115. },
  116. //根据id获得信息点名称
  117. getName(code) {
  118. if (!!code) {
  119. let name = ""
  120. this.headers.map(item => {
  121. if (item.InfoPointCode == code) {
  122. name = item.InfoPointName
  123. }
  124. })
  125. return name
  126. } else {
  127. return ""
  128. }
  129. },
  130. //修改
  131. checkVenders() {
  132. this.isCreate = false
  133. this.dialog.visible = true
  134. this.$nextTick(_ => {
  135. this.$refs.venders.getData()
  136. })
  137. },
  138. //获取表头
  139. changeObj() {
  140. buildJson.map(item => {
  141. if (item.name == "型号") {
  142. item.options = []
  143. item.infosArr = []
  144. this.headers.map(child => {
  145. if (child.FirstTag == "技术参数" ||
  146. child.InfoPointCode == "Specification" ||
  147. child.InfoPointCode == "MaintainPeriod" ||
  148. child.InfoPointCode == "ServiceLife") {
  149. item.infosArr.push(child.InfoPointCode)
  150. let option = {
  151. key: "contact.infos." + child.InfoPointCode,
  152. label: child.InfoPointName,
  153. optLabel: child.InfoPointCode,
  154. type: child.DataType,
  155. dataSource: child.DataSource,
  156. FirstTag: child.FirstTag,
  157. SecondTag: child.SecondTag
  158. }
  159. if (child.InfoPointCode == "Specification") {
  160. option.key = "content.specificationName"
  161. }
  162. item.options.push(option)
  163. }
  164. })
  165. item.options = cutHeader(item.options)
  166. }
  167. })
  168. },
  169. changeToNull() {
  170. // let param = {
  171. // FmId: this.fm.FmId,
  172. // Infos: {
  173. // [this.key]: null
  174. // }
  175. // }
  176. // this.updateMain(param)
  177. console.log(this.noIdChangeVal, "this.noIdChangeVal")
  178. this.fm.Infos[this.key] = this.noIdChangeVal
  179. },
  180. //上级页面传输的数据
  181. randerData(idData, infosKey, headers, falg = false, val = null) {
  182. this.isChangeVender = false
  183. console.log(idData, infosKey, headers, falg, "falg")
  184. this.falg = falg
  185. this.val = val
  186. this.fm = tools.deepCopyObj(idData)
  187. this.headers = headers
  188. this.changeObj()
  189. this.infosKey = infosKey
  190. this.message = ""
  191. this.key = infosKey.split(".")[1]
  192. this.obj = getJson(this.infosKey.split(".")[1])
  193. console.log("数据请求", this.obj)
  194. if (!!this.obj) {
  195. console.log("有data")
  196. this.hasData = true
  197. this.getDataForm()
  198. } else {
  199. this.hasData = false
  200. }
  201. },
  202. changeVender() {
  203. // 修改厂商库中对应的值
  204. console.log("修改厂商库中的值", this.obj, this.key)
  205. let webArr = ["SupplierWeb", "InsurerWeb", "MaintainerWeb"],
  206. //三大厂商的key
  207. keysArr = ["DPInsurerID", "DPSupplierID", "DPMaintainerID"]
  208. //如果是三大厂商的网址
  209. if (webArr.indexOf(this.key) > -1) {
  210. let param = {
  211. venderId: this.fm.Infos[this.obj.infosKey],
  212. website: this.fm.Infos[this.key]
  213. }
  214. this.obj.updateVender(param, res => {
  215. this.updateKey(this.key, this.fm)
  216. })
  217. return false
  218. } else if (keysArr.indexOf(this.obj.infosKey) > -1) {
  219. let param = {
  220. venderId: this.fm.Infos[this.obj.infosKey],
  221. projectId: this.$route.query.projId
  222. }
  223. //如果存在content的联系人
  224. console.log(this.content, "content")
  225. if (this.content.hasOwnProperty("contact")) {
  226. let contents = this.content.contact
  227. for (let k in contents) {
  228. param[k] = contents[k]
  229. }
  230. }
  231. param[[this.getKey(this.obj.options, this.key)]] = this.fm.Infos[this.key]
  232. this.obj.update(param, res => {
  233. this.updateKey(this.key, this.fm)
  234. })
  235. return false
  236. } else {
  237. let param = {
  238. specificationId: this.fm.Infos.DPSpecificationID,
  239. infos: {
  240. [this.key]: this.fm.Infos[this.key]
  241. }
  242. }
  243. this.obj.updateVender(param, res => {
  244. this.updateKey(this.key, this.fm)
  245. })
  246. return false
  247. }
  248. },
  249. updateKey(key, obj) {
  250. let param = {
  251. FmId: obj.FmId,
  252. Infos: {
  253. [key]: null
  254. }
  255. }
  256. this.updateMain(param)
  257. },
  258. /**
  259. * @param arr 传入的数组
  260. * @param key 传入的key
  261. *
  262. * @return key 对应的key
  263. */
  264. getKey(arr, key) {
  265. let returnKey = ""
  266. arr.map(item => {
  267. if (item.optLabel == key) {
  268. returnKey = item.key.split(".")[1]
  269. console.log(returnKey, item, "item")
  270. }
  271. })
  272. return returnKey
  273. },
  274. //有obj的信息时
  275. getDataForm() {
  276. let idArr = ["DPManufacturerID", "DPSupplierID", "DPInsurerID", "DPMaintainerID", "DPSpecificationID", "DPBrandID", "DPSpecificationID"]
  277. //点击以下按钮触发按钮事件
  278. let vendersArr = ["Manufacturer", "Supplier", "Maintainer", "Insurer", "Brand", "Specification"]
  279. if (!!this.fm.Infos[this.obj.infosKey]) {
  280. this.falgChange(true)
  281. } else {
  282. this.falgChange(false)
  283. }
  284. },
  285. //falg为是否存在id
  286. falgChange(falg) {
  287. let vendersArr = ["Manufacturer", "Supplier", "Maintainer", "Insurer", "Brand", "Specification"]
  288. if (this.val || !!this.fm.Infos[this.key]) {
  289. //存在id且单元格存在值
  290. if (falg) {
  291. if (this.falg && vendersArr.indexOf(this.key) > -1) {
  292. this.noIdDo()
  293. } else {
  294. this.getVendersList()
  295. }
  296. } else {
  297. // 没有id
  298. this.noIdDo()
  299. }
  300. } else {
  301. //不存在值
  302. // this.isChangeFor = false
  303. // this.isSameForCreate = true
  304. // this.changeList = []
  305. this.noIdDo()
  306. // this.changeMsg = "请确定该单元格内存在值"
  307. }
  308. },
  309. //没有id执行
  310. noIdDo() {
  311. console.log("没有id")
  312. let param = {
  313. infoCode: this.key,
  314. infoValue: this.val || this.fm.Infos[this.key]
  315. },
  316. falg = true
  317. this.createShow = true
  318. this.showBtn = false
  319. this.elseBtnsShow = true
  320. if (this.key == "Brand") {
  321. param.manufacturerID = this.fm.Infos.DPManufacturerID
  322. }
  323. if (this.key == "Specification") {
  324. param.manufacturerID = this.fm.Infos.DPManufacturerID
  325. param.brandID = this.fm.Infos.DPBrandID
  326. param.eqFamily = this.fm.Family
  327. }
  328. for (let k in param) {
  329. if (!param[k]) {
  330. falg = false
  331. }
  332. }
  333. console.log(falg, "falg")
  334. //如果传参中某个值为空不发生请求
  335. if (!falg) {
  336. this.noShowTop12()
  337. return false
  338. } else {
  339. this.elseBtnsShow = false
  340. }
  341. console.log(this.obj.infosArr[0], this.infosKey, "this.infosKey")
  342. if (this.obj.infosArr[0] != this.key) {
  343. console.log("其他信息点")
  344. this.noShowTop12()
  345. return false
  346. }
  347. getVenderRecommend(param, res => {
  348. this.changeList = res.content || []
  349. this.isChangeId = true
  350. this.isSameForCreate = false
  351. this.isChangeFor = false
  352. console.log(this.changeList, "changeList")
  353. if (!!this.changeList && this.changeList.length == 1) {
  354. if (this.changeList[0].value == this.fm.Infos[this.key] &&
  355. this.changeList[0].id == this.fm.Infos["DP" + this.key + "ID"]) {
  356. this.isSameForCreate = true
  357. this.isChangeFor = true
  358. if (!!this.val && this.val != this.fm.Infos[this.key]) {
  359. this.isChangeFor = false
  360. this.isSameForCreate = false
  361. }
  362. }
  363. }
  364. if (res.content[0] && res.content[0].similarity == 100) {
  365. this.changeList = []
  366. this.isSameForCreate = true
  367. this.isChangeFor = false
  368. }
  369. if (this.changeList.length <= 0) {
  370. // this.changeMsg = "不存在符合条件的推荐"
  371. }
  372. })
  373. },
  374. //第一栏第二栏不显示
  375. noShowTop12() {
  376. if (!this.val && !this.fm.Infos[this.key]) {
  377. this.elseBtnsShow = false
  378. }
  379. console.log(this.obj.infosKey, this.fm.Infos)
  380. //型号
  381. if (this.obj.infosKey == "DPSpecificationID") {
  382. if (!this.fm.Infos.DPManufacturerID) {
  383. this.elseBtnsShow = true
  384. this.objMsg = "生产厂家"
  385. } else if (!this.fm.Infos.DPBrandID) {
  386. this.elseBtnsShow = true
  387. this.objMsg = "品牌"
  388. } else if (!this.fm.Infos.DPSpecificationID) {
  389. console.log("设备型号")
  390. this.elseBtnsShow = true
  391. this.objMsg = "设备型号"
  392. }
  393. }
  394. //品牌
  395. if (this.obj.infosKey == "DPBrandID") {
  396. if (!this.fm.Infos.DPManufacturerID) {
  397. this.objMsg = "生产厂家"
  398. }
  399. }
  400. //生产厂家
  401. if (this.obj.infosKey == "DPManufacturerID") {
  402. this.elseBtnsShow = false
  403. }
  404. //供应商
  405. if (this.obj.infosKey == "DPSupplierID") {
  406. if (!this.fm.Infos.DPSupplierID) {
  407. console.log("没有供应商id")
  408. this.elseBtnsShow = false
  409. if (this.key != "Supplier") {
  410. this.elseBtnsShow = true
  411. }
  412. this.objMsg = "供应商单位名称"
  413. }
  414. }
  415. //维修商
  416. if (this.obj.infosKey == "DPMaintainerID") {
  417. if (!this.fm.Infos.DPMaintainerID) {
  418. console.log("没有维修商id")
  419. this.elseBtnsShow = false
  420. if (this.key != "Maintainer") {
  421. this.elseBtnsShow = true
  422. }
  423. this.objMsg = "维修商单位名称"
  424. }
  425. }
  426. //保险公司
  427. if (this.obj.infosKey == "DPInsurerID") {
  428. if (!this.fm.Infos.DPInsurerID) {
  429. console.log("没有保险id")
  430. this.elseBtnsShow = false
  431. if (this.key != "Insurer") {
  432. this.elseBtnsShow = true
  433. }
  434. this.objMsg = "保险公司名称"
  435. }
  436. }
  437. this.isSameForCreate = true
  438. this.isChangeFor = true
  439. },
  440. //当前单元格内存在id且单元格存在值
  441. getVendersList() {
  442. //四大厂商名称
  443. this.isChangeId = true
  444. let venderIdArr = ["DPManufacturerID", "DPSupplierID", "DPInsurerID", "DPMaintainerID", "DPBrandID"],
  445. vendersArr = ["Manufacturer", "Supplier", "Maintainer", "Insurer", "Brand"],
  446. infosKey = this.obj.infosKey
  447. this.showBtn = true
  448. this.elseBtnsShow = true
  449. //获取label
  450. let ownLabel = ""
  451. this.obj.options.map(item => {
  452. if (item.optLabel == this.key) {
  453. ownLabel = item.key
  454. }
  455. })
  456. if (venderIdArr.indexOf(infosKey) > -1) {
  457. let param = {
  458. venderId: this.fm.Infos[infosKey],
  459. projectId: this.$route.query.projId
  460. }
  461. if (infosKey == "DPBrandID") {
  462. param = {
  463. brandId: this.fm.Infos[infosKey]
  464. }
  465. }
  466. this.obj.getList(param, res => {
  467. console.log(this.key, this.obj.options, res, ownLabel, "ownLabel")
  468. let optArr = ownLabel.split("."),
  469. optContent = ""
  470. if (this.obj.infosKey == "DPBrandID") {
  471. optContent = res[optArr[0]][optArr[1]]
  472. } else {
  473. optContent = res.content[optArr[0]][optArr[1]]
  474. }
  475. if (optContent == (this.val || this.fm.Infos[this.key])) {
  476. //厂商库中的值与现有的值相等
  477. this.isChangeFor = true
  478. this.isSameForCreate = true
  479. let keysBtns = ["DPBrandID", "DPManufacturerID"]
  480. if (keysBtns.indexOf(this.obj.infosKey) > -1) {
  481. this.elseBtnsShow = false
  482. }
  483. } else {
  484. if (!optContent) {
  485. //如果厂商库中没有值
  486. console.log("没有该信息点")
  487. this.isChangeFor = true
  488. this.isChangeVender = true
  489. this.isSameForCreate = false
  490. } else {
  491. //有值
  492. console.log("有值,且值不同")
  493. this.isChangeId = false
  494. this.hasData = true
  495. this.content = res.content
  496. //修改的值(其实做置空操作)
  497. this.noIdChangeVal = optContent
  498. this.isChangeFor = false
  499. this.isSameForCreate = false
  500. this.isChangeVender = true
  501. }
  502. }
  503. })
  504. }
  505. if (infosKey == "DPSpecificationID") {
  506. let paramData = {
  507. specificationId: this.fm.Infos[infosKey]
  508. }
  509. this.obj.getList(paramData, res => {
  510. let optContent = res.content.infos[this.key]
  511. console.log(optContent, this.val, this.fm.Infos[this.key], "optContent")
  512. if (optContent == (this.val || this.fm.Infos[this.key])) {
  513. console.log("有值,且值相同")
  514. this.isChangeFor = true
  515. this.isSameForCreate = true
  516. if (this.key == "Specification") {
  517. this.elseBtnsShow = false
  518. } else {
  519. this.elseBtnsShow = true
  520. }
  521. } else {
  522. if (!optContent) {
  523. //如果厂商库中没有值
  524. console.log("没有该信息点")
  525. this.isChangeFor = true
  526. this.isChangeVender = true
  527. this.isSameForCreate = false
  528. } else {
  529. //有值
  530. console.log("有值,且值不同")
  531. this.isChangeId = false
  532. this.hasData = true
  533. //修改的值(其实做置空操作)
  534. this.noIdChangeVal = optContent
  535. this.isChangeFor = false
  536. this.isSameForCreate = false
  537. this.isChangeVender = true
  538. }
  539. }
  540. })
  541. }
  542. if (vendersArr.indexOf(this.key) > -1) {
  543. this.showBtn = true
  544. }
  545. },
  546. //创建函数
  547. create(item) {
  548. // console.log(this.obj.infosKey)
  549. // let param;
  550. // if(this.obj.infosKey == "DPBrandID" || this.obj.infosKey == "DPManufacturerID"){
  551. // if(this.obj.infosKey == "DPBrandID"){
  552. // param = {
  553. // "venderId": this.fm.Infos.DPManufacturerID, //String,必填,生产商id
  554. // "name": this.fm.Infos.Brand, //String,必填,品牌名称
  555. // }
  556. // }else{
  557. // param = {
  558. // "name": this.fm.Infos.Manufacturer,
  559. // }
  560. // }
  561. // this.obj.createFunc(param,res=>{
  562. // })
  563. // }
  564. this.isCreate = true
  565. this.dialog.visible = true
  566. this.$nextTick(_ => {
  567. this.$refs.venders.getCreateData()
  568. })
  569. },
  570. updateMain(param) {
  571. upDateTableMain({
  572. ProjId: this.$route.query.projId,
  573. UserId: this.$route.query.userId
  574. }, [param]).then(res => {
  575. if (res.data.Result == "success") {
  576. this.loadFm()
  577. } else {
  578. this.$message.error("保存出错")
  579. }
  580. })
  581. },
  582. //点击按钮,对表格操作
  583. getList(data) {
  584. // this.fm.Infos[this.key] = data.value
  585. let infos = tools.deepCopyObj(this.fm.Infos)
  586. infos[this.key] = data.value
  587. let param = {
  588. "projectId": this.$route.query.projId,
  589. "criterias": [{
  590. id: this.fm.FmId,
  591. family: this.fm.Family,
  592. infos: infos
  593. }]
  594. }
  595. console.log(param, "paramparam")
  596. this.getIdForVender(param)
  597. },
  598. //判断文案是否相同
  599. getIdForVender(param) {
  600. getBasicMatch(param).then(res => {
  601. if (res.data.result == "success") {
  602. let myParam = res.data.content.map(item => {
  603. return {
  604. Family: item.family,
  605. FmId: item.id,
  606. Infos: item.infos
  607. }
  608. })
  609. this.updateMain(myParam[0])
  610. } else {
  611. this.$message.error("请求错误" + res.data.resultMsg)
  612. }
  613. }).catch(error => {
  614. this.$message.error(error)
  615. })
  616. },
  617. }
  618. }
  619. </script>
  620. <style lang="scss" scoped>
  621. h4{
  622. font-size: 18px;
  623. font-weight: 400;
  624. }
  625. .saga-recommend {
  626. background-color: #fff;
  627. height: 100%;
  628. overflow-y: auto; // background-color: red;
  629. .recommend-card{
  630. padding: 5px;
  631. border: 1px solid #E4E7ED;
  632. margin: 10px;
  633. }
  634. .saga-gray {
  635. color: #909399;
  636. font-weight: 400;
  637. font-size: 16px;
  638. }
  639. .saga-change-name {
  640. padding: 5px;
  641. margin: 10px;
  642. min-height: 100px; // background-color: yellow;
  643. border-bottom: 1px solid #ccc;
  644. border: 1px solid #E4E7ED;
  645. }
  646. }
  647. .saga-message {
  648. background-color: #fff;
  649. height: 400px;
  650. line-height: 400px;
  651. font-size: 16px;
  652. color: #909399;
  653. }
  654. </style>