enquiryDetail.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <template>
  2. <a-modal
  3. :title="title"
  4. :width="width"
  5. v-model:open="modalVisible"
  6. centered
  7. :closable="true"
  8. :keyboard="false"
  9. :maskClosable="false"
  10. >
  11. <template slot="footer">
  12. <a-popconfirm
  13. title="您确定要删除这个询盘吗"
  14. ok-text="是"
  15. cancel-text="否"
  16. @confirm="handleDel"
  17. v-if="showDelBtn"
  18. >
  19. <a-button>删除</a-button>
  20. </a-popconfirm>
  21. <a-button type="primary" @click="handleCancel">关闭</a-button>
  22. </template>
  23. <div class="wrap">
  24. <a-spin :spinning="spinning" tip="正在修改询盘分类">
  25. <p><span>咨询时间:</span>{{ filter_Null_format(record.recordCtime) }}</p>
  26. <p><span>公司:</span>{{ filter_Null_format(record.formCompany) }}</p>
  27. <p><span>姓名:</span>{{ filter_Null_format(record.contact)}}</p>
  28. <p><span>邮箱:</span><a :href="'mailto:'+record.fromEmail">{{filter_Null_format(record.fromEmail)}}</a></p>
  29. <p><span>电话:</span>{{ filter_Null_format(record.phone)}}</p>
  30. <p><span>whatsApp:</span>{{filter_Null_format(record.whatsApp)}}</p>
  31. <p><span>客户IP:</span>{{ filter_Null_format(record.customerIp) }}</p>
  32. <p style="display: none"><span>来源IP:</span>{{ filter_Null_format(record.fromIp) }}</p>
  33. <p><span>来源国家/地区:</span>{{ filter_Null_format(record.countryName) }}</p>
  34. <template v-if="record.cartItems != null">
  35. <p><span>感兴趣的产品:</span>
  36. <div class="product-list">
  37. <template v-for="item in record.cartItems">
  38. 数量:{{ item.quantity }}, 产品: <a :href="item.productLink" target="_blank">{{ item.productTitle }}</a><br/>
  39. </template>
  40. </div>
  41. </p>
  42. </template>
  43. <p><span>来源页:</span>
  44. <template v-if="!record.fromPage">-</template>
  45. <template v-else-if="record.fromPage.indexOf('http') < 0">-</template>
  46. <template v-else-if="record.fromPage.indexOf('http') === 0">
  47. <template v-if="record.fromPage.lastIndexOf('/') <= 7">
  48. <a v-if="edition === 1" :href="record.fromPage" target="_blank"
  49. style="text-decoration: underline">Home</a>
  50. <span v-else>Home</span>
  51. </template>
  52. <template v-else>
  53. <a v-if="edition === 1" :href="record.fromPage" target="_blank"
  54. style="text-decoration: underline">{{ record.fromPage.substring(record.fromPage.lastIndexOf('/') + 1) }}</a>
  55. <span v-else>{{ record.fromPage.substring(record.fromPage.lastIndexOf('/') + 1) }}</span>
  56. </template>
  57. </template>
  58. <template v-else-if="record.fromPage.indexOf('http') > 0">
  59. <a v-if="edition === 1" :href="record.fromPage.substring(record.fromPage.indexOf('http'))" target="_blank"
  60. style="text-decoration: underline">{{ record.fromPage.substring(0, record.fromPage.indexOf('http')) }}</a>
  61. <span v-else>{{ record.fromPage.substring(0, record.fromPage.indexOf('http')) }}</span>
  62. </template>
  63. <template v-else>-</template>
  64. </p>
  65. <p v-if="userEffectiveOption != undefined"><span>询盘分类:</span>
  66. <a-radio-group v-model:value="modelUserEffective" @change="onChangeUserEffect">
  67. <a-radio v-for="item in userEffectiveOption" :key="item.value" :value="parseInt(item.value)" >
  68. {{item.label}}
  69. </a-radio>
  70. </a-radio-group>
  71. </p>
  72. <p class="translate">
  73. <span>详细内容:</span>
  74. <a-spin tips="翻译中" :spinning="translateStatus">
  75. <span style="flex: auto;" >
  76. <div v-html="record.context" v-if="translateContent == ''">
  77. </div>
  78. <div v-html="translateContent">
  79. </div>
  80. <!-- {{translateContent == '' ? record.context : translateContent}} -->
  81. <i @click="enquiryTransContent">
  82. <img v-if="translateContent == '' " src="../../.././../assets/enquiry/translate1.svg" />
  83. </i>
  84. <i @click="backToEcglish">
  85. <img v-if="translateContent != '' " src="../../.././../assets/enquiry/translate2.svg" />
  86. </i>
  87. </span>
  88. </a-spin>
  89. </p>
  90. <p v-if="record.userEffective == 0 && (userRole.indexOf('admin') > -1 || userRole.indexOf('adweb_admin') > -1 || userRole.indexOf('adweb_seo_manager') > -1 || userRole.indexOf('adweb_site_manager') > -1)"><span>疑似原因:</span>{{ filter_Null_format(record.effectiveReason) }}</p>
  91. <div class="info" v-if="record.specialFieldList && record.specialFieldList.length > 0">
  92. <a-descriptions title="扩展信息" bordered :column=1 class="slef_desc">
  93. <a-descriptions-item :label="item.field" v-for="item in record.specialFieldList">
  94. {{ filter_Null_format(item.value) }}
  95. </a-descriptions-item>
  96. </a-descriptions>
  97. </div>
  98. </a-spin>
  99. </div>
  100. <a-modal
  101. :title="wasteEnquiryTitle"
  102. :width="width"
  103. v-model="wasteEnquiryVisible"
  104. centered
  105. :closable="true"
  106. :keyboard="false"
  107. :maskClosable="false"
  108. @cancel="wasteEnquiryCancel"
  109. >
  110. <template slot="footer">
  111. <a-button @click="wasteEnquiryCancel">关闭</a-button>
  112. <a-button type="primary" @click="wasteEnquiryOk">确认</a-button>
  113. </template>
  114. <div class="wrap">
  115. <div class="ant-alert ant-alert-info" style="color: #e74c3c;padding: 5px 8px;">
  116. <span>&nbsp&nbsp&nbsp&nbsp当垃圾询盘类型选择确认后,对应类型的内容便会加入对应黑名单中,同时获取询盘时会把此内容的询盘当作垃圾询盘处理,请谨慎操作。</span>
  117. </div>
  118. <p><span>垃圾询盘类型:</span>
  119. <a-radio-group v-model="wasteEnquiryType" @change="onChangeWasteEnquiry">
  120. <a-radio v-for="item in wasteEnquiryOption" :key="item.value" :value="item.value" >
  121. {{item.label}}
  122. </a-radio>
  123. </a-radio-group>
  124. </p>
  125. <p v-if="wasteEnquiryType == 'keyword'">
  126. <span>关键词:</span>
  127. <span style="flex: auto">
  128. 详细内容:{{record.context}}
  129. <i>
  130. <a-textarea v-model="wasteEnquirySeason" :placeholder="wasteEnquiryPlaceholder" :auto-size="{ minRows: 3 }" />
  131. </i>
  132. </span>
  133. </p>
  134. <p v-if="wasteEnquiryType == 'other'">
  135. <span>原因:</span>
  136. <a-textarea v-model="wasteEnquirySeason" :placeholder="wasteEnquiryPlaceholder" :auto-size="{ minRows: 3 }" />
  137. </p>
  138. </div>
  139. </a-modal>
  140. </a-modal>
  141. </template>
  142. <script>
  143. import {getAction, postAction, postActionForm} from '/@/api/manage/manage'
  144. import Qs from 'qs'
  145. import {useUserStore} from "@/store/modules/user";
  146. export default {
  147. name: 'enquiryDetail',
  148. data () {
  149. return {
  150. title:"询盘详情",
  151. width:900,
  152. modalVisible: false,
  153. record:{},
  154. spinning:false,
  155. value:1,
  156. translateStatus:false,
  157. translateContent:'',
  158. modelUserEffective:2,
  159. edition: 1,
  160. userRole: '',
  161. wasteEnquiryTitle:"垃圾询盘类型",
  162. wasteEnquiryVisible: false,
  163. wasteEnquiryOption:[{label:'关键词',value:'keyword'},{label:'邮箱',value:'email'},{label:'IP',value:'ip'},{label:'其他',value:'other'}],
  164. wasteEnquirySeason:'',
  165. wasteEnquiryType:'',
  166. wasteEnquiryPlaceholder:''
  167. }
  168. },
  169. props:{
  170. userEffectiveOption: Array,
  171. showDelBtn:{
  172. default: false,
  173. type: Boolean,
  174. //目前只支持询盘列表通过询盘详情删除询盘,其他地方不展示删除按钮
  175. }
  176. },
  177. mounted() {
  178. this.userRole = useUserStore().roleList;
  179. },
  180. methods: {
  181. init (record) {
  182. this.translateContent = ''
  183. this.modalVisible=true
  184. this.record = record
  185. this.modelUserEffective = record.userEffective
  186. record.cartItems = JSON.parse(record.cartItems);
  187. },
  188. filter_Null_format(value) {
  189. if(value === '' || value === null || value === undefined){
  190. return '--'
  191. }else{
  192. return value
  193. }
  194. },
  195. handleCancel () {
  196. this.$emit('close');
  197. this.translateContent = ''
  198. this.modalVisible = false;
  199. },
  200. async handleDel() {
  201. //目前该方法只在询盘列表使用
  202. await getAction('/adweb/adwebEnquiry/delBatch', {id: this.record.id}).then((res) => {
  203. if (res.success) {
  204. this.$message.success(`删除询盘成功!`)
  205. } else {
  206. if (res.code == 403) {
  207. this.$message.warning(res.message)
  208. } else {
  209. this.$message.error('删除失败!')
  210. }
  211. }
  212. })
  213. //当删除之后,调用父组件中的重新刷新
  214. this.$emit('reload');
  215. this.modalVisible = false;
  216. },
  217. onChangeUserEffect(e){
  218. let that = this
  219. if(e.target.value == '0'){
  220. that.wasteEnquiryVisible = true
  221. }else{
  222. that.submitUserEffect();
  223. }
  224. },
  225. //翻译
  226. enquiryTransContent(r) {
  227. let that = this;
  228. that.translateStatus = true;
  229. // 创建一个表单数据
  230. const formData = new FormData();
  231. formData.append('id', that.record.id);
  232. formData.append('query', that.translateContent === '' ? that.record.context : that.translateContent);
  233. let recordId = that.record.id;
  234. postActionForm('/adweb/adwebEnquiry/enquiryTrans', formData, 1000 * 60 * 2).then(function(res) {
  235. that.translateStatus = false
  236. if (res.code === 200) {
  237. let beforeList = res.result;
  238. if(beforeList == null){
  239. that.$message.error("该内容暂不支持翻译")
  240. return;
  241. }
  242. if (beforeList.length > 0) {
  243. that.translateContent = beforeList
  244. }
  245. } else {
  246. that.$message.error("该内容暂不支持翻译")
  247. }
  248. }).catch(function(err) {
  249. console.log(err)
  250. })
  251. },
  252. backToEcglish(){
  253. this.translateContent = ''
  254. },
  255. wasteEnquiryOk(){
  256. let that = this;
  257. if(that.wasteEnquiryType == 'keyword'){
  258. let season = that.wasteEnquirySeason.trim();
  259. if(season == null || season == ""){
  260. that.$message.warning("关键词不能为空")
  261. that.wasteEnquirySeason = null;
  262. return;
  263. }
  264. }
  265. if(that.wasteEnquiryType == 'other'){
  266. let season = that.wasteEnquirySeason.trim();
  267. if(season == null || season == ""){
  268. that.$message.warning("原因不能为空")
  269. that.wasteEnquirySeason = null;
  270. return;
  271. }
  272. }
  273. that.wasteEnquiryVisible = false;
  274. that.submitUserEffect();
  275. },
  276. wasteEnquiryCancel(){
  277. let that = this;
  278. that.wasteEnquiryVisible = false;
  279. that.modelUserEffective = that.record.userEffective;
  280. that.wasteEnquiryType = "";
  281. that.wasteEnquirySeason = "";
  282. that.wasteEnquiryPlaceholder = "";
  283. },
  284. onChangeWasteEnquiry(e){
  285. let that = this;
  286. that.wasteEnquirySeason = "";
  287. that.wasteEnquiryType = e.target.value;
  288. if(that.wasteEnquiryType == 'email'){
  289. that.wasteEnquirySeason = that.record.fromEmail;
  290. }
  291. if(that.wasteEnquiryType == 'ip'){
  292. that.wasteEnquirySeason = that.record.customerIp;
  293. }
  294. if(that.wasteEnquiryType == 'keyword'){
  295. that.wasteEnquiryPlaceholder = "请输入关键词";
  296. }
  297. if(that.wasteEnquiryType == 'other'){
  298. that.wasteEnquiryPlaceholder = "请输入原因";
  299. }
  300. },
  301. submitUserEffect(){
  302. let that = this;
  303. this.spinning = true
  304. let d = {
  305. id: that.record.id,
  306. siteId: that.record.siteId,
  307. siteCode: that.record.siteCode,
  308. userEffective: that.modelUserEffective,
  309. wasteEnquiryType: that.wasteEnquiryType,
  310. wasteEnquirySeason: that.wasteEnquirySeason
  311. }
  312. postAction('/adweb/adwebEnquiry/update/user/effective', Qs.stringify(d)).then(function(res) {
  313. that.spinning = false
  314. if (res.code == 200) {
  315. that.$message.success('分类修改成功!');
  316. that.$emit('ok')
  317. that.record.userEffective = that.modelUserEffective
  318. if(that.wasteEnquiryType == "ip"){
  319. that.record.effectiveReason = "人工操作-ip-" + that.wasteEnquirySeason
  320. }else if(that.wasteEnquiryType == "email"){
  321. that.record.effectiveReason = "人工操作-邮箱-" + that.wasteEnquirySeason
  322. }else if(that.wasteEnquiryType == "keyword"){
  323. that.record.effectiveReason = "人工操作-关键词-" + that.wasteEnquirySeason
  324. }else if(that.wasteEnquiryType == "other"){
  325. that.record.effectiveReason = "人工操作-其他-" + that.wasteEnquirySeason
  326. }
  327. } else {
  328. if (res.code == 403) {
  329. that.$message.warning(res.message)
  330. } else {
  331. that.$message.error('分类修改失败!')
  332. }
  333. }
  334. }).catch(function(err) {
  335. console.log(err)
  336. }).finally(()=>{
  337. that.wasteEnquiryType = "";
  338. that.wasteEnquirySeason = "";
  339. that.wasteEnquiryPlaceholder = "";
  340. })
  341. }
  342. }
  343. }
  344. </script>
  345. <style lang="less" scoped>
  346. .wrap {
  347. p{
  348. margin-bottom: 10px;
  349. border-bottom: 1px solid #e7e7e7;
  350. padding-bottom: 10px;
  351. display: flex;
  352. color: #000;
  353. &:last-child{
  354. border-bottom: none;
  355. }
  356. span{
  357. color: #000;
  358. flex: 110px 0 0;
  359. }
  360. }
  361. /deep/ .ant-radio-wrapper {
  362. color: rgba(0, 0, 0, 1);
  363. }
  364. .translate{
  365. img{
  366. width: 26px;
  367. cursor: pointer;
  368. }
  369. }
  370. .my-text::first-line {
  371. white-space: pre-line;
  372. position: relative; /* 父元素设置为相对定位 */
  373. }
  374. .child {
  375. position: absolute; /* 子元素设置为绝对定位 */
  376. bottom: 0; /* 将其放置在父元素的底部 */
  377. left: 0; /* 将其放置在父元素的左侧 */
  378. }
  379. }
  380. </style>