master
parent
6629e9b4d5
commit
8ccf1e5860
|
@ -1,16 +1,19 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="foot-box"
|
<view class="">
|
||||||
:style="{
|
<view class="foot-box"
|
||||||
background: isGradualChange ? `linear-gradient( to ${direction}, ${colorOne} 0%, ${colorTwo} 20%, ${colorThree} 80%, ${colorFour} 100%)` : `url(${backgroundImage}) ${backgroundColor} `,
|
:style="{
|
||||||
boxShadow: `-10rpx 0rpx 20rpx rgba( 0, 0, 0, ${boxShadowNum})`
|
background: isGradualChange ? `linear-gradient( to ${direction}, ${colorOne} 0%, ${colorTwo} 20%, ${colorThree} 80%, ${colorFour} 100%)` : `url(${backgroundImage}) ${backgroundColor} `,
|
||||||
}">
|
boxShadow: `-10rpx 0rpx 20rpx rgba( 0, 0, 0, ${boxShadowNum})`
|
||||||
<!-- 后台动态改变的icon与标题 start -->
|
}">
|
||||||
<view @tap="choosefoot(index)" class="item-box" v-for="(item,index) in footList" :key="index">
|
<!-- 后台动态改变的icon与标题 start -->
|
||||||
<image :class="isIcon==index ? 'bulge' : ''" :style="{width:[40,40,40,40,37][index]+'rpx',height:[40,40,40,40,40][index]+'rpx'}" :src="current == index ? item.selectedIconPath : item.iconPath" mode="widthFix"></image>
|
<view @tap="choosefoot(index)" class="item-box" v-for="(item,index) in footList" :key="index">
|
||||||
<view class="clips1" :class="current==index ? 'activeclass' : 'defaultclass'">{{item.title}}</view>
|
<image :class="isIcon==index ? 'bulge' : ''" :style="{width:[40,40,40,40,37][index]+'rpx',height:[40,40,40,40,40][index]+'rpx'}" :src="current == index ? item.selectedIconPath : item.iconPath" mode="widthFix"></image>
|
||||||
</view>
|
<view class="clips1" :class="current==index ? 'activeclass' : 'defaultclass'">{{item.title}}</view>
|
||||||
<!-- 后台动态改变的icon图 end -->
|
</view>
|
||||||
</view>
|
<!-- 后台动态改变的icon图 end -->
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
// 引入qrcode.js (必须导出qrcode.js )
|
// 引入qrcode.js (必须导出qrcode.js )
|
||||||
|
|
|
@ -106,15 +106,15 @@
|
||||||
return {
|
return {
|
||||||
data: {
|
data: {
|
||||||
type_id: 1,
|
type_id: 1,
|
||||||
title: "",
|
title: "广场大屏显示器",
|
||||||
brand: "",
|
brand: "苹果",
|
||||||
model: "",
|
model: "IP445152",
|
||||||
width: "",
|
width: 100,
|
||||||
height: "",
|
height: 100,
|
||||||
contact_name: "",
|
contact_name: "张某",
|
||||||
contact_phone: "",
|
contact_phone: "17552525252",
|
||||||
appointment_time: '',
|
appointment_time: '',
|
||||||
addres: "",
|
addres: "上海市闵行区莘浜路421号",
|
||||||
pictures: "",
|
pictures: "",
|
||||||
},
|
},
|
||||||
imgsrcArr: [],
|
imgsrcArr: [],
|
||||||
|
@ -226,7 +226,10 @@
|
||||||
this.$toolAll.tools.showToast("请选择现场图片");
|
this.$toolAll.tools.showToast("请选择现场图片");
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.data.appointment_time = new Date(this.data.appointment_time).getTime()
|
console.log(this.data.appointment_time)
|
||||||
|
this.data.appointment_time = new Date(this.data.appointment_time).getTime()/1000
|
||||||
|
this.data.width=this.data.width-0
|
||||||
|
this.data.height= this.data.height-0
|
||||||
this.$requst.post('/universal/api.vas/vas', this.data).then(res => {
|
this.$requst.post('/universal/api.vas/vas', this.data).then(res => {
|
||||||
if (res.code == 1) {
|
if (res.code == 1) {
|
||||||
console.log(res)
|
console.log(res)
|
||||||
|
|
|
@ -245,7 +245,7 @@
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
role: 4, // 1:业务员 2:表示客户 3:表示客服 4:表示工程师
|
role: 2, // 1:业务员 2:表示客户 3:表示客服 4:表示工程师
|
||||||
role: uni.getStorageSync('type_id'), // 1:业务员 2:表示客户 3:表示客服 4:表示工程师
|
role: uni.getStorageSync('type_id'), // 1:业务员 2:表示客户 3:表示客服 4:表示工程师
|
||||||
statusHeight: uni.getSystemInfoSync().statusBarHeight + 50,
|
statusHeight: uni.getSystemInfoSync().statusBarHeight + 50,
|
||||||
messageNumber: 16 ,// 消息数量
|
messageNumber: 16 ,// 消息数量
|
||||||
|
|
Loading…
Reference in New Issue