addApplyHintDialog.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <script setup>
  2. import { ref,nextTick } from 'vue'
  3. import { ElMessage } from 'element-plus'
  4. import { ApprovalStatus,applyApprovalList } from '../use-config'
  5. const props = defineProps({
  6. isAddApplyHintShow:{//弹窗显示
  7. type:Boolean,
  8. default:false
  9. },
  10. applyInfo:{//申请信息
  11. type:Object,
  12. default:()=>{
  13. return {
  14. applyType:1,//0 账号禁用 1 信息重复
  15. applyData:[]
  16. }
  17. }
  18. }
  19. })
  20. const emit = defineEmits([
  21. 'closeDialog',
  22. 'overBannedList',
  23. 'applyActiveSuccess',
  24. 'close'
  25. ])
  26. const columnList = applyApprovalList
  27. const applyData = ref([])
  28. const dataIndex = ref(0)
  29. const tableLoading = ref(false)
  30. const tableData = ref([])
  31. const hintText = ref('')
  32. function getTableData(){
  33. tableLoading.value = true
  34. //如果是申请启用,则只展示一条数据
  35. if(props.applyInfo.applyType===0){
  36. applyData.value = props.applyInfo.applyData
  37. tableData.value = [applyData.value[0]]
  38. dataIndex.value = 0
  39. }
  40. //如果是申请信息重复,则展示全部数据
  41. else{
  42. tableData.value = props.applyInfo.applyData
  43. dataIndex.value = 0
  44. }
  45. nextTick(()=>{
  46. tableLoading.value=false
  47. })
  48. }
  49. const applyReason = ref('')
  50. async function handleApprove(getNext=true){
  51. if(getNext){
  52. if(!applyReason.value.length){
  53. ElMessage.warning('请输入申请理由')
  54. return
  55. }
  56. const {UserName,CompanyName,Position,Mobile} = applyData.value[dataIndex.value]
  57. //调用申请接口
  58. const res = await etaTrialInterence.applyEnable({
  59. UserName,CompanyName,Position,Mobile,
  60. ApplyReasons:applyReason.value
  61. })
  62. if(res.Ret!==200) return
  63. ElMessage.success('提交成功')
  64. //申请成功 在父页面将该记录删除
  65. emit('applyActiveSuccess',applyData.value[dataIndex.value])
  66. }
  67. applyReason.value=''
  68. getNextTableData()
  69. }
  70. function getNextTableData(){
  71. dataIndex.value++
  72. const length = applyData.value.length
  73. if(length-1>=dataIndex.value){
  74. tableData.value = [applyData.value[dataIndex.value]]
  75. }else{
  76. closeDialog()
  77. }
  78. }
  79. function closeDialog(){
  80. //清空数据什么的
  81. applyReason.value=''
  82. tableData.value=[]
  83. applyData.value=[]
  84. dataIndex.value=0
  85. emit("close");
  86. if(props.applyInfo.applyType===0){
  87. emit('overBannedList')
  88. return
  89. }
  90. if(props.applyInfo.applyType===1){
  91. emit('overRepeatList')
  92. return
  93. }
  94. }
  95. </script>
  96. <template>
  97. <!-- 新增申请 提示弹窗 弹窗 -->
  98. <div class="add-apply-hint-dialog">
  99. <el-dialog
  100. v-if="isAddApplyHintShow"
  101. :model-value="isAddApplyHintShow"
  102. :close-on-click-modal="false"
  103. :modal-append-to-body="false"
  104. title="提示"
  105. @close="handleApprove(false)"
  106. width="889px"
  107. v-dialogDrag
  108. center
  109. >
  110. <div class="dialog-container">
  111. <p class="hint">{{hintText}}</p>
  112. <div class="table-wrap">
  113. <el-table :data="tableData" border v-loading="tableLoading">
  114. <el-table-column v-for="column in columnList" :key="column.label"
  115. align="center"
  116. :prop="column.key"
  117. :label="column.label"
  118. :min-width="column.minWidth"
  119. />
  120. </el-table>
  121. </div>
  122. <div class="apply-reason" v-if="applyInfo.applyType===0">
  123. <p>申请理由</p>
  124. <textarea
  125. placeholder="请输入申请理由"
  126. v-model="applyReason"
  127. :rows="3"
  128. />
  129. </div>
  130. </div>
  131. <div class="foot-container">
  132. <template v-if="applyInfo.applyType===0">
  133. <el-button type="primary" @click="handleApprove">申请启用</el-button>
  134. <el-button @click="handleApprove(false)">取 消</el-button>
  135. </template>
  136. <template v-else>
  137. <el-button type="primary" @click="closeDialog">知道了</el-button>
  138. </template>
  139. </div>
  140. </el-dialog>
  141. </div>
  142. </template>
  143. <style scoped lang="scss">
  144. .add-apply-hint-dialog{
  145. .dialog-container{
  146. .table-wrap{
  147. margin-top:20px;
  148. }
  149. .apply-reason{
  150. margin-top:30px;
  151. }
  152. textarea{
  153. width:100%;
  154. margin-top: 10px;
  155. padding:10px;
  156. border-radius: 4px;
  157. box-sizing: border-box;
  158. border-color: #DCDFE6;
  159. }
  160. }
  161. .foot-container{
  162. text-align: center;
  163. padding-bottom: 40px;
  164. margin-top: 60px;
  165. }
  166. }
  167. </style>