batchAddEdbDia.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. <template>
  2. <el-dialog
  3. :visible.sync="isOpenDialog"
  4. :close-on-click-modal="false"
  5. :modal-append-to-body="false"
  6. top="5vh"
  7. :title="$t('SteelChemicalPage.add_edb')"
  8. @close="cancelHandle"
  9. custom-class="dialog"
  10. center
  11. width="780px"
  12. v-dialogDrag
  13. >
  14. <div
  15. v-loading="isAddLoading"
  16. :element-loading-text="$t('SteelChemicalPage.add_loading_msg')"
  17. element-loading-spinner="el-icon-loading">
  18. <div class="dialog-main">
  19. <el-row :gutter="10" class="row" style="margin-bottom: 15px;">
  20. <el-col style="width: 250px;" class="col title-col"><!-- 指标ID -->{{$t('Edb.Detail.e_id')}}</el-col>
  21. <el-col style="width: 382px;" class="col title-col"><!-- 所属分类 -->{{$t('SteelChemicalPage.label_edb_classify')}}</el-col>
  22. </el-row>
  23. <el-form :model="edbForm" ref="edbFormDataListRef" >
  24. <div class="form-box" ref="formBoxRef">
  25. <el-row v-for="(item,index) in edbForm.edbDataList" :key="item.edbIndex" :gutter="10" class="row">
  26. <el-col class="col edb-col">
  27. <el-form-item
  28. :prop="`edbDataList.${index}.IndexCode`"
  29. :rules="[{required:true,message:$t('SteelChemicalPage.ph_edbid'),trigger:'blur'},
  30. {validator:checkAge,trigger:'blur'}]"
  31. >
  32. <el-input
  33. v-model.trim="item.IndexCode"
  34. :placeholder="$t('Edb.InputHolderAll.input_common',{label:$t('Edb.Detail.e_id')})"
  35. ></el-input>
  36. </el-form-item>
  37. </el-col>
  38. <el-col class="col classify-col">
  39. <el-form-item :prop="`edbDataList.${index}.BaseFromMysteelChemicalClassifyId`"
  40. :rules="{required:true,message:$t('SteelChemicalPage.ph_classify'),trigger:'change'}">
  41. <el-cascader
  42. class="classify-cascader"
  43. :ref="'classifyCascader'+item.edbIndex"
  44. v-model="item.BaseFromMysteelChemicalClassifyId"
  45. :options="classifyOptions"
  46. :key="item.edbIndex"
  47. :props="{
  48. label:currentLang==='zh'?'ClassifyName':'ClassifyNameEn',
  49. value: 'BaseFromMysteelChemicalClassifyId',
  50. children: 'Children',
  51. emitPath: false,
  52. }"
  53. :placeholder="$t('Edb.InputHolderAll.input_classify')"
  54. />
  55. </el-form-item>
  56. </el-col>
  57. <img src="~@/assets/img/delete-minus-red.png" @click="delEdbItem(index)" v-if="edbForm.edbDataList.length>1" />
  58. </el-row>
  59. </div>
  60. <div class="add-box" @click="addEdbItem">
  61. <img src="~@/assets/img/add-quadrate-blue.png"/>
  62. <span><!-- 添加 -->{{$t('Table.add_btn')}}</span>
  63. </div>
  64. </el-form>
  65. </div>
  66. <div class="dia-bot">
  67. <el-button type="primary" style="margin-right: 20px" @click="saveHandle"
  68. ><!-- 保存 -->{{$t('Dialog.confirm_save_btn')}}</el-button
  69. >
  70. <el-button type="primary" plain @click="cancelHandle"><!-- 取消 -->{{$t('Dialog.cancel_btn')}}</el-button>
  71. </div>
  72. </div>
  73. </el-dialog>
  74. </template>
  75. <script>
  76. import { steelInterface } from "@/api/modules/thirdBaseApi";
  77. export default {
  78. props: {
  79. isOpenDialog: {
  80. type: Boolean,
  81. },
  82. classifyList: {
  83. type: Array,
  84. },
  85. },
  86. watch: {
  87. isOpenDialog(newval) {
  88. if (newval) {
  89. let classifyArr = _.cloneDeep(this.classifyList);
  90. this.filterNodes(classifyArr);
  91. this.classifyOptions = classifyArr;
  92. }
  93. },
  94. },
  95. computed: {
  96. currentLang() {
  97. return this.$store.state.lang;
  98. },
  99. },
  100. data(){
  101. this.checkAge=(rule, value, callback) => {
  102. // 不能输入中文和空格
  103. let reg = /[\u4e00-\u9fa5]+|\s+/
  104. if(reg.test(value)){
  105. callback(new Error('不能输入中文和空格'))
  106. }else{
  107. callback()
  108. }
  109. }
  110. return{
  111. isAddLoading: false,
  112. classifyOptions:[],
  113. // edbIndex 仅前端使用的唯一标识
  114. edbForm:{edbDataList:[{edbIndex:1,IndexCode:'',BaseFromMysteelChemicalClassifyId:''}]},
  115. timer:null,
  116. emitParams:{},
  117. getAddBack:false
  118. }
  119. },
  120. methods:{
  121. saveHandle(){
  122. this.$refs.edbFormDataListRef.validate((valid)=>{
  123. if(valid){
  124. // console.log(this.edbForm.edbDataList);
  125. steelInterface.edbAdd({List:this.edbForm.edbDataList}).then(res=>{
  126. if (res.Ret !== 200) return;
  127. this.isAddLoading = true;
  128. // console.log(this.edbForm.edbDataList);
  129. let edbItem = this.edbForm.edbDataList.find(it => it.IndexCode.toUpperCase() == res.Data.IndexCode.toUpperCase())
  130. if(!edbItem){
  131. edbItem=this.edbForm.edbDataList[0]
  132. }
  133. let edbIndexCurrent = edbItem?edbItem.edbIndex:0
  134. let selectClassifyNodes=this.$refs['classifyCascader'+edbIndexCurrent][0].getCheckedNodes()[0].path.map(it => it+'')
  135. this.emitParams={
  136. code: res.Data.UniqueCode,
  137. id: res.Data.BaseFromMysteelChemicalIndexId,
  138. indexCode:res.Data.IndexCode,
  139. selectClassifyNodes
  140. }
  141. this.getAddBack=true
  142. setTimeout(() => {
  143. this.cancelHandle();
  144. }, 5*60000);
  145. })
  146. }else{
  147. this.$message.error(/* "指标信息请填写完整!" */ this.$t('Edb.MsgPrompt.edb_not_enougth_info'))
  148. let errorElDom = this.$refs.edbFormDataListRef.fields.filter((item) => {
  149. return item.validateState === 'error';
  150. });
  151. let errorOffsetTops = errorElDom.map((item) => {
  152. return item.$el
  153. })
  154. // 滚动到指定节点
  155. errorOffsetTops[0].scrollIntoView({
  156. // 值有start,center,end,nearest
  157. block: 'start'
  158. })
  159. }
  160. })
  161. },
  162. /* 取消 */
  163. cancelHandle() {
  164. this.isAddLoading = false;
  165. this.edbForm={edbDataList:[{edbIndex:1,IndexCode:'',BaseFromMysteelChemicalClassifyId:''}]}
  166. this.$refs.edbFormDataListRef && this.$refs.edbFormDataListRef.resetFields();
  167. this.$emit("update:isOpenDialog", false);
  168. if(this.getAddBack){
  169. this.$emit("successCallback", this.emitParams);
  170. clearTimeout(this.timer)
  171. this.getAddBack=false
  172. }
  173. },
  174. // 递归改变第三级目录结构
  175. filterNodes(arr) {
  176. arr.length &&
  177. arr.forEach((item) => {
  178. item.Children &&
  179. item.Children.length &&
  180. this.filterNodes(item.Children);
  181. if (item.Level === 2) {
  182. delete item.Children;
  183. }
  184. });
  185. },
  186. addEdbItem(){
  187. this.$refs.edbFormDataListRef.validate(valid=>{
  188. if(valid){
  189. if(this.edbForm.edbDataList.length>=150){
  190. this.$message.warning(/* '添加数量已达上限(上限150)!' */this.$t('SteelChemicalPage.add_max_msg'))
  191. return
  192. }
  193. let lastItem = this.edbForm.edbDataList[this.edbForm.edbDataList.length-1]
  194. this.edbForm.edbDataList.push({
  195. edbIndex:lastItem?1+lastItem.edbIndex:1,
  196. IndexCode:'',
  197. BaseFromMysteelChemicalClassifyId:lastItem?lastItem.BaseFromMysteelChemicalClassifyId:''
  198. })
  199. this.$nextTick(()=>{
  200. // console.log(this.$refs.formBoxRef.scrollTop,this.$refs.formBoxRef.scrollHeight,'');
  201. this.$refs.formBoxRef.scrollTop = this.$refs.formBoxRef.scrollHeight
  202. })
  203. }else{
  204. // console.log(this.$refs.edbFormDataListRef.fields,'this.$refs.edbFormDataListRef.fields');
  205. let errorElDom = this.$refs.edbFormDataListRef.fields.filter((item) => {
  206. return item.validateState === 'error';
  207. });
  208. let errorOffsetTops = errorElDom.map((item) => {
  209. return item.$el
  210. })
  211. // 滚动到指定节点
  212. errorOffsetTops[0].scrollIntoView({
  213. // 值有start,center,end,nearest
  214. block: 'start'
  215. })
  216. }
  217. })
  218. },
  219. delEdbItem(index){
  220. this.edbForm.edbDataList.splice(index,1)
  221. }
  222. },
  223. }
  224. </script>
  225. <style lang="scss" scoped>
  226. .dialog-main {
  227. padding: 0 35px;
  228. .form-box{
  229. max-height: 450px;
  230. overflow-y: auto;
  231. overflow-x: hidden;
  232. scroll-behavior: smooth;
  233. }
  234. .add-box{
  235. display: inline-flex;
  236. align-items: center;
  237. cursor: pointer;
  238. margin-top: 10px;
  239. img{
  240. height: 18px;
  241. width: 18px;
  242. margin-right: 7px;
  243. }
  244. span{
  245. font-size: 14px;
  246. color: #0052D9;
  247. }
  248. }
  249. .row{
  250. .title-col{
  251. color: #333333;
  252. }
  253. .edb-col{
  254. width: 250px;
  255. }
  256. .classify-col{
  257. width: 382px;
  258. }
  259. img{
  260. height: 18px;
  261. width: 18px;
  262. margin: 10px 0 0 8px;
  263. cursor: pointer;
  264. }
  265. }
  266. }
  267. .dia-bot {
  268. margin: 52px 0 30px;
  269. display: flex;
  270. justify-content: center;
  271. }
  272. </style>
  273. <style lang="scss">
  274. .form-box{
  275. .el-form-item{
  276. margin-bottom: 18px;
  277. }
  278. }
  279. .col{
  280. .el-input{
  281. width: 100%;
  282. height: 38px;
  283. .el-input__inner{
  284. height: 38px;
  285. }
  286. }
  287. .classify-cascader{
  288. min-width: 100%;
  289. }
  290. }
  291. </style>