|
@@ -463,6 +463,7 @@ export default {
|
|
|
this.getAreaFn()
|
|
|
this.getIndustryShowMore()
|
|
|
this.echoUserInfo()
|
|
|
+ this.setContentVal()
|
|
|
},
|
|
|
watch: {
|
|
|
'ruleForm.buyer': {
|
|
@@ -484,6 +485,16 @@ export default {
|
|
|
callback()
|
|
|
}
|
|
|
},
|
|
|
+ setContentVal() {
|
|
|
+ if (this.ruleForm.content === '') {
|
|
|
+ this.ruleForm.content =
|
|
|
+ '项目发布媒体:剑鱼标讯(https://www.jianyu360.cn/)'
|
|
|
+ } else {
|
|
|
+ this.ruleForm.content =
|
|
|
+ '项目发布媒体:剑鱼标讯(https://www.jianyu360.cn/)' +
|
|
|
+ this.ruleForm.content
|
|
|
+ }
|
|
|
+ },
|
|
|
convertDataStructure(data) {
|
|
|
// 假设data是一个包含多个省份对象的数组
|
|
|
return data.map((province) => {
|