clickNumberDetailDia.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <div>
  3. <el-dialog title="点击量详情" append-to-body width="800px" top="10vh"
  4. :visible.sync="visible" @closed="closeDia" :close-on-click-modal="false">
  5. <div style="padding:10px 20px 35px 20px;">
  6. <div style="display:flex;justify-content:space-between;margin-bottom:20px;">
  7. <p class="custom-title">{{name}}</p>
  8. <div>
  9. <el-select
  10. v-model="params.ClickType"
  11. placeholder="请选择所属模块"
  12. @change="handleClickTypeChange"
  13. clearable
  14. style="width:180px"
  15. v-if="type=='contacts'"
  16. >
  17. <el-option label="英文研报" :value="0"></el-option>
  18. <el-option label="线上路演" :value="1"></el-option>
  19. </el-select>
  20. <el-cascader
  21. v-model="varietyVal"
  22. :options="varietyOpt"
  23. collapse-tags
  24. clearable
  25. :props="{
  26. multiple:true,
  27. value:'EnPermissionId',
  28. label:'EnPermissionName',
  29. children:'Child'
  30. }"
  31. placeholder="请选择品种"
  32. @change="handleChangeVariety"
  33. style="width:220px"
  34. class="bg-input"
  35. />
  36. </div>
  37. </div>
  38. <el-table :data="dataList" border @sort-change="clickNumSortChange" v-loading="showLoading" element-loading-text="加载中">
  39. <!-- 客户点击量 - 联系人姓名 -->
  40. <el-table-column label="联系人姓名" align="center" width="120" prop="UserName" v-if="type=='customer'">
  41. <template slot-scope="{row}">
  42. {{row.UserName}}
  43. </template>
  44. </el-table-column>
  45. <!-- 客户点击量 - 邮箱地址 -->
  46. <el-table-column label="邮箱地址" align="center" prop="Email" v-if="type=='customer'">
  47. <template slot-scope="{row}">
  48. {{row.Email}}
  49. </template>
  50. </el-table-column>
  51. <!-- 客户点击量 - 报告标题 -->
  52. <el-table-column label="标题" align="center" prop="ReportTitle" v-if="type=='contacts'">
  53. <template slot-scope="{row}">
  54. {{row.ReportTitle}}
  55. </template>
  56. </el-table-column>
  57. <el-table-column label="分类" align="center" prop="ReportType" v-if="type=='contacts'">
  58. <template slot-scope="{row}">
  59. {{row.ReportType}}
  60. </template>
  61. </el-table-column>
  62. <el-table-column label="所属模块" align="center" prop="ClickType" v-if="type=='contacts'">
  63. <template slot-scope="{row}">
  64. {{row.ClickType?'线上路演':'英文研报'}}
  65. </template>
  66. </el-table-column>
  67. <el-table-column label="点击次数" align="center" width="120" sortable="custom"
  68. prop="ViewTotal">
  69. <template slot-scope="{row}">
  70. {{row.ViewTotal}}
  71. </template>
  72. </el-table-column>
  73. <el-table-column label="最近点击时间" align="center" width="160" sortable="custom"
  74. prop="LastViewTime">
  75. <template slot-scope="{row}">
  76. {{row.LastViewTime}}
  77. </template>
  78. </el-table-column>
  79. </el-table>
  80. <!-- 页数选择器 -->
  81. <m-page
  82. v-show="total!=0"
  83. style="float: none;text-align: right;margin-top: 30px;"
  84. :page_no="params.CurrentIndex"
  85. :pageSize="params.PageSize"
  86. :total="total"
  87. @handleCurrentChange="pageChange"
  88. />
  89. </div>
  90. </el-dialog>
  91. </div>
  92. </template>
  93. <script>
  94. import mPage from '@/components/mPage.vue';
  95. import { customInterence,reportVarietyENInterence } from '@/api/api.js'
  96. export default {
  97. name:"clickNumberDetailDia",
  98. components:{mPage},
  99. data() {
  100. this.sortParamArray = new Map([["ViewTotal",1],["LastViewTime",2]])
  101. return {
  102. dataList:[],
  103. params:{
  104. CurrentIndex:1,
  105. PageSize:10,
  106. //客户Id
  107. CompanyId:0,
  108. // 联系人Id
  109. EmailId:0,
  110. SortParam:"",
  111. SortType:"",
  112. ClickType:''
  113. },
  114. total:0,
  115. showLoading:false,
  116. apiName:"",
  117. //品种筛选
  118. varietyVal:[],
  119. varietyOpt:[],
  120. }
  121. },
  122. props:{
  123. visible:{
  124. type:Boolean,
  125. required:true
  126. },
  127. name:{
  128. type:String,
  129. required:true
  130. },
  131. id:{
  132. type:Number,
  133. required:true
  134. },
  135. type:{
  136. type:String,
  137. default:"customer" // customer-客户 contacts-联系人
  138. }
  139. },
  140. watch:{
  141. visible(newVal){
  142. if(!newVal) return
  143. this.showLoading=true
  144. this.params={
  145. CurrentIndex:1,
  146. PageSize:10,
  147. CompanyId:this.id,
  148. EmailId:this.id,
  149. SortParam:"",
  150. SortType:"",
  151. ClickType:''
  152. },
  153. this.apiName=this.type == 'customer'?"customEnHitNumber":"contactsEnHitNumber"
  154. this.varietyVal=[]
  155. this.getList()
  156. this.getENReportVarietyOpts()
  157. }
  158. },
  159. methods: {
  160. // 获取英文品种权限数据
  161. getENReportVarietyOpts(){
  162. reportVarietyENInterence.filterVarietyOpts({}).then(res=>{
  163. this.varietyOpt=res
  164. })
  165. },
  166. handleChangeVariety(){
  167. this.params.CurrentIndex=1
  168. this.getList()
  169. },
  170. getList(){
  171. const arr=[]
  172. this.varietyVal&&this.varietyVal.forEach(_e => {
  173. arr.push(_e[1])
  174. });
  175. customInterence[this.apiName]({...this.params,EnPermissionIds:arr.join(',')}).then(res=>{
  176. // console.log(res);
  177. if(res.Ret == 200){
  178. this.dataList = res.Data.List || []
  179. this.total = res.Data.Paging.Totals
  180. this.showLoading=false
  181. }
  182. })
  183. },
  184. //切换页码
  185. pageChange(page_no){
  186. this.params.CurrentIndex=page_no
  187. this.getList()
  188. },
  189. // 排序
  190. clickNumSortChange({prop,order}){
  191. this.params.SortParam=this.sortParamArray.get(prop)
  192. this.params.SortType=order=="ascending"?2:order=="descending"?1:0
  193. this.getList()
  194. },
  195. // 所属模块改变
  196. handleClickTypeChange(){
  197. this.params.CurrentIndex=1
  198. this.getList()
  199. },
  200. closeDia(){
  201. this.$emit("update:visible",false)
  202. },
  203. },
  204. }
  205. </script>
  206. <style lang="scss">
  207. .bg-input{
  208. .el-input{
  209. width: 100% !important;
  210. }
  211. }
  212. </style>
  213. <style lang="scss" scoped>
  214. .custom-title{
  215. margin-bottom: 20px;
  216. font-size: 14px;
  217. font-weight: 400;
  218. color: #000000;
  219. }
  220. </style>