SPM发送有限让中心人员更新人员信息,中心人员的邮件中进入中心调研链接页面,交互错误
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
parent
f997cec4fb
commit
46fdee6c01
|
|
@ -42,8 +42,8 @@
|
||||||
<el-link v-if="!form.IsUpdate" type="primary" @click="form.IsUpdate = true">
|
<el-link v-if="!form.IsUpdate" type="primary" @click="form.IsUpdate = true">
|
||||||
{{ $t('trials:researchForm:button:updateQsForm') }}
|
{{ $t('trials:researchForm:button:updateQsForm') }}
|
||||||
</el-link>
|
</el-link>
|
||||||
<!-- 取消更新调研表 -->
|
<!-- 取消更新调研表 form.ReplaceUserEmailOrPhone = '' -->
|
||||||
<el-link v-else type="primary" @click="form.IsUpdate = false; form.ReplaceUserEmailOrPhone = ''">
|
<el-link v-else type="primary" @click="form.IsUpdate = false;">
|
||||||
{{ $t('trials:researchForm:button:cancelUpdateQsForm') }}
|
{{ $t('trials:researchForm:button:cancelUpdateQsForm') }}
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
@ -214,7 +214,11 @@ export default {
|
||||||
let { email, oldEMail, trialSiteId } = this.$route.query
|
let { email, oldEMail, trialSiteId } = this.$route.query
|
||||||
if (trialSiteId) this.form.TrialSiteId = trialSiteId
|
if (trialSiteId) this.form.TrialSiteId = trialSiteId
|
||||||
if (oldEMail) this.form.ReplaceUserEmailOrPhone = oldEMail
|
if (oldEMail) this.form.ReplaceUserEmailOrPhone = oldEMail
|
||||||
if (email) this.form.EmailOrPhone = email
|
if (email && email !== 'null') {
|
||||||
|
this.form.EmailOrPhone = email
|
||||||
|
} else {
|
||||||
|
this.form.EmailOrPhone = oldEMail
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
||||||
|
|
@ -193,7 +193,7 @@
|
||||||
<el-button type="primary" @click="sendEMailTable" :loading="loading">
|
<el-button type="primary" @click="sendEMailTable" :loading="loading">
|
||||||
{{ $t('common:button:confirm') }}
|
{{ $t('common:button:confirm') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button @click="checkRemind_model.visible = false" :loading="loading">
|
<el-button @click="siteEmail_model.visible = false" :loading="loading">
|
||||||
{{ $t('common:button:cancel') }}
|
{{ $t('common:button:cancel') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue