batchAddEdbDia.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  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: 'ClassifyName',
  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. data(){
  96. this.checkAge=(rule, value, callback) => {
  97. // 不能输入中文和空格
  98. let reg = /[\u4e00-\u9fa5]+|\s+/
  99. if(reg.test(value)){
  100. callback(new Error('不能输入中文和空格'))
  101. }else{
  102. callback()
  103. }
  104. }
  105. return{
  106. isAddLoading: false,
  107. classifyOptions:[],
  108. // edbIndex 仅前端使用的唯一标识
  109. edbForm:{edbDataList:[{edbIndex:1,IndexCode:'',BaseFromMysteelChemicalClassifyId:''}]},
  110. timer:null,
  111. emitParams:{},
  112. getAddBack:false
  113. }
  114. },
  115. methods:{
  116. saveHandle(){
  117. this.$refs.edbFormDataListRef.validate((valid)=>{
  118. if(valid){
  119. // console.log(this.edbForm.edbDataList);
  120. steelInterface.edbAdd({List:this.edbForm.edbDataList}).then(res=>{
  121. if (res.Ret !== 200) return;
  122. this.isAddLoading = true;
  123. // console.log(this.edbForm.edbDataList);
  124. let edbItem = this.edbForm.edbDataList.find(it => it.IndexCode.toUpperCase() == res.Data.IndexCode.toUpperCase())
  125. if(!edbItem){
  126. edbItem=this.edbForm.edbDataList[0]
  127. }
  128. let edbIndexCurrent = edbItem?edbItem.edbIndex:0
  129. let selectClassifyNodes=this.$refs['classifyCascader'+edbIndexCurrent][0].getCheckedNodes()[0].path.map(it => it+'')
  130. this.emitParams={
  131. code: res.Data.UniqueCode,
  132. id: res.Data.BaseFromMysteelChemicalIndexId,
  133. indexCode:res.Data.IndexCode,
  134. selectClassifyNodes
  135. }
  136. this.getAddBack=true
  137. setTimeout(() => {
  138. this.cancelHandle();
  139. }, 5*60000);
  140. })
  141. }else{
  142. this.$message.error(/* "指标信息请填写完整!" */ this.$t('Edb.MsgPrompt.edb_not_enougth_info'))
  143. let errorElDom = this.$refs.edbFormDataListRef.fields.filter((item) => {
  144. return item.validateState === 'error';
  145. });
  146. let errorOffsetTops = errorElDom.map((item) => {
  147. return item.$el
  148. })
  149. // 滚动到指定节点
  150. errorOffsetTops[0].scrollIntoView({
  151. // 值有start,center,end,nearest
  152. block: 'start'
  153. })
  154. }
  155. })
  156. },
  157. /* 取消 */
  158. cancelHandle() {
  159. this.isAddLoading = false;
  160. this.edbForm={edbDataList:[{edbIndex:1,IndexCode:'',BaseFromMysteelChemicalClassifyId:''}]}
  161. this.$refs.edbFormDataListRef && this.$refs.edbFormDataListRef.resetFields();
  162. this.$emit("update:isOpenDialog", false);
  163. if(this.getAddBack){
  164. this.$emit("successCallback", this.emitParams);
  165. clearTimeout(this.timer)
  166. this.getAddBack=false
  167. }
  168. },
  169. // 递归改变第三级目录结构
  170. filterNodes(arr) {
  171. arr.length &&
  172. arr.forEach((item) => {
  173. item.Children &&
  174. item.Children.length &&
  175. this.filterNodes(item.Children);
  176. if (item.Level === 2) {
  177. delete item.Children;
  178. }
  179. });
  180. },
  181. addEdbItem(){
  182. this.$refs.edbFormDataListRef.validate(valid=>{
  183. if(valid){
  184. if(this.edbForm.edbDataList.length>=150){
  185. this.$message.warning(/* '添加数量已达上限(上限150)!' */this.$t('SteelChemicalPage.add_max_msg'))
  186. return
  187. }
  188. let lastItem = this.edbForm.edbDataList[this.edbForm.edbDataList.length-1]
  189. this.edbForm.edbDataList.push({
  190. edbIndex:lastItem?1+lastItem.edbIndex:1,
  191. IndexCode:'',
  192. BaseFromMysteelChemicalClassifyId:lastItem?lastItem.BaseFromMysteelChemicalClassifyId:''
  193. })
  194. this.$nextTick(()=>{
  195. // console.log(this.$refs.formBoxRef.scrollTop,this.$refs.formBoxRef.scrollHeight,'');
  196. this.$refs.formBoxRef.scrollTop = this.$refs.formBoxRef.scrollHeight
  197. })
  198. }else{
  199. // console.log(this.$refs.edbFormDataListRef.fields,'this.$refs.edbFormDataListRef.fields');
  200. let errorElDom = this.$refs.edbFormDataListRef.fields.filter((item) => {
  201. return item.validateState === 'error';
  202. });
  203. let errorOffsetTops = errorElDom.map((item) => {
  204. return item.$el
  205. })
  206. // 滚动到指定节点
  207. errorOffsetTops[0].scrollIntoView({
  208. // 值有start,center,end,nearest
  209. block: 'start'
  210. })
  211. }
  212. })
  213. },
  214. delEdbItem(index){
  215. this.edbForm.edbDataList.splice(index,1)
  216. }
  217. },
  218. }
  219. </script>
  220. <style lang="scss" scoped>
  221. .dialog-main {
  222. padding: 0 35px;
  223. .form-box{
  224. max-height: 450px;
  225. overflow-y: auto;
  226. overflow-x: hidden;
  227. scroll-behavior: smooth;
  228. }
  229. .add-box{
  230. display: inline-flex;
  231. align-items: center;
  232. cursor: pointer;
  233. margin-top: 10px;
  234. img{
  235. height: 18px;
  236. width: 18px;
  237. margin-right: 7px;
  238. }
  239. span{
  240. font-size: 14px;
  241. color: #0052D9;
  242. }
  243. }
  244. .row{
  245. .title-col{
  246. color: #333333;
  247. }
  248. .edb-col{
  249. width: 250px;
  250. }
  251. .classify-col{
  252. width: 382px;
  253. }
  254. img{
  255. height: 18px;
  256. width: 18px;
  257. margin: 10px 0 0 8px;
  258. cursor: pointer;
  259. }
  260. }
  261. }
  262. .dia-bot {
  263. margin: 52px 0 30px;
  264. display: flex;
  265. justify-content: center;
  266. }
  267. </style>
  268. <style lang="scss">
  269. .form-box{
  270. .el-form-item{
  271. margin-bottom: 18px;
  272. }
  273. }
  274. .col{
  275. .el-input{
  276. width: 100%;
  277. height: 38px;
  278. .el-input__inner{
  279. height: 38px;
  280. }
  281. }
  282. .classify-cascader{
  283. min-width: 100%;
  284. }
  285. }
  286. </style>