|
@@ -22,8 +22,8 @@
|
|
|
v-model="showhasPermission"
|
|
|
:content-style="{ fontSize: '32rpx' }"
|
|
|
@confirm="showhasPermissionBtn"
|
|
|
- :show-cancel-button="true"
|
|
|
- confirm-text="提交申请"
|
|
|
+ :show-cancel-button="!jurisdictionList.IsResearchSpecial"
|
|
|
+ :confirm-text="!jurisdictionList.IsResearchSpecial ? '提交申请' : '知道了'"
|
|
|
@cancel="showhasPermissionCancel"
|
|
|
:show-title="false"
|
|
|
:cancel-style="{ borderRight: '1rpx solid #EBEBEB' }"
|
|
@@ -273,15 +273,17 @@ export default {
|
|
|
this.editIsShowDlg = false;
|
|
|
},
|
|
|
|
|
|
- showhasPermissionBtn() {
|
|
|
- // isAudioVideo -- 3 产业视频
|
|
|
- User.applyTry({
|
|
|
- TryType: this.jurisdictionList.isAudioVideo == 1 ? "MicroAudio" : this.jurisdictionList.isAudioVideo == 2 || this.jurisdictionList.isAudioVideo == 3 ? "MicroVideo" : "Activity",
|
|
|
- DetailId: this.jurisdictionList.ActivityId,
|
|
|
- }).then((res) => {
|
|
|
- this.showhasPermission = false;
|
|
|
- this.$parent.isShowhasPermission = false;
|
|
|
- });
|
|
|
+ async showhasPermissionBtn() {
|
|
|
+ if (this.jurisdictionList.IsResearchSpecial) {
|
|
|
+ } else {
|
|
|
+ // isAudioVideo -- 3 产业视频
|
|
|
+ const res = await User.applyTry({
|
|
|
+ TryType: this.jurisdictionList.isAudioVideo == 1 ? "MicroAudio" : this.jurisdictionList.isAudioVideo == 2 || this.jurisdictionList.isAudioVideo == 3 ? "MicroVideo" : "Activity",
|
|
|
+ DetailId: this.jurisdictionList.ActivityId,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ this.showhasPermission = false;
|
|
|
+ this.$parent.isShowhasPermission = false;
|
|
|
},
|
|
|
mobileDial() {
|
|
|
uni.makePhoneCall({
|