applyApprovalDialog.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <script setup>
  2. import { ref,nextTick } from 'vue'
  3. import {etaTrialInterence}from '@/api/modules/crmApi.js';
  4. import { ElMessage } from 'element-plus'
  5. import { ApprovalStatus,applyApprovalList } from '../use-config'
  6. const props = defineProps({
  7. isApplyApprovalDialogShow: {
  8. type: Boolean
  9. },
  10. applyInfo: {
  11. type: Object,
  12. default: () => {}
  13. }
  14. })
  15. const emit = defineEmits([
  16. 'approved',
  17. 'close'
  18. ])
  19. const columnList = applyApprovalList//表格列
  20. const tableLoading = ref(false)
  21. const tableData = ref([])
  22. function getTableData(){
  23. tableLoading.value = true
  24. tableData.value = props.applyInfo.applyData
  25. nextTick(()=>{
  26. tableLoading.value=false
  27. })
  28. }
  29. const rejectReason = ref('')//驳回理由
  30. const applyStatus = ref(1)//审批状态
  31. async function handleApprove(){
  32. //提交这条审批
  33. let res = null
  34. if(applyStatus.value===1){
  35. res = await etaTrialInterence.agreeApply({
  36. ApprovalId:tableData.value[0].ApprovalId
  37. })
  38. }else{
  39. if(!rejectReason.value.length){
  40. ElMessage.warning('请填写驳回理由')
  41. return
  42. }
  43. res = await etaTrialInterence.rejectApply({
  44. ApprovalId:tableData.value[0].ApprovalId,
  45. RejectReason:rejectReason.value
  46. })
  47. }
  48. if(res.Ret!==200) return
  49. ElMessage.success(applyStatus.value===1?'通过成功':'驳回成功')
  50. emit('approved')
  51. closeDialog()
  52. }
  53. function closeDialog(){
  54. //清空数据什么的
  55. applyStatus.value=1
  56. rejectReason.value=''
  57. emit("close");
  58. }
  59. </script>
  60. <template>
  61. <!-- 申请账号审批/申请启用审批 弹窗 -->
  62. <div class="apply-approval-dialog">
  63. <el-dialog
  64. :model-value="isApplyApprovalDialogShow"
  65. :close-on-click-modal="false"
  66. :modal-append-to-body="false"
  67. :title="`申请${applyInfo.applyType===0?'启用':'账号'}审批`"
  68. @close="closeDialog"
  69. width="889px"
  70. v-dialogDrag
  71. center
  72. >
  73. <div class="dialog-container">
  74. <div class="table-wrap">
  75. <el-table :data="tableData" border v-loading="tableLoading">
  76. <el-table-column v-for="column in columnList" :key="column.label"
  77. align="center"
  78. :prop="column.key"
  79. :label="column.label"
  80. :min-width="column.minWidth"
  81. />
  82. </el-table>
  83. </div>
  84. <div class="apply-reason" v-if="applyInfo.applyType===0">
  85. <p>申请理由</p>
  86. <textarea
  87. v-model="applyInfo.applyData[0].ApplyReasons"
  88. disabled
  89. :rows="3"
  90. />
  91. </div>
  92. <div class="apply-form">
  93. <div class="apply-status">
  94. <span>审批状态</span>
  95. <el-radio-group v-model="applyStatus">
  96. <el-radio :label="1">通过</el-radio>
  97. <el-radio :label="2" class="color-hint">驳回</el-radio>
  98. </el-radio-group>
  99. </div>
  100. <div class="reject-reason" v-if="applyStatus===2">
  101. <span>驳回理由</span>
  102. <textarea
  103. v-model="rejectReason"
  104. placeholder="请输入驳回理由"
  105. :rows="3"
  106. />
  107. </div>
  108. </div>
  109. </div>
  110. <div class="foot-container">
  111. <el-button type="primary" @click="handleApprove">确 定</el-button>
  112. <el-button @click="closeDialog">取 消</el-button>
  113. </div>
  114. </el-dialog>
  115. </div>
  116. </template>
  117. <style lang="scss">
  118. </style>
  119. <style scoped lang="scss">
  120. .apply-approval-dialog{
  121. .dialog-container{
  122. /* .table-wrap{} */
  123. .apply-reason{
  124. margin-top:30px;
  125. padding-bottom:30px;
  126. border-bottom: 1px dashed #DCDFE6;
  127. }
  128. .apply-form{
  129. margin-top:30px;
  130. /* .apply-status{} */
  131. .reject-reason{
  132. margin-top:30px;
  133. }
  134. }
  135. textarea{
  136. width:100%;
  137. margin-top: 10px;
  138. padding:10px;
  139. border-radius: 4px;
  140. box-sizing: border-box;
  141. border-color: #DCDFE6;
  142. }
  143. }
  144. .foot-container{
  145. text-align: center;
  146. padding-bottom: 40px;
  147. margin-top: 60px;
  148. }
  149. }
  150. .apply-status{
  151. .el-radio{
  152. //更改单选框的样式
  153. :deep(.el-radio__inner){
  154. background: transparent;
  155. &::after{
  156. width:6px;
  157. height:6px;
  158. background-color: #409EFF;
  159. }
  160. }
  161. }
  162. }
  163. .color-hint{
  164. //更改驳回的样式
  165. &.is-checked{
  166. .el-radio__inner{
  167. border-color: #C54322;
  168. &::after{
  169. background-color: #C54322;
  170. }
  171. }
  172. .el-radio__input{
  173. &.is-checked{//我真服了
  174. +.el-radio__label{
  175. color: #C54322;
  176. }
  177. }
  178. }
  179. }
  180. }
  181. </style>