master
tangyi 2022-03-25 17:12:59 +08:00
parent 690589226f
commit 48c66b69ff
5 changed files with 313 additions and 285 deletions

View File

@ -85,20 +85,19 @@
"sdkConfigs" : { "sdkConfigs" : {
"maps" : {} "maps" : {}
}, },
"devServer" : { "devServer" : {
"https" : false, "https" : false,
"proxy": { "proxy" : {
"/web": { "/web" : {
"target": "http://maintain.7and5.cn", "target" : "http://maintain.7and5.cn",
"changeOrigin": true, "changeOrigin" : true,
"secure": false, "secure" : false,
"pathRewrite": { "pathRewrite" : {
"^/web": "" "^/web" : ""
} }
} }
} }
} }
}, },
"mp-baidu" : { "mp-baidu" : {
"appid" : "24346353" "appid" : "24346353"

View File

@ -1,89 +1,97 @@
<template> <template>
<view class="content"> <view class="content">
<statusNav navBarTitle="增值服务"></statusNav> <statusNav navBarTitle="增值服务"></statusNav>
<view class="select-type"> <container-subgroup-two >
<view class="text">选择类型</view> <view slot="content" style="margin: 0 -30rpx;">
<view class="type"> <view class="select-type">
<view class="li" @click="typeIndexFun(index)" :class="index==typeIndex?'on':''" <view class="text">选择类型</view>
v-for="(item,index) in typeData"> <view class="type">
{{item.title}} <view class="li" @click="typeIndexFun(index)" :class="index==typeIndex?'on':''"
v-for="(item,index) in typeData">
{{item.title}}
</view>
</view>
</view>
<view class="appreciationServe-from">
<view class="li">
<view class="title">
<text class="cor">*</text>产品名称
</view>
<input class="input" type="text" value="全彩LED显示屏" />
</view>
<view class="li">
<view class="title">
<text class="cor">*</text>规格型号
</view>
<input class="input" type="text" value="P2.5" />
</view>
<view class="li">
<view class="title">产品品牌</view>
<input class="input" type="text" value="" placeholder="请输入品牌" />
</view>
<view class="li">
<view class="title">
<text class="cor">*</text>产品尺寸
</view>
<input class="input" type="text" value="宽:38.5m x 高14.5m" />
</view>
</view>
<view class="supplementTitle">补充信息</view>
<view class="supplement-from">
<view class="li">
<view class="title">
<text class="cor">*</text>联系人
</view>
<input type="text" class="input" value="王富贵" />
</view>
<view class="li">
<view class="">
<text class="cor">*</text>联系电话
</view>
<input type="text" class="input" value="18256666666" />
</view>
<view class="li">
<view class="">
<text class="cor">*</text>预约时间
</view>
<input type="text" class="input" value="2022-02-16" />
</view>
<view class="li-textarea">
<view class="title">*详细地址</view>
<textarea class="textarea" value="湖南省株洲市荷塘区红旗中路456号五矿二十三冶综合楼" placeholder="" />
</view>
<view class="scene-img">
<view class="title">现场图片</view>
<view class="img-content">
<image class="img" src="../../static/del/微信图片_20220113152400.png" mode=""></image>
<image class="img" src="../../static/del/微信图片_20220113152400.png" mode=""></image>
</view>
<view class="iocn-content">
<image class="icon" src="../../static/iocn/jia.png" mode=""></image>
</view>
</view>
</view>
<button class="submit-button" type="default">确认提交</button>
</view> </view>
</view>
</view> </container-subgroup-two>
<view class="appreciationServe-from">
<view class="li">
<view class="title">
<text class="cor">*</text>产品名称
</view>
<input class="input" type="text" value="全彩LED显示屏" />
</view>
<view class="li">
<view class="title">
<text class="cor">*</text>规格型号
</view>
<input class="input" type="text" value="P2.5" />
</view>
<view class="li">
<view class="title">产品品牌</view>
<input class="input" type="text" value="" placeholder="请输入品牌" />
</view>
<view class="li">
<view class="title">
<text class="cor">*</text>产品尺寸
</view>
<input class="input" type="text" value="宽:38.5m x 高14.5m" />
</view>
</view>
<view class="supplementTitle">补充信息</view>
<view class="supplement-from">
<view class="li">
<view class="title">
<text class="cor">*</text>联系人
</view>
<input type="text" class="input" value="王富贵" />
</view>
<view class="li">
<view class="">
<text class="cor">*</text>联系电话
</view>
<input type="text" class="input" value="18256666666" />
</view>
<view class="li">
<view class="">
<text class="cor">*</text>预约时间
</view>
<input type="text" class="input" value="2022-02-16" />
</view>
<view class="li-textarea">
<view class="title">*详细地址</view>
<textarea class="textarea" value="湖南省株洲市荷塘区红旗中路456号五矿二十三冶综合楼" placeholder="" />
</view>
<view class="scene-img">
<view class="title">现场图片</view>
<view class="img-content">
<image class="img" src="../../static/del/微信图片_20220113152400.png" mode=""></image>
<image class="img" src="../../static/del/微信图片_20220113152400.png" mode=""></image>
</view>
<view class="iocn-content">
<image class="icon" src="../../static/iocn/jia.png" mode=""></image>
</view>
</view>
</view>
<button class="submit-button" type="default">确认提交</button>
</view> </view>
</template> </template>
<script> <script>
import containerSubgroupTwo from '@/components/containers/container-subgroup-two.vue';
import statusNav from '../../components/status-nav.vue'; import statusNav from '../../components/status-nav.vue';
export default { export default {
components: { components: {
statusNav, statusNav,
containerSubgroupTwo,
}, },
data() { data() {
@ -121,8 +129,6 @@
<style> <style>
.content { .content {
padding-top: 80rpx;
padding-bottom: 80rpx;
} }
.cor{ .cor{
color: #FF0000; color: #FF0000;

View File

@ -2,7 +2,8 @@
<view class="content"> <view class="content">
<statusNav navBarTitle="客户(查询结果列表)"></statusNav> <statusNav navBarTitle="客户(查询结果列表)"></statusNav>
<view class="client-content"> <container-subgroup-two >
<view class="client-content" slot="content" style="margin: 0 -30rpx;">
<view class="li"> <view class="li">
<view class="li-content"> <view class="li-content">
<view class=""> <view class="">
@ -36,15 +37,19 @@
</view> </view>
</view> </view>
</view> </view>
</container-subgroup-two >
</view> </view>
</template> </template>
<script> <script>
import containerSubgroupTwo from '@/components/containers/container-subgroup-two.vue';
import statusNav from '../../components/status-nav.vue'; import statusNav from '../../components/status-nav.vue';
export default { export default {
components: { components: {
statusNav statusNav,
containerSubgroupTwo
}, },
data() { data() {
return { return {
@ -59,9 +64,7 @@
<style> <style>
.content{
padding-top: 80rpx;
}
.client-content .li{ .client-content .li{
background-color: #FFFFFF; background-color: #FFFFFF;
margin-top: 20rpx; margin-top: 20rpx;

View File

@ -1,27 +1,28 @@
<template> <template>
<view class="content"> <view class="content">
<statusNav navBarTitle="(备品)查询结果"></statusNav> <statusNav navBarTitle="(备品)查询结果"></statusNav>
<view class="dataQuery-content">
<container-subgroup-two >
<view class="dataQuery-content" slot="content" style="margin: 0 -30rpx;">
<view class="li"> <view class="li">
<view class="title"> <view class="title">
项目名称湖南工业大学生化学院三楼会议室 项目名称湖南工业大学生化学院三楼会议室
</view> </view>
<view class="text-content"> <view class="text-content">
<view class="left"> <view class="left">
<view class="text"> <view class="text">
核心品牌海康威视 核心品牌海康威视
</view> </view>
<view class="text"> <view class="text">
规格型号DS-CK18FI-H 规格型号DS-CK18FI-H
</view> </view>
<view class="text"> <view class="text">
2210122 2210122
</view> </view>
</view> </view>
<view class="rigth"> <view class="rigth">
<view class="text"> <view class="text">
备品数量<text class="cor">3</text> 备品数量<text class="cor">3</text>
</view> </view>
<view class="text cor1"> <view class="text cor1">
备品尺寸320*160 备品尺寸320*160
@ -31,33 +32,33 @@
</view> </view>
</view> </view>
</view> </view>
<view class="icon" v-if="true"> <view class="icon" v-if="true">
<text class="icon-text">正常</text> <text class="icon-text">正常</text>
</view> </view>
<view class="icon1" v-else> <view class="icon1" v-else>
<text class="icon-text">待维修</text> <text class="icon-text">待维修</text>
</view> </view>
</view> </view>
<view class="li"> <view class="li">
<view class="title"> <view class="title">
项目名称湖南工业大学生化学院三楼会议室 项目名称湖南工业大学生化学院三楼会议室
</view> </view>
<view class="text-content"> <view class="text-content">
<view class="left"> <view class="left">
<view class="text"> <view class="text">
核心品牌海康威视 核心品牌海康威视
</view> </view>
<view class="text"> <view class="text">
规格型号DS-CK18FI-H 规格型号DS-CK18FI-H
</view> </view>
<view class="text"> <view class="text">
2210122 2210122
</view> </view>
</view> </view>
<view class="rigth"> <view class="rigth">
<view class="text"> <view class="text">
备品数量<text class="cor">3</text> 备品数量<text class="cor">3</text>
</view> </view>
<view class="text cor1"> <view class="text cor1">
备品尺寸320*160 备品尺寸320*160
@ -67,33 +68,33 @@
</view> </view>
</view> </view>
</view> </view>
<view class="icon" v-if="true"> <view class="icon" v-if="true">
<text class="icon-text">正常</text> <text class="icon-text">正常</text>
</view> </view>
<view class="icon1" v-else> <view class="icon1" v-else>
<text class="icon-text">待维修</text> <text class="icon-text">待维修</text>
</view> </view>
</view> </view>
<view class="li"> <view class="li">
<view class="title"> <view class="title">
项目名称湖南工业大学生化学院三楼会议室 项目名称湖南工业大学生化学院三楼会议室
</view> </view>
<view class="text-content"> <view class="text-content">
<view class="left"> <view class="left">
<view class="text"> <view class="text">
核心品牌海康威视 核心品牌海康威视
</view> </view>
<view class="text"> <view class="text">
规格型号DS-CK18FI-H 规格型号DS-CK18FI-H
</view> </view>
<view class="text"> <view class="text">
2210122 2210122
</view> </view>
</view> </view>
<view class="rigth"> <view class="rigth">
<view class="text"> <view class="text">
备品数量<text class="cor">3</text> 备品数量<text class="cor">3</text>
</view> </view>
<view class="text cor1"> <view class="text cor1">
备品尺寸320*160 备品尺寸320*160
@ -103,23 +104,26 @@
</view> </view>
</view> </view>
</view> </view>
<view class="icon" v-if="false"> <view class="icon" v-if="false">
<text class="icon-text">正常</text> <text class="icon-text">正常</text>
</view> </view>
<view class="icon1" v-else> <view class="icon1" v-else>
<text class="icon-text">待维修</text> <text class="icon-text">待维修</text>
</view> </view>
</view> </view>
</view> </view>
</view> </container-subgroup-two >
</view>
</template> </template>
<script> <script>
import statusNav from '../../components/status-nav.vue'; import containerSubgroupTwo from '@/components/containers/container-subgroup-two.vue';
import statusNav from '../../components/status-nav.vue';
export default { export default {
components: { components: {
statusNav statusNav,
containerSubgroupTwo
}, },
data() { data() {
return { return {
@ -133,78 +137,86 @@
</script> </script>
<style> <style>
.content{
padding-top: 80rpx;
}
.dataQuery-content { .dataQuery-content {
font-size: 24rpx; font-size: 24rpx;
color: #333333; color: #333333;
margin-top: 15rpx; margin-top: 15rpx;
} }
.dataQuery-content .li{
.dataQuery-content .li {
background-color: #FFFFFF; background-color: #FFFFFF;
padding: 26rpx 28rpx; padding: 26rpx 28rpx;
margin-bottom: 14rpx; margin-bottom: 14rpx;
} }
.dataQuery-content .li { .dataQuery-content .li {
position: relative; position: relative;
} }
.dataQuery-content .li .text-content{
display: flex;
border-bottom: 2rpx solid #EEEEEE;
padding-bottom: 10rpx;
} .dataQuery-content .li .text-content {
.dataQuery-content .li .text-content .left{ display: flex;
width: 48%; border-bottom: 2rpx solid #EEEEEE;
} padding-bottom: 10rpx;
.dataQuery-content .li .text-content .text{
margin-top: 20rpx;
}
.cor{
color: #ff9000;
}
.cor1{
color: #999999;
}
.dataQuery-content .li .icon{
background-image: url(../../static/iocn/zc.png);
width: 125rpx;
height: 91rpx;
display: flex;
align-items: center;
box-sizing: border-box;
background-size: 100%;
padding-left:30rpx;
right: 20rpx;
top: 20rpx;
position: absolute;
}
.dataQuery-content .li .icon .icon-text{
transform: rotateZ(20deg);
color: #53e5d0;
} }
.dataQuery-content .li .icon1{ .dataQuery-content .li .text-content .left {
background-image: url(../../static/iocn/dwx.png); width: 48%;
width: 125rpx; }
height: 91rpx;
display: flex;
align-items: center;
box-sizing: border-box;
background-size: 100%;
padding-left:30rpx;
right: 20rpx;
top: 20rpx;
position: absolute;
}
.dataQuery-content .li .icon1 .icon-text{
transform: rotateZ(20deg);
color: #ff0006;
} .dataQuery-content .li .text-content .text {
margin-top: 20rpx;
}
.cor {
color: #ff9000;
}
.cor1 {
color: #999999;
}
.dataQuery-content .li .icon {
background-image: url(../../static/iocn/zc.png);
width: 125rpx;
height: 91rpx;
display: flex;
align-items: center;
box-sizing: border-box;
background-size: 100%;
padding-left: 30rpx;
right: 20rpx;
top: 20rpx;
position: absolute;
}
.dataQuery-content .li .icon .icon-text {
transform: rotateZ(20deg);
color: #53e5d0;
}
.dataQuery-content .li .icon1 {
background-image: url(../../static/iocn/dwx.png);
width: 125rpx;
height: 91rpx;
display: flex;
align-items: center;
box-sizing: border-box;
background-size: 100%;
padding-left: 30rpx;
right: 20rpx;
top: 20rpx;
position: absolute;
}
.dataQuery-content .li .icon1 .icon-text {
transform: rotateZ(20deg);
color: #ff0006;
}
</style> </style>

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="content"> <view class="content">
<statusNav navBarTitle="客户详情"></statusNav> <statusNav navBarTitle="客户详情"></statusNav>
<view class="details-nav"> <view class="details-nav">
<view class="li"> <view class="li">
<image class="icon" src="../../static/iocn/ty.png" mode=""></image> <image class="icon" src="../../static/iocn/ty.png" mode=""></image>
@ -22,7 +22,6 @@
</view> </view>
</view> </view>
</view> </view>
<view class="details-content"> <view class="details-content">
<view class="title"> <view class="title">
<image class="img" src="../../static/iocn/dn.png" mode=""></image> <image class="img" src="../../static/iocn/dn.png" mode=""></image>
@ -105,68 +104,68 @@
</view> </view>
<picker mode="date" :value="time" @change="bindTimeChange"> <picker mode="date" :value="time" @change="bindTimeChange">
<view class="date"> <view class="date">
选择年份 <image class="icon" src="../../static/iocn/sjx.png" mode=""></image> 选择年份 <image class="icon" src="../../static/iocn/sjx.png" mode=""></image>
</view> </view>
</picker> </picker>
</view> </view>
<view class="project-list-content"> <view class="project-list-content">
<view class="li"> <view class="li">
<view class="text"> <view class="text">
南城校区液晶显示屏 南城校区液晶显示屏
</view> </view>
<view class="date"> <view class="date">
2022/3/1 2022/3/1
</view> </view>
</view> </view>
<view class="li"> <view class="li">
<view class="text"> <view class="text">
南城校区液晶显示屏 南城校区液晶显示屏
</view> </view>
<view class="date"> <view class="date">
2022/3/1 2022/3/1
</view> </view>
</view> </view>
<view class="li"> <view class="li">
<view class="text"> <view class="text">
南城校区液晶显示屏 南城校区液晶显示屏
</view> </view>
<view class="date"> <view class="date">
2022/3/1 2022/3/1
</view> </view>
</view> </view>
<view class="li"> <view class="li">
<view class="text"> <view class="text">
南城校区液晶显示屏 南城校区液晶显示屏
</view> </view>
<view class="date"> <view class="date">
2022/3/1 2022/3/1
</view> </view>
</view> </view>
</view> </view>
</view> </view>
<view class="contact-way"> <view class="contact-way">
<view class="title"> <view class="title">
客户微信 客户微信
</view> </view>
<image class="icon" src="../../static/iocn/wx.png" mode=""></image> <image class="icon" src="../../static/iocn/wx.png" mode=""></image>
</view> </view>
<view class="contact-way"> <view class="contact-way">
<view class="title"> <view class="title">
客户电话 客户电话
</view> </view>
<image class="icon1" src="../../static/iocn/dh.png" mode=""></image> <image class="icon1" src="../../static/iocn/dh.png" mode=""></image>
</view> </view>
</view> </view>
</template> </template>
<script> <script>
import statusNav from '../../components/status-nav.vue'; import statusNav from '../../components/status-nav.vue';
export default { export default {
components: { components: {
statusNav statusNav
}, },
data() { data() {
return { return {
time: '12:01' time: '12:01'
@ -213,7 +212,7 @@
background-color: #FFFFFF; background-color: #FFFFFF;
padding: 20rpx 18rpx; padding: 20rpx 18rpx;
border-bottom: 2rpx solid #DFDFDF; border-bottom: 2rpx solid #DFDFDF;
border-radius:0rpx 0rpx 10rpx 10rpx; border-radius: 0rpx 0rpx 10rpx 10rpx;
} }
.details-content .title { .details-content .title {
@ -254,77 +253,86 @@
.cor1 { .cor1 {
color: #FF4C4C; color: #FF4C4C;
} }
.project-list{
.project-list {
background-color: #FFFFFF; background-color: #FFFFFF;
padding: 22rpx 18rpx; padding: 22rpx 18rpx;
margin-top: 20rpx; margin-top: 20rpx;
} }
.project-list .title-content{
.project-list .title-content {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding-bottom: 16rpx; padding-bottom: 16rpx;
font-size: 24rpx; font-size: 24rpx;
border-bottom: 2rpx solid #E5E5E5; border-bottom: 2rpx solid #E5E5E5;
color: #999999; color: #999999;
} }
.project-list .title-content .title{
.project-list .title-content .title {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.project-list .title-content .title .icon{ .project-list .title-content .title .icon {
width: 23rpx; width: 23rpx;
height: 25rpx; height: 25rpx;
margin-right: 10rpx; margin-right: 10rpx;
} }
.project-list .title-content .date{
width: 120rpx; .project-list .title-content .date {
height: 40rpx; width: 120rpx;
display: flex; height: 40rpx;
justify-content: center; display: flex;
align-items: center; justify-content: center;
border-radius: 10rpx; align-items: center;
border: 2rpx solid #999999; border-radius: 10rpx;
font-size: 24rpx; border: 2rpx solid #999999;
display: flex; font-size: 24rpx;
display: flex;
align-items: center; align-items: center;
} }
.project-list .title-content .date .icon{
.project-list .title-content .date .icon {
width: 12rpx; width: 12rpx;
height: 18rpx; height: 18rpx;
margin-left: 5rpx; margin-left: 5rpx;
} }
.project-list-content .li{
.project-list-content .li {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
border-bottom: 2rpx solid #E5E5E5; border-bottom: 2rpx solid #E5E5E5;
padding: 18rpx; padding: 18rpx;
} }
.project-list-content .li .text{
.project-list-content .li .text {
font-weight: bold; font-weight: bold;
color: #4ca5ff; color: #4ca5ff;
font-size: 24rpx font-size: 24rpx
} }
.project-list-content .li .date{
.project-list-content .li .date {
color: #888888; color: #888888;
font-size: 24rpx font-size: 24rpx
} }
.contact-way{ .contact-way {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 40rpx 20rpx 34rpx; padding: 40rpx 20rpx 34rpx;
color: #696666; color: #696666;
justify-content: space-between; justify-content: space-between;
font-size: 28rpx; font-size: 28rpx;
border-bottom: 2rpx solid #E5E5E5; border-bottom: 2rpx solid #E5E5E5;
} }
.contact-way .icon{ .contact-way .icon {
width: 41rpx; width: 41rpx;
height: 32rpx; height: 32rpx;
} }
.contact-way .icon1{
.contact-way .icon1 {
width: 35rpx; width: 35rpx;
height: 39rpx; height: 39rpx;
} }