XpRecycleBinModal.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <a-modal
  3. :width="1200"
  4. :title="title"
  5. :visible="visible"
  6. :destroyOnClose="true"
  7. @cancel="handleCancel"
  8. cancelText="关闭"
  9. :okButtonProps="{style:{display:'none'}}">
  10. <a-form-model layout="inline" @keyup.enter.native="searchQuery" style="margin-bottom:15px">
  11. <a-form-model-item>
  12. <a-input placeholder="邮箱/姓名" v-model="queryParam.searchText"></a-input>
  13. </a-form-model-item>
  14. <a-form-model-item>
  15. <a-button type="primary" @click="searchQuery">查询</a-button>
  16. <a-button @click="searchReset" style="margin-left:8px">重置</a-button>
  17. </a-form-model-item>
  18. </a-form-model>
  19. <a-table
  20. ref="table"
  21. size="middle"
  22. :columns="columns"
  23. :loading="loading"
  24. :dataSource="dataSource"
  25. >
  26. <!-- 显示头像 -->
  27. <template slot="avatarslot" slot-scope="text, record, index">
  28. <div class="anty-img-wrap">
  29. <a-avatar shape="square" :src="url.getAvatar(record.avatar)" icon="user"/>
  30. </div>
  31. </template>
  32. <div slot="contactSlot" slot-scope="text, record">
  33. <a-popover>
  34. <template slot="content">
  35. {{text}}
  36. </template>
  37. <div style="width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis">{{text}}</div>
  38. </a-popover>
  39. </div>
  40. <span slot="action" slot-scope="text, record">
  41. <a @click="enquiryDetail(record)"> 详情</a>
  42. </span>
  43. </a-table>
  44. <!--询盘详情-->
  45. <enquiry-detail ref="enquiryDetail"></enquiry-detail>
  46. </a-modal>
  47. </template>
  48. <script>
  49. import { putAction, deleteAction, postAction, getAction } from '@/api/manage'
  50. import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  51. import enquiryDetail from '@views/adweb/enquiry/modules/enquiryDetail'
  52. export default {
  53. name: 'XpRecycleBinModal',
  54. mixins: [JeecgListMixin],
  55. components:{enquiryDetail},
  56. data() {
  57. return {
  58. title: '',
  59. loading: false,
  60. innerVisible: false,
  61. dataSource: [],
  62. visible:false,
  63. columns: [],
  64. url: {
  65. list: '/adweb/adwebEnquiry/getWastedEnquiry',
  66. },
  67. disableMixinCreated:true,
  68. email:'',
  69. type:'',
  70. siteId:'',
  71. }
  72. },
  73. methods: {
  74. init(email,type,siteId){
  75. let that = this
  76. that.columns = [
  77. { title: '站点名称', align: 'left', dataIndex: 'siteName', scopedSlots: { customRender: 'contactSlot' }},
  78. { title: '姓名', align: 'left', dataIndex: 'contact', scopedSlots: { customRender: 'contactSlot' }},
  79. { title: '邮箱', align: 'left', dataIndex: 'fromEmail', scopedSlots: { customRender: 'contactSlot' } },
  80. { title: '电话', align: 'left', dataIndex: 'phone' },
  81. { title: '询盘时间', align: 'left', dataIndex: 'recordCtime' },
  82. { title: '操作', align: 'center', dataIndex: 'action', scopedSlots: { customRender: 'action' } }
  83. ]
  84. that.email = email
  85. that.type = type
  86. that.siteId = siteId
  87. that.loadData(email,type,siteId);
  88. that.visible = true
  89. },
  90. //询盘详情
  91. enquiryDetail(record){
  92. this.$nextTick(() => {
  93. this.$refs.enquiryDetail.init(record)
  94. })
  95. },
  96. searchQuery() {
  97. this.loadData(this.email,this.type,this.siteId);
  98. },
  99. searchReset() {
  100. this.queryParam = {}
  101. this.loadData(this.email,this.type,this.siteId);
  102. },
  103. handleCancel() {
  104. this.queryParam = {}
  105. this.visible = false
  106. },
  107. loadData(email,type,siteId) {
  108. if(!this.url.list){
  109. this.$message.error("请设置url.list属性!")
  110. return
  111. }
  112. var params = this.getQueryParams();//查询条件
  113. this.loading = true;
  114. params.email = email;
  115. params.type = type;
  116. params.siteId = siteId;
  117. params.wasteEnquiryType = 'email';
  118. getAction(this.url.list, params).then((res) => {
  119. if (res.success) {
  120. this.dataSource = res.result;
  121. }
  122. if(res.code===510){
  123. this.$message.warning(res.message)
  124. }
  125. this.loading = false;
  126. })
  127. },
  128. }
  129. }
  130. </script>
  131. <style lang="less" scoped></style>