|
@@ -40,6 +40,15 @@
|
|
|
<text class="notlog-tip" v-else>让好的研究不再是奢侈品</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="my-bot-cont">
|
|
|
+ <view class="list-item border_bottom" @click="itemClickHandle('外呼')">
|
|
|
+ <text>外呼号码</text>
|
|
|
+ <view class="my-bot-box">
|
|
|
+ <text style="margin-right: 40rpx;">12312312312312</text>
|
|
|
+ <u-icon name="arrow-right" color="#BDBDBD" size="34"></u-icon>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
<view class="my-bot-cont">
|
|
|
<view class="list-item border_bottom" v-for="type in typeArr" :key="type" @click="itemClickHandle(type)">
|
|
|
<text>{{type}}</text>
|
|
@@ -140,10 +149,17 @@
|
|
|
itemClickHandle(type) {
|
|
|
/* 是否登录 */
|
|
|
if(this.isLogin) {
|
|
|
- let path = this.typeObj.get(type);
|
|
|
- uni.navigateTo({
|
|
|
- url:`/pages/${path}/${path}`
|
|
|
- });
|
|
|
+ if(type=='外呼'){
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'/activityPages/editOutbound/editOutbound'
|
|
|
+ });
|
|
|
+ }else {
|
|
|
+ let path = this.typeObj.get(type);
|
|
|
+ uni.navigateTo({
|
|
|
+ url:`/pages/${path}/${path}`
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
}else {
|
|
|
this.loginHandle();
|
|
|
}
|
|
@@ -257,6 +273,9 @@
|
|
|
}
|
|
|
}
|
|
|
.my-bot-cont {
|
|
|
+ .my-bot-box {
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
.list-item {
|
|
|
display: flex;
|
|
|
align-items: center;
|