更新六个讯飞AI小程序
This commit is contained in:
parent
922ba1b054
commit
c507002424
@ -1,38 +1,58 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="gather">
|
<view class="gather">
|
||||||
|
|
||||||
|
|
||||||
<view v-if="isFshow">
|
<view v-if="isFshow">
|
||||||
<view class="site-box flex_a_c_j_sb" :style="{ 'opacity': backColor,}" @click="selectLocation">
|
<view
|
||||||
<view :class="['place_wrapper', 'flex_a_c', isFshow ? 'sitebox' : '']" @click="selectLocation">
|
class="site-box flex_a_c_j_sb"
|
||||||
<view :class="['iconfont', 'icon-weizhi', isFshow ? 'sitebox' : '']" style=" margin-left: 20rpx">
|
:style="{ opacity: backColor }"
|
||||||
|
@click="selectLocation"
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
:class="['place_wrapper', 'flex_a_c', isFshow ? 'sitebox' : '']"
|
||||||
|
@click="selectLocation"
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
:class="['iconfont', 'icon-weizhi', isFshow ? 'sitebox' : '']"
|
||||||
|
style="margin-left: 20rpx"
|
||||||
|
>
|
||||||
</view>
|
</view>
|
||||||
<view class="town_name">{{ street }}</view>
|
<view class="town_name">{{ street }}</view>
|
||||||
</view>
|
</view>
|
||||||
<navigator url="/pages/chat/customer_list/index?type=0" hover-class="none">
|
<navigator
|
||||||
<view :class="['iconfont', 'icon-xiaoxi', isFshow ? 'sitebox' : '']"></view>
|
url="/pages/chat/customer_list/index?type=0"
|
||||||
|
hover-class="none"
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
:class="['iconfont', 'icon-xiaoxi', isFshow ? 'sitebox' : '']"
|
||||||
|
></view>
|
||||||
</navigator>
|
</navigator>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<view class="" v-if="!isFshow">
|
<view class="" v-if="!isFshow">
|
||||||
<view class="site-box1 flex_a_c_j_sb">
|
<view class="site-box1 flex_a_c_j_sb">
|
||||||
|
|
||||||
<view class="place_wrapper flex_a_c" @click="selectLocation">
|
<view class="place_wrapper flex_a_c" @click="selectLocation">
|
||||||
<view class="iconfont icon-weizhi"></view>
|
<view class="iconfont icon-weizhi"></view>
|
||||||
<view class="town_name">{{ street }}</view>
|
<view class="town_name">{{ street }}</view>
|
||||||
</view>
|
</view>
|
||||||
<navigator url="/pages/chat/customer_list/index?type=0" hover-class="none">
|
<navigator
|
||||||
<view class="iconfont icon-xiaoxi" style="color:#fff;"> </view>
|
url="/pages/chat/customer_list/index?type=0"
|
||||||
|
hover-class="none"
|
||||||
|
>
|
||||||
|
<view class="iconfont icon-xiaoxi" style="color: #fff"> </view>
|
||||||
</navigator>
|
</navigator>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<zbpSwiper
|
||||||
|
:isSelectPlace="true"
|
||||||
<zbpSwiper :isSelectPlace="true" :location_Arr="locationArr" :town="street"></zbpSwiper>
|
:location_Arr="locationArr"
|
||||||
<u-empty :show="jurisdiction" mode="permission" :text="emptyText"
|
:town="street"
|
||||||
icon="http://cdn.uviewui.com/uview/empty/permission.png"></u-empty>
|
></zbpSwiper>
|
||||||
|
<u-empty
|
||||||
|
:show="jurisdiction"
|
||||||
|
mode="permission"
|
||||||
|
:text="emptyText"
|
||||||
|
icon="http://cdn.uviewui.com/uview/empty/permission.png"
|
||||||
|
></u-empty>
|
||||||
<view class="business com special_work" v-if="jurisdiction == false">
|
<view class="business com special_work" v-if="jurisdiction == false">
|
||||||
<view class="title project">
|
<view class="title project">
|
||||||
<view>更多功能</view>
|
<view>更多功能</view>
|
||||||
@ -41,19 +61,35 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<block v-if="nowMenuList.length > 0">
|
<block v-if="nowMenuList.length > 0">
|
||||||
<u-transition v-for="(item, index) in nowMenuList" :key="item.name" show>
|
<u-transition
|
||||||
<view class="examine" @click="
|
v-for="(item, index) in nowMenuList"
|
||||||
|
:key="item.name"
|
||||||
|
show
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
class="examine"
|
||||||
|
@click="
|
||||||
editFlag ? removeMenu(item) : clickMenu(item.type, item.data)
|
editFlag ? removeMenu(item) : clickMenu(item.type, item.data)
|
||||||
">
|
"
|
||||||
|
>
|
||||||
<image class="icon_img" :src="item.icon" mode="aspectFit">
|
<image class="icon_img" :src="item.icon" mode="aspectFit">
|
||||||
</image>
|
</image>
|
||||||
<u-icon v-if="editFlag" class="icon" name="minus-circle-fill" color="red"></u-icon>
|
<u-icon
|
||||||
|
v-if="editFlag"
|
||||||
|
class="icon"
|
||||||
|
name="minus-circle-fill"
|
||||||
|
color="red"
|
||||||
|
></u-icon>
|
||||||
<text class="text">{{ item.name }}</text>
|
<text class="text">{{ item.name }}</text>
|
||||||
</view>
|
</view>
|
||||||
</u-transition>
|
</u-transition>
|
||||||
</block>
|
</block>
|
||||||
<view v-else-if="!editFlag" @click="editFlag = true"
|
<view
|
||||||
style="text-align: center; width: 100%; color: #aaa">还没有应用,点我添加应用</view>
|
v-else-if="!editFlag"
|
||||||
|
@click="editFlag = true"
|
||||||
|
style="text-align: center; width: 100%; color: #aaa"
|
||||||
|
>还没有应用,点我添加应用</view
|
||||||
|
>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="editFlag" class="business com special_work edit_card">
|
<view v-if="editFlag" class="business com special_work edit_card">
|
||||||
@ -62,10 +98,13 @@
|
|||||||
<view class="edit2" @click="editComfirm">完成</view>
|
<view class="edit2" @click="editComfirm">完成</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<u-transition v-for="(item, index) in AllMenuList" :key="item.name" show>
|
<u-transition
|
||||||
|
v-for="(item, index) in AllMenuList"
|
||||||
|
:key="item.name"
|
||||||
|
show
|
||||||
|
>
|
||||||
<view class="examine" @click="pushMenu(item)">
|
<view class="examine" @click="pushMenu(item)">
|
||||||
<image class="icon_img" :src="item.icon" mode="aspectFit">
|
<image class="icon_img" :src="item.icon" mode="aspectFit"> </image>
|
||||||
</image>
|
|
||||||
<u-icon class="icon" name="plus-circle-fill"></u-icon>
|
<u-icon class="icon" name="plus-circle-fill"></u-icon>
|
||||||
<text class="text">{{ item.name }}</text>
|
<text class="text">{{ item.name }}</text>
|
||||||
</view>
|
</view>
|
||||||
@ -73,9 +112,16 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<u-picker
|
||||||
<u-picker :defaultIndex="[0,0]" :show="showPicker" ref="uPicker" :columns="columnData" @confirm="confirm"
|
:defaultIndex="[0, 0]"
|
||||||
@cancel="showPicker = false" @change="changeHandler" keyName="name"></u-picker>
|
:show="showPicker"
|
||||||
|
ref="uPicker"
|
||||||
|
:columns="columnData"
|
||||||
|
@confirm="confirm"
|
||||||
|
@cancel="showPicker = false"
|
||||||
|
@change="changeHandler"
|
||||||
|
keyName="name"
|
||||||
|
></u-picker>
|
||||||
<!-- <m-tabbar native>
|
<!-- <m-tabbar native>
|
||||||
<template v-slot:tabbar_index_2>
|
<template v-slot:tabbar_index_2>
|
||||||
<view class="custom_style">
|
<view class="custom_style">
|
||||||
@ -146,11 +192,10 @@
|
|||||||
// 编辑中标记
|
// 编辑中标记
|
||||||
editFlag: false,
|
editFlag: false,
|
||||||
// 所有菜单的按钮
|
// 所有菜单的按钮
|
||||||
|
|
||||||
AllMenuList: [{
|
AllMenuList: [{
|
||||||
name: '商户平台',
|
name: '商户平台',
|
||||||
icon: '/static/applet/shop_app.png',
|
icon: '/static/applet/shop_app.png',
|
||||||
data: '/pages/moreProject/moreProject',
|
data: "__UNI__1EE148C",
|
||||||
type: 2,
|
type: 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -164,9 +209,54 @@
|
|||||||
icon: '/static/applet/ny.png',
|
icon: '/static/applet/ny.png',
|
||||||
data: {
|
data: {
|
||||||
id: '__UNI__9620511',
|
id: '__UNI__9620511',
|
||||||
url: '/static/wgt/__UNI__9620511.wgt',
|
url: 'https://ceshi-worker-task.lihaink.cn/api/common/getMiniProgramInfo?name=nongye',
|
||||||
},
|
},
|
||||||
type: 1,
|
type: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '教育咨询',
|
||||||
|
icon: '/static/applet/jy.png',
|
||||||
|
data: {
|
||||||
|
id: '__UNI__7AA205C',
|
||||||
|
url: 'https://ceshi-worker-task.lihaink.cn/api/common/getMiniProgramInfo?name=jiaoyu',
|
||||||
|
},
|
||||||
|
type: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '法律咨询',
|
||||||
|
icon: '/static/applet/fl.png',
|
||||||
|
data: {
|
||||||
|
id: '__UNI__358D505',
|
||||||
|
url: 'https://ceshi-worker-task.lihaink.cn/api/common/getMiniProgramInfo?name=falv',
|
||||||
|
},
|
||||||
|
type: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '情感咨询',
|
||||||
|
icon: '/static/applet/qg.png',
|
||||||
|
data: {
|
||||||
|
id: '__UNI__8080F14',
|
||||||
|
url: 'https://ceshi-worker-task.lihaink.cn/api/common/getMiniProgramInfo?name=qinggan',
|
||||||
|
},
|
||||||
|
type: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '种植分析',
|
||||||
|
icon: '/static/applet/zz.png',
|
||||||
|
data: {
|
||||||
|
id: '__UNI__9EDFE40',
|
||||||
|
url: 'https://ceshi-worker-task.lihaink.cn/api/common/getMiniProgramInfo?name=zhongzhi',
|
||||||
|
},
|
||||||
|
type: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '养殖分析',
|
||||||
|
icon: '/static/applet/yz.png',
|
||||||
|
data: {
|
||||||
|
id: '__UNI__EEA7DC9',
|
||||||
|
url: 'https://ceshi-worker-task.lihaink.cn/api/common/getMiniProgramInfo?name=yangzhi',
|
||||||
|
},
|
||||||
|
type: 3,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
nowMenuList: [],
|
nowMenuList: [],
|
||||||
@ -293,14 +383,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
clickMenu (e, data) {
|
clickMenu (e, data) {
|
||||||
switch (e) {
|
this.getUniMp(e, data);
|
||||||
case 1:
|
|
||||||
this.getUniMp(data);
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
this.navigator(data);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
// 添加菜单
|
// 添加菜单
|
||||||
pushMenu (data) {
|
pushMenu (data) {
|
||||||
@ -321,13 +404,13 @@
|
|||||||
this.editFlag = false;
|
this.editFlag = false;
|
||||||
uni.setStorageSync('gatherNowMenuList', JSON.stringify(this.nowMenuList));
|
uni.setStorageSync('gatherNowMenuList', JSON.stringify(this.nowMenuList));
|
||||||
},
|
},
|
||||||
getUniMp(data) {
|
getUniMp (type, data) {
|
||||||
// #ifdef APP-PLUS
|
// #ifdef APP-PLUS
|
||||||
console.log(data, typeof data == 'string');
|
switch (type) {
|
||||||
if (typeof data == 'string') uniMP.loadMP(data);
|
case 1: uniMP.loadMP(data); break;
|
||||||
else uniMP.loadMPurl(data);
|
case 2: uniMP.loadMPx(data); break;
|
||||||
// uniMP.loadMPurl(data);
|
case 3: uniMP.loadMPurl(data); break;
|
||||||
// uniMP.open(data.id);
|
}
|
||||||
return;
|
return;
|
||||||
// #endif
|
// #endif
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
@ -428,6 +511,7 @@
|
|||||||
let that = this;
|
let that = this;
|
||||||
getUserInfo().then(res => {
|
getUserInfo().then(res => {
|
||||||
that.userInfoData = res.data;
|
that.userInfoData = res.data;
|
||||||
|
that.$store.commit('SET_USERINFO', res.data);
|
||||||
// console.log(res.data.service);
|
// console.log(res.data.service);
|
||||||
if (res.data.service == null) {
|
if (res.data.service == null) {
|
||||||
// console.log('123');
|
// console.log('123');
|
||||||
@ -499,7 +583,6 @@
|
|||||||
.iconfont {
|
.iconfont {
|
||||||
font-size: 35.09rpx;
|
font-size: 35.09rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-box {
|
.site-box {
|
||||||
@ -522,7 +605,7 @@
|
|||||||
padding-top: 25rpx;
|
padding-top: 25rpx;
|
||||||
/* #endif */
|
/* #endif */
|
||||||
// background-color: #e5e5e5;
|
// background-color: #e5e5e5;
|
||||||
background: url('@/static/images/bg2.png') no-repeat;
|
background: url("@/static/images/bg2.png") no-repeat;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
padding-right: 20rpx;
|
padding-right: 20rpx;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user