|
@@ -102,10 +102,12 @@ v-if="edition === 1" :href="record.fromPage.substring(record.fromPage.indexOf('h
|
|
|
</div>
|
|
|
</a-spin>
|
|
|
</div>
|
|
|
+
|
|
|
+ <!-- 垃圾询盘原因填写 -->
|
|
|
<a-modal
|
|
|
:title="wasteEnquiryTitle"
|
|
|
:width="width"
|
|
|
- v-model="wasteEnquiryVisible"
|
|
|
+ v-model:open="wasteEnquiryVisible"
|
|
|
centered
|
|
|
:closable="true"
|
|
|
:keyboard="false"
|
|
@@ -122,250 +124,254 @@ v-if="edition === 1" :href="record.fromPage.substring(record.fromPage.indexOf('h
|
|
|
<span>    当垃圾询盘类型选择确认后,对应类型的内容便会加入对应黑名单中,同时获取询盘时会把此内容的询盘当作垃圾询盘处理,请谨慎操作。</span>
|
|
|
</div>
|
|
|
<p><span>垃圾询盘类型:</span>
|
|
|
- <a-radio-group v-model="wasteEnquiryType" @change="onChangeWasteEnquiry">
|
|
|
+ <a-radio-group v-model:value="wasteEnquiryType" @change="onChangeWasteEnquiry">
|
|
|
<a-radio v-for="item in wasteEnquiryOption" :key="item.value" :value="item.value" >
|
|
|
{{item.label}}
|
|
|
</a-radio>
|
|
|
</a-radio-group>
|
|
|
</p>
|
|
|
- <p v-if="wasteEnquiryType == 'keyword'">
|
|
|
+ <p v-if="wasteEnquiryType === 'keyword'">
|
|
|
<span>关键词:</span>
|
|
|
<span style="flex: auto">
|
|
|
详细内容:{{record.context}}
|
|
|
<i>
|
|
|
- <a-textarea v-model="wasteEnquirySeason" :placeholder="wasteEnquiryPlaceholder" :auto-size="{ minRows: 3 }" />
|
|
|
+ <a-textarea v-model:value="wasteEnquirySeason" :placeholder="wasteEnquiryPlaceholder" :auto-size="{ minRows: 3 }" />
|
|
|
</i>
|
|
|
</span>
|
|
|
</p>
|
|
|
- <p v-if="wasteEnquiryType == 'other'">
|
|
|
+ <p v-if="wasteEnquiryType === 'other'">
|
|
|
<span>原因:</span>
|
|
|
- <a-textarea v-model="wasteEnquirySeason" :placeholder="wasteEnquiryPlaceholder" :auto-size="{ minRows: 3 }" />
|
|
|
+ <a-textarea v-model:value="wasteEnquirySeason" :placeholder="wasteEnquiryPlaceholder" :auto-size="{ minRows: 3 }" />
|
|
|
</p>
|
|
|
</div>
|
|
|
</a-modal>
|
|
|
</a-modal>
|
|
|
</template>
|
|
|
|
|
|
-<script>
|
|
|
+<script lang="js">
|
|
|
|
|
|
-import {getAction, postActionForm} from '/@/api/manage/manage'
|
|
|
+ import {getAction, postActionForm} from '/@/api/manage/manage'
|
|
|
|
|
|
-import {useUserStore} from "@/store/modules/user";
|
|
|
+ import {useUserStore} from "@/store/modules/user";
|
|
|
+ import {useMessage} from "@/hooks/web/useMessage";
|
|
|
|
|
|
+ const { createMessage } = useMessage();
|
|
|
|
|
|
-export default {
|
|
|
- name: 'EnquiryDetail',
|
|
|
+ export default {
|
|
|
+ name: 'EnquiryDetail',
|
|
|
|
|
|
- props:{
|
|
|
- userEffectiveOption: Array,
|
|
|
- showDelBtn:{
|
|
|
- default: false,
|
|
|
- type: Boolean,
|
|
|
- //目前只支持询盘列表通过询盘详情删除询盘,其他地方不展示删除按钮
|
|
|
- }
|
|
|
- },
|
|
|
- data () {
|
|
|
- return {
|
|
|
- title:"询盘详情",
|
|
|
- width:900,
|
|
|
- modalVisible: false,
|
|
|
- record:{},
|
|
|
- spinning:false,
|
|
|
- value:1,
|
|
|
- translateStatus:false,
|
|
|
- translateContent:'',
|
|
|
- modelUserEffective:2,
|
|
|
- edition: 1,
|
|
|
- userRole: '',
|
|
|
- wasteEnquiryTitle:"垃圾询盘类型",
|
|
|
- wasteEnquiryVisible: false,
|
|
|
- wasteEnquiryOption:[{label:'关键词',value:'keyword'},{label:'邮箱',value:'email'},{label:'IP',value:'ip'},{label:'其他',value:'other'}],
|
|
|
- wasteEnquirySeason:'',
|
|
|
- wasteEnquiryType:'',
|
|
|
- wasteEnquiryPlaceholder:''
|
|
|
- }
|
|
|
- },
|
|
|
+ props:{
|
|
|
+ userEffectiveOption: Array,
|
|
|
+ showDelBtn:{
|
|
|
+ default: false,
|
|
|
+ type: Boolean,
|
|
|
+ //目前只支持询盘列表通过询盘详情删除询盘,其他地方不展示删除按钮
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ title:"询盘详情",
|
|
|
+ width:900,
|
|
|
+ modalVisible: false,
|
|
|
+ record:{},
|
|
|
+ spinning:false,
|
|
|
+ value:1,
|
|
|
+ translateStatus:false,
|
|
|
+ translateContent:'',
|
|
|
+ modelUserEffective:2,
|
|
|
+ edition: 1,
|
|
|
+ userRole: '',
|
|
|
+ wasteEnquiryTitle:"垃圾询盘类型",
|
|
|
+ wasteEnquiryVisible: false,
|
|
|
+ wasteEnquiryOption:[{label:'关键词',value:'keyword'},{label:'邮箱',value:'email'},{label:'IP',value:'ip'},{label:'其他',value:'other'}],
|
|
|
+ wasteEnquirySeason:'',
|
|
|
+ wasteEnquiryType:'',
|
|
|
+ wasteEnquiryPlaceholder:''
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
- mounted() {
|
|
|
- this.userRole = useUserStore().roleList;
|
|
|
- },
|
|
|
+ mounted() {
|
|
|
+ this.userRole = useUserStore().roleList;
|
|
|
+ },
|
|
|
|
|
|
- methods: {
|
|
|
- init (record) {
|
|
|
- this.translateContent = ''
|
|
|
- this.modalVisible=true
|
|
|
- this.record = record
|
|
|
- this.modelUserEffective = record.userEffective
|
|
|
+ methods: {
|
|
|
+ init (record) {
|
|
|
+ this.translateContent = ''
|
|
|
+ this.modalVisible=true
|
|
|
+ this.record = record
|
|
|
+ this.modelUserEffective = record.userEffective
|
|
|
|
|
|
- record.cartItems = JSON.parse(record.cartItems);
|
|
|
- },
|
|
|
+ record.cartItems = JSON.parse(record.cartItems);
|
|
|
+ },
|
|
|
|
|
|
- filter_Null_format(value) {
|
|
|
+ filter_Null_format(value) {
|
|
|
|
|
|
- if(value === '' || value === null || value === undefined){
|
|
|
- return '--'
|
|
|
- }else{
|
|
|
- return value
|
|
|
- }
|
|
|
- },
|
|
|
+ if(value === '' || value === null || value === undefined){
|
|
|
+ return '--'
|
|
|
+ }else{
|
|
|
+ return value
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
- handleCancel () {
|
|
|
- this.$emit('close');
|
|
|
- this.translateContent = ''
|
|
|
- this.modalVisible = false;
|
|
|
- },
|
|
|
+ handleCancel () {
|
|
|
+ this.$emit('close');
|
|
|
+ this.translateContent = ''
|
|
|
+ this.modalVisible = false;
|
|
|
+ },
|
|
|
|
|
|
- async handleDel() {
|
|
|
- //目前该方法只在询盘列表使用
|
|
|
- await getAction('/adweb/adwebEnquiry/delBatch', {id: this.record.id}).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- this.$message.success(`删除询盘成功!`)
|
|
|
- } else {
|
|
|
- if (res.code == 403) {
|
|
|
- this.$message.warning(res.message)
|
|
|
+ async handleDel() {
|
|
|
+ //目前该方法只在询盘列表使用
|
|
|
+ await getAction('/adweb/adwebEnquiry/delBatch', {id: this.record.id}).then((res) => {
|
|
|
+ if (res.success) {
|
|
|
+ createMessage.success(`删除询盘成功!`)
|
|
|
} else {
|
|
|
- this.$message.error('删除失败!')
|
|
|
+ if (res.code == 403) {
|
|
|
+ createMessage.warning(res.message)
|
|
|
+ } else {
|
|
|
+ createMessage.error('删除失败!')
|
|
|
+ }
|
|
|
}
|
|
|
+ })
|
|
|
+ //当删除之后,调用父组件中的重新刷新
|
|
|
+ this.$emit('reload');
|
|
|
+ this.modalVisible = false;
|
|
|
+ },
|
|
|
+
|
|
|
+ onChangeUserEffect(e){
|
|
|
+ let that = this
|
|
|
+
|
|
|
+ console.log(e.target.value, "e.target.valuee.target.value");
|
|
|
+ if(e.target.value === 0){
|
|
|
+ that.wasteEnquiryVisible = true
|
|
|
+ }else{
|
|
|
+ that.submitUserEffect();
|
|
|
}
|
|
|
- })
|
|
|
- //当删除之后,调用父组件中的重新刷新
|
|
|
- this.$emit('reload');
|
|
|
- this.modalVisible = false;
|
|
|
- },
|
|
|
+ },
|
|
|
|
|
|
- onChangeUserEffect(e){
|
|
|
- let that = this
|
|
|
- if(e.target.value == '0'){
|
|
|
- that.wasteEnquiryVisible = true
|
|
|
- }else{
|
|
|
- that.submitUserEffect();
|
|
|
- }
|
|
|
- },
|
|
|
+ //翻译
|
|
|
+ enquiryTransContent(r) {
|
|
|
+ let that = this;
|
|
|
+ that.translateStatus = true;
|
|
|
+ // 创建一个表单数据
|
|
|
+ const formData = new FormData();
|
|
|
+ formData.append('id', that.record.id);
|
|
|
+ formData.append('query', that.translateContent === '' ? that.record.context : that.translateContent);
|
|
|
|
|
|
- //翻译
|
|
|
- enquiryTransContent(r) {
|
|
|
- let that = this;
|
|
|
- that.translateStatus = true;
|
|
|
- // 创建一个表单数据
|
|
|
- const formData = new FormData();
|
|
|
- formData.append('id', that.record.id);
|
|
|
- formData.append('query', that.translateContent === '' ? that.record.context : that.translateContent);
|
|
|
+ let recordId = that.record.id;
|
|
|
+ postActionForm('/adweb/adwebEnquiry/enquiryTrans', formData, 1000 * 60 * 2).then(function(res) {
|
|
|
+ that.translateStatus = false
|
|
|
+ if (res.code === 200) {
|
|
|
+ let beforeList = res.result;
|
|
|
+ if(beforeList == null){
|
|
|
+ createMessage.error("该内容暂不支持翻译")
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (beforeList.length > 0) {
|
|
|
+ that.translateContent = beforeList
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ createMessage.error("该内容暂不支持翻译")
|
|
|
+ }
|
|
|
+ }).catch(function(err) {
|
|
|
+ console.log(err)
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
- let recordId = that.record.id;
|
|
|
- postActionForm('/adweb/adwebEnquiry/enquiryTrans', formData, 1000 * 60 * 2).then(function(res) {
|
|
|
- that.translateStatus = false
|
|
|
- if (res.code === 200) {
|
|
|
- let beforeList = res.result;
|
|
|
- if(beforeList == null){
|
|
|
- that.$message.error("该内容暂不支持翻译")
|
|
|
+ backToEcglish(){
|
|
|
+ this.translateContent = ''
|
|
|
+ },
|
|
|
+
|
|
|
+ wasteEnquiryOk(){
|
|
|
+ let that = this;
|
|
|
+ if(that.wasteEnquiryType === 'keyword'){
|
|
|
+ let season = that.wasteEnquirySeason.trim();
|
|
|
+ if(season == null || season === ""){
|
|
|
+ createMessage.warning("关键词不能为空")
|
|
|
+ that.wasteEnquirySeason = null;
|
|
|
return;
|
|
|
}
|
|
|
- if (beforeList.length > 0) {
|
|
|
- that.translateContent = beforeList
|
|
|
+ }
|
|
|
+ if(that.wasteEnquiryType === 'other'){
|
|
|
+ let season = that.wasteEnquirySeason.trim();
|
|
|
+ if(season == null || season === ""){
|
|
|
+ createMessage.warning("原因不能为空")
|
|
|
+ that.wasteEnquirySeason = null;
|
|
|
+ return;
|
|
|
}
|
|
|
- } else {
|
|
|
- that.$message.error("该内容暂不支持翻译")
|
|
|
}
|
|
|
- }).catch(function(err) {
|
|
|
- console.log(err)
|
|
|
- })
|
|
|
- },
|
|
|
-
|
|
|
- backToEcglish(){
|
|
|
- this.translateContent = ''
|
|
|
- },
|
|
|
-
|
|
|
- wasteEnquiryOk(){
|
|
|
- let that = this;
|
|
|
- if(that.wasteEnquiryType == 'keyword'){
|
|
|
- let season = that.wasteEnquirySeason.trim();
|
|
|
- if(season == null || season == ""){
|
|
|
- that.$message.warning("关键词不能为空")
|
|
|
- that.wasteEnquirySeason = null;
|
|
|
- return;
|
|
|
+ that.wasteEnquiryVisible = false;
|
|
|
+ that.submitUserEffect();
|
|
|
+ },
|
|
|
+ wasteEnquiryCancel(){
|
|
|
+ let that = this;
|
|
|
+ that.wasteEnquiryVisible = false;
|
|
|
+ that.modelUserEffective = that.record.userEffective;
|
|
|
+ that.wasteEnquiryType = "";
|
|
|
+ that.wasteEnquirySeason = "";
|
|
|
+ that.wasteEnquiryPlaceholder = "";
|
|
|
+ },
|
|
|
+ onChangeWasteEnquiry(e){
|
|
|
+ let that = this;
|
|
|
+ that.wasteEnquirySeason = "";
|
|
|
+ that.wasteEnquiryType = e.target.value;
|
|
|
+ if(that.wasteEnquiryType === 'email'){
|
|
|
+ that.wasteEnquirySeason = that.record.fromEmail;
|
|
|
}
|
|
|
- }
|
|
|
- if(that.wasteEnquiryType == 'other'){
|
|
|
- let season = that.wasteEnquirySeason.trim();
|
|
|
- if(season == null || season == ""){
|
|
|
- that.$message.warning("原因不能为空")
|
|
|
- that.wasteEnquirySeason = null;
|
|
|
- return;
|
|
|
+ if(that.wasteEnquiryType === 'ip'){
|
|
|
+ that.wasteEnquirySeason = that.record.customerIp;
|
|
|
}
|
|
|
- }
|
|
|
- that.wasteEnquiryVisible = false;
|
|
|
- that.submitUserEffect();
|
|
|
- },
|
|
|
- wasteEnquiryCancel(){
|
|
|
- let that = this;
|
|
|
- that.wasteEnquiryVisible = false;
|
|
|
- that.modelUserEffective = that.record.userEffective;
|
|
|
- that.wasteEnquiryType = "";
|
|
|
- that.wasteEnquirySeason = "";
|
|
|
- that.wasteEnquiryPlaceholder = "";
|
|
|
- },
|
|
|
- onChangeWasteEnquiry(e){
|
|
|
- let that = this;
|
|
|
- that.wasteEnquirySeason = "";
|
|
|
- that.wasteEnquiryType = e.target.value;
|
|
|
- if(that.wasteEnquiryType == 'email'){
|
|
|
- that.wasteEnquirySeason = that.record.fromEmail;
|
|
|
- }
|
|
|
- if(that.wasteEnquiryType == 'ip'){
|
|
|
- that.wasteEnquirySeason = that.record.customerIp;
|
|
|
- }
|
|
|
- if(that.wasteEnquiryType == 'keyword'){
|
|
|
- that.wasteEnquiryPlaceholder = "请输入关键词";
|
|
|
- }
|
|
|
- if(that.wasteEnquiryType == 'other'){
|
|
|
- that.wasteEnquiryPlaceholder = "请输入原因";
|
|
|
- }
|
|
|
- },
|
|
|
+ if(that.wasteEnquiryType === 'keyword'){
|
|
|
+ that.wasteEnquiryPlaceholder = "请输入关键词";
|
|
|
+ }
|
|
|
+ if(that.wasteEnquiryType === 'other'){
|
|
|
+ that.wasteEnquiryPlaceholder = "请输入原因";
|
|
|
+ }
|
|
|
+ },
|
|
|
|
|
|
- submitUserEffect(){
|
|
|
- let that = this;
|
|
|
- this.spinning = true
|
|
|
- let d = {
|
|
|
- id: that.record.id,
|
|
|
- siteId: that.record.siteId,
|
|
|
- siteCode: that.record.siteCode,
|
|
|
- userEffective: that.modelUserEffective,
|
|
|
- wasteEnquiryType: that.wasteEnquiryType,
|
|
|
- wasteEnquirySeason: that.wasteEnquirySeason
|
|
|
- }
|
|
|
- postActionForm('/adweb/adwebEnquiry/update/user/effective', d).then(function(res) {
|
|
|
- that.spinning = false
|
|
|
- if (res.code === 200) {
|
|
|
- that.$message.success('分类修改成功!');
|
|
|
- that.$emit('ok')
|
|
|
- that.record.userEffective = that.modelUserEffective
|
|
|
- if(that.wasteEnquiryType === "ip"){
|
|
|
- that.record.effectiveReason = "人工操作-ip-" + that.wasteEnquirySeason
|
|
|
- }else if(that.wasteEnquiryType === "email"){
|
|
|
- that.record.effectiveReason = "人工操作-邮箱-" + that.wasteEnquirySeason
|
|
|
- }else if(that.wasteEnquiryType === "keyword"){
|
|
|
- that.record.effectiveReason = "人工操作-关键词-" + that.wasteEnquirySeason
|
|
|
- }else if(that.wasteEnquiryType === "other"){
|
|
|
- that.record.effectiveReason = "人工操作-其他-" + that.wasteEnquirySeason
|
|
|
- }
|
|
|
+ submitUserEffect(){
|
|
|
+ let that = this;
|
|
|
+ this.spinning = true
|
|
|
+ let d = {
|
|
|
+ id: that.record.id,
|
|
|
+ siteId: that.record.siteId,
|
|
|
+ siteCode: that.record.siteCode,
|
|
|
+ userEffective: that.modelUserEffective,
|
|
|
+ wasteEnquiryType: that.wasteEnquiryType,
|
|
|
+ wasteEnquirySeason: that.wasteEnquirySeason
|
|
|
+ }
|
|
|
+ postActionForm('/adweb/adwebEnquiry/update/user/effective', d).then(function(res) {
|
|
|
+ that.spinning = false
|
|
|
+ if (res.code === 200) {
|
|
|
+ createMessage.success('分类修改成功!');
|
|
|
+ that.$emit('ok')
|
|
|
+ that.record.userEffective = that.modelUserEffective
|
|
|
+ if(that.wasteEnquiryType === "ip"){
|
|
|
+ that.record.effectiveReason = "人工操作-ip-" + that.wasteEnquirySeason
|
|
|
+ }else if(that.wasteEnquiryType === "email"){
|
|
|
+ that.record.effectiveReason = "人工操作-邮箱-" + that.wasteEnquirySeason
|
|
|
+ }else if(that.wasteEnquiryType === "keyword"){
|
|
|
+ that.record.effectiveReason = "人工操作-关键词-" + that.wasteEnquirySeason
|
|
|
+ }else if(that.wasteEnquiryType === "other"){
|
|
|
+ that.record.effectiveReason = "人工操作-其他-" + that.wasteEnquirySeason
|
|
|
+ }
|
|
|
|
|
|
- } else {
|
|
|
- if (res.code === 403) {
|
|
|
- that.$message.warning(res.message)
|
|
|
} else {
|
|
|
- that.$message.error('分类修改失败!')
|
|
|
+ if (res.code === 403) {
|
|
|
+ createMessage.warning(res.message)
|
|
|
+ } else {
|
|
|
+ createMessage.error('分类修改失败!')
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
- }).catch(function(err) {
|
|
|
- console.log(err)
|
|
|
- }).finally(()=>{
|
|
|
- that.wasteEnquiryType = "";
|
|
|
- that.wasteEnquirySeason = "";
|
|
|
- that.wasteEnquiryPlaceholder = "";
|
|
|
- })
|
|
|
+ }).catch(function(err) {
|
|
|
+ console.log(err)
|
|
|
+ }).finally(()=>{
|
|
|
+ that.wasteEnquiryType = "";
|
|
|
+ that.wasteEnquirySeason = "";
|
|
|
+ that.wasteEnquiryPlaceholder = "";
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
</script>
|
|
|
|
|
|
|