XpRecycleBinModal.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. ip:'',
  69. siteId:''
  70. }
  71. },
  72. methods: {
  73. init(ip,siteId){
  74. let that = this
  75. that.columns = [
  76. { title: '站点名称', align: 'left', dataIndex: 'siteName',scopedSlots: { customRender: 'contactSlot' }},
  77. { title: '姓名', align: 'left', dataIndex: 'contact', scopedSlots: { customRender: 'contactSlot' }},
  78. { title: '邮箱', align: 'left', dataIndex: 'fromEmail', scopedSlots: { customRender: 'contactSlot' } },
  79. { title: '电话', align: 'left', dataIndex: 'phone' },
  80. { title: '询盘时间', align: 'left', dataIndex: 'recordCtime' },
  81. { title: '操作', align: 'center', dataIndex: 'action', scopedSlots: { customRender: 'action' } }
  82. ]
  83. that.ip = ip;
  84. that.siteId = siteId;
  85. that.loadData(ip,siteId);
  86. console.log(ip)
  87. that.visible = true
  88. },
  89. //询盘详情
  90. enquiryDetail(record){
  91. this.$nextTick(() => {
  92. this.$refs.enquiryDetail.init(record)
  93. })
  94. },
  95. searchQuery() {
  96. this.loadData(this.ip,this.siteId);
  97. },
  98. searchReset() {
  99. this.queryParam = {}
  100. this.loadData(this.ip,this.siteId);
  101. },
  102. handleCancel() {
  103. this.queryParam = {}
  104. this.visible = false
  105. },
  106. loadData(ip,siteId) {
  107. if(!this.url.list){
  108. this.$message.error("请设置url.list属性!")
  109. return
  110. }
  111. var params = this.getQueryParams();//查询条件
  112. this.loading = true;
  113. params.ip = ip;
  114. params.siteId = siteId;
  115. params.wasteEnquiryType = 'ip';
  116. getAction(this.url.list, params).then((res) => {
  117. if (res.success) {
  118. this.dataSource = res.result;
  119. }
  120. if(res.code===510){
  121. this.$message.warning(res.message)
  122. }
  123. this.loading = false;
  124. })
  125. },
  126. }
  127. }
  128. </script>
  129. <style lang="less" scoped></style>