|
|
|
@ -15,6 +15,8 @@
|
|
|
|
|
@blur="proofName" |
|
|
|
|
:clearable="false" |
|
|
|
|
:autoHeight="true" |
|
|
|
|
:adjust-position="true" |
|
|
|
|
cursorSpacing="32" |
|
|
|
|
ref="nameRef" |
|
|
|
|
></uni-easyinput> |
|
|
|
|
<u-icon name="arrow-right"></u-icon> |
|
|
|
@ -82,12 +84,12 @@
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
<view class="block"> |
|
|
|
|
<view style=""> |
|
|
|
|
<view class="label"> |
|
|
|
|
<text style="color: #f8285a; margin-right: 4px">*</text> |
|
|
|
|
企业标签 |
|
|
|
|
</view> |
|
|
|
|
<view class="value" @tap="goTags"> |
|
|
|
|
<view class="input-textarea" v-if="Object.keys(form.tags).length"> |
|
|
|
|
<view class="value" style="width: 50%" @tap="goTags"> |
|
|
|
|
<view class="input-value" v-if="Object.keys(form.tags).length"> |
|
|
|
|
{{ |
|
|
|
|
Object.values(form.tags) |
|
|
|
|
.map(tag => tag.name) |
|
|
|
@ -114,6 +116,8 @@
|
|
|
|
|
v-model="form.contactName" |
|
|
|
|
:clearable="false" |
|
|
|
|
:autoHeight="true" |
|
|
|
|
:adjust-position="true" |
|
|
|
|
cursorSpacing="32" |
|
|
|
|
></uni-easyinput> |
|
|
|
|
<u-icon name="arrow-right"></u-icon> |
|
|
|
|
</view> |
|
|
|
@ -134,6 +138,9 @@
|
|
|
|
|
@blur="proofphone" |
|
|
|
|
:clearable="false" |
|
|
|
|
:autoHeight="true" |
|
|
|
|
:adjust-position="true" |
|
|
|
|
cursorSpacing="32" |
|
|
|
|
ref="phoneRef" |
|
|
|
|
></uni-easyinput> |
|
|
|
|
<u-icon name="arrow-right"></u-icon> |
|
|
|
|
</view> |
|
|
|
@ -170,8 +177,13 @@
|
|
|
|
|
> |
|
|
|
|
<image |
|
|
|
|
:src="p.photo[0].url" |
|
|
|
|
style="width: 90px; height: 70px" |
|
|
|
|
mode="widthFix" |
|
|
|
|
style=" |
|
|
|
|
width: 180rpx; |
|
|
|
|
height: 144rpx; |
|
|
|
|
flex-shrink: 0; |
|
|
|
|
border-radius: 8rpx; |
|
|
|
|
" |
|
|
|
|
mode="aspectFill" |
|
|
|
|
></image> |
|
|
|
|
<view class="info"> |
|
|
|
|
<view class="wd-flex" style="gap: 8px; align-items: center"> |
|
|
|
@ -187,7 +199,15 @@
|
|
|
|
|
</view> |
|
|
|
|
<view class="wd-flex" style="gap: 8px; align-items: center"> |
|
|
|
|
<text class="label">资质编号</text> |
|
|
|
|
<view class="wd-font-800"> |
|
|
|
|
<view |
|
|
|
|
class="wd-font-800" |
|
|
|
|
style=" |
|
|
|
|
white-space: nowrap; |
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
max-width: 8rem; |
|
|
|
|
overflow: hidden; |
|
|
|
|
" |
|
|
|
|
> |
|
|
|
|
{{ p.enterpriseAuth }} |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -215,8 +235,10 @@ import { getDictBatchByType } from '@/api/system/dict.js'
|
|
|
|
|
import { |
|
|
|
|
createEnterPrise, |
|
|
|
|
vertifyName, |
|
|
|
|
getEnterPrise |
|
|
|
|
getEnterPrise, |
|
|
|
|
updateEnterprise |
|
|
|
|
} from '@/api/enterprise/index.js' |
|
|
|
|
import { getProveList } from '@/api/enterprise/prove.js' |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
@ -237,12 +259,12 @@ export default {
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onLoad(res) { |
|
|
|
|
this.getDict() |
|
|
|
|
this.inviteId = res.inviteId |
|
|
|
|
if (res.id) { |
|
|
|
|
this.form.id = res.id |
|
|
|
|
this.init() |
|
|
|
|
} |
|
|
|
|
this.getDict() |
|
|
|
|
}, |
|
|
|
|
onShow() { |
|
|
|
|
uni.$on('enterpriseIntroduce', data => { |
|
|
|
@ -252,7 +274,11 @@ export default {
|
|
|
|
|
this.form.tags = data |
|
|
|
|
}) |
|
|
|
|
uni.$on('prove', data => { |
|
|
|
|
if (this.form.id) { |
|
|
|
|
this.getProve() |
|
|
|
|
} else { |
|
|
|
|
this.prove.push(data) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
@ -264,7 +290,8 @@ export default {
|
|
|
|
|
vertifyName({ |
|
|
|
|
pageSize: -1, |
|
|
|
|
pageNo: 1, |
|
|
|
|
onlyEnterprisesName: v.detail.value |
|
|
|
|
onlyEnterprisesName: v.detail.value, |
|
|
|
|
excludeEnterpriseId: this.form.id |
|
|
|
|
}).then(res => { |
|
|
|
|
if (res.data.total > 0) { |
|
|
|
|
uni.showToast({ |
|
|
|
@ -272,6 +299,7 @@ export default {
|
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
this.form.enterprisesName = '' |
|
|
|
|
this.$refs.nameRef.onClear() |
|
|
|
|
} else { |
|
|
|
|
this.form.enterprisesName = v.detail.value |
|
|
|
|
} |
|
|
|
@ -287,13 +315,42 @@ export default {
|
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
this.form.environmentalContactPhone = '' |
|
|
|
|
this.$refs.phoneRef.onClear() |
|
|
|
|
} else { |
|
|
|
|
this.form.environmentalContactPhone = v.detail.value |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
init() { |
|
|
|
|
getEnterPrise(this.form.id).then(res => { |
|
|
|
|
console.log(res) |
|
|
|
|
async init() { |
|
|
|
|
const enterprise = await getEnterPrise(this.form.id) |
|
|
|
|
this.form = enterprise.data |
|
|
|
|
this.form.photo = enterprise.data.files |
|
|
|
|
const tag = {} |
|
|
|
|
enterprise.data.tagObjList.forEach(t => { |
|
|
|
|
tag[t.tagCode] = { |
|
|
|
|
name: t.tagName, |
|
|
|
|
value: t.id |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
tag.qy = { |
|
|
|
|
name: this.$dict.echoDicValue( |
|
|
|
|
this.dictMap.enterprises_area, |
|
|
|
|
enterprise.data.region |
|
|
|
|
), |
|
|
|
|
value: enterprise.data.region |
|
|
|
|
} |
|
|
|
|
this.form.tags = tag |
|
|
|
|
this.getProve() |
|
|
|
|
}, |
|
|
|
|
async getProve() { |
|
|
|
|
const load = this.$util.loading() |
|
|
|
|
const prove = await getProveList({ enterpriseId: this.form.id }) |
|
|
|
|
load.close() |
|
|
|
|
this.prove = prove.data.list.map(p => { |
|
|
|
|
return { |
|
|
|
|
...p, |
|
|
|
|
photo: p.files, |
|
|
|
|
expiryDate: this.$util.formatDate(p.expiryDate, 'YYYY-MM-DD') |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
/** |
|
|
|
@ -301,7 +358,7 @@ export default {
|
|
|
|
|
*/ |
|
|
|
|
async getDict() { |
|
|
|
|
const dict = await getDictBatchByType({ |
|
|
|
|
type: ['enterprise_qua'].join(',') |
|
|
|
|
type: ['enterprise_qua', 'enterprises_area'].join(',') |
|
|
|
|
}) |
|
|
|
|
this.dictMap = { |
|
|
|
|
...dict.data |
|
|
|
@ -369,7 +426,7 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
addProve() { |
|
|
|
|
uni.navigateTo({ |
|
|
|
|
url: '/sub/invite/prove' |
|
|
|
|
url: `/sub/invite/prove?enterpriseId=${this.form.id}` |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
editProve(prove) { |
|
|
|
@ -382,7 +439,6 @@ export default {
|
|
|
|
|
if (!valide) return |
|
|
|
|
const data = { ...this.form } |
|
|
|
|
data.region = data.tags.qy.id |
|
|
|
|
// data.type = data.tags.qy.id |
|
|
|
|
data.tagIds = [data.tags.hy.id, data.tags.st.id, data.tags.wr.id] |
|
|
|
|
data.fileIds = data.photo.map(i => i.id) |
|
|
|
|
data.userId = this.inviteId |
|
|
|
@ -393,10 +449,19 @@ export default {
|
|
|
|
|
files: i.photo.map(f => f.id) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
const load = this.$util.loading('上传中...') |
|
|
|
|
if (this.form.id) { |
|
|
|
|
updateEnterprise(data).then(res => { |
|
|
|
|
load.close() |
|
|
|
|
uni.showToast({ |
|
|
|
|
icon: 'none', |
|
|
|
|
title: '操作成功' |
|
|
|
|
}) |
|
|
|
|
uni.navigateBack() |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
console.log(data) |
|
|
|
|
createEnterPrise(data).then(res => { |
|
|
|
|
load.close() |
|
|
|
|
uni.showToast({ |
|
|
|
|
icon: 'none', |
|
|
|
|
title: '操作成功' |
|
|
|
@ -419,7 +484,10 @@ export default {
|
|
|
|
|
} |
|
|
|
|
const msg = [] |
|
|
|
|
Object.keys(this.form).forEach(i => { |
|
|
|
|
if (!this.form[i] && i != 'id') { |
|
|
|
|
if (!Object.hasOwn(msgMap, i)) { |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
if (!this.form[i]) { |
|
|
|
|
msg.push(msgMap[i]) |
|
|
|
|
} |
|
|
|
|
if (typeof this.form[i] == 'Object' && this.form[i].length == 0) { |
|
|
|
@ -462,6 +530,11 @@ export default {
|
|
|
|
|
justify-content: space-between; |
|
|
|
|
align-items: center; |
|
|
|
|
gap: 12px; |
|
|
|
|
.label { |
|
|
|
|
font-family: UICTFontTextStyleBody; |
|
|
|
|
height: 1.4rem; |
|
|
|
|
min-height: 1.4rem; |
|
|
|
|
} |
|
|
|
|
.value { |
|
|
|
|
flex: 1; |
|
|
|
|
display: flex; |
|
|
|
|