2023-07-03 17:49:29 +08:00
|
|
|
<template>
|
2023-09-23 20:16:54 +08:00
|
|
|
<view class="headInfoBox">
|
2023-11-01 18:40:05 +08:00
|
|
|
<view class="mask" @click.stop="maskClick">
|
2023-07-24 16:56:46 +08:00
|
|
|
</view>
|
2023-09-23 20:16:54 +08:00
|
|
|
<view class="headInfo" @click.stop="showInfo">
|
|
|
|
<view class="infoLeft">
|
|
|
|
<view class="infoLogo">
|
|
|
|
<image src="../../static/images/theme/logo.png" mode="widthFix" class="logo"></image>
|
2023-08-18 17:28:11 +08:00
|
|
|
</view>
|
2023-09-23 20:16:54 +08:00
|
|
|
<view class="navList">
|
|
|
|
<template v-for="(item,index) in navList">
|
|
|
|
<navigator :key="index" :url="item.url" open-type="redirect" class="item">
|
|
|
|
<view class="itemInfo" :class="item.type?'navActive':''">
|
|
|
|
<image :src="item.imageUrl" mode="widthFix" v-if="item.type"></image>
|
|
|
|
<image :src="item.imageUrl2" mode="widthFix" v-if="!item.type"></image>
|
|
|
|
<text>{{item.name}}</text>
|
|
|
|
</view>
|
|
|
|
</navigator>
|
|
|
|
</template>
|
2023-07-24 16:56:46 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
2023-09-23 20:16:54 +08:00
|
|
|
<view class="infoRight" @click.stop="showInfo">
|
|
|
|
<view class="info" @click.stop="showInfoOpen">
|
|
|
|
<image class="toux" src="@/static/images/theme/toux.png" mode="widthFix"></image>
|
|
|
|
</view>
|
|
|
|
<view class="infoList" v-if="infoType">
|
|
|
|
<view class="userInfo">
|
|
|
|
<p>张星星 - 堆场计划员</p>
|
|
|
|
<p>12341234567</p>
|
|
|
|
</view>
|
2023-11-02 17:03:09 +08:00
|
|
|
<!-- <view class="borTop" @click="messageSql('center')">
|
2023-09-23 20:16:54 +08:00
|
|
|
<uni-icons type="vip" size="16" />
|
|
|
|
<text>数据库管理</text>
|
2023-11-02 17:03:09 +08:00
|
|
|
</view> -->
|
2023-09-23 20:16:54 +08:00
|
|
|
<view class="borTop" @click="tabsPort('center')">
|
|
|
|
<uni-icons type="loop" size="16" />
|
|
|
|
<text>切换港区</text>
|
|
|
|
</view>
|
|
|
|
<view class="borTop" @click="outLogin">
|
|
|
|
<uni-icons type="undo" size="16" />
|
|
|
|
<text>退出登录</text>
|
2023-08-18 17:28:11 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
2023-11-01 18:40:05 +08:00
|
|
|
<uni-popup ref="popup" background-color="#fff" @maskClick="close">
|
2023-09-23 20:16:54 +08:00
|
|
|
<view class="popupBox">
|
|
|
|
<view class="popupTitle">
|
|
|
|
请选择港区
|
|
|
|
</view>
|
|
|
|
<view class="ul">
|
|
|
|
<view class="li" v-for="(item,index) in portList" :key="index"
|
|
|
|
:class="{active:activeIndex == index}" @click="selectPort(item,index)">
|
|
|
|
<text>{{item.pamName}}</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="btnBox">
|
|
|
|
<button class="btn" type="primary" @click="toGo">确 定</button>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</uni-popup>
|
|
|
|
<uni-popup ref="popup2" type="dialog">
|
|
|
|
<uni-popup-dialog confirmText="确定" content="是否退出登录?" @close="close2"
|
|
|
|
@confirm="outConfirm"></uni-popup-dialog>
|
|
|
|
</uni-popup>
|
|
|
|
<uni-popup ref="popup3" type="dialog">
|
|
|
|
<view class="message">
|
|
|
|
<view class="title">
|
|
|
|
管理数据库
|
|
|
|
</view>
|
|
|
|
<view class="btnList">
|
|
|
|
<button class="searchBtn" type="default" @click="open">打开数据库</button>
|
|
|
|
<button class="searchBtn" type="default" @click="closeSql">关闭数据库</button>
|
|
|
|
<button class="searchBtn" type="default" @click="isOpen">判断数据库是否打开</button>
|
|
|
|
<button class="searchBtn" type="default" @click="createTable">创建数据库</button>
|
|
|
|
<button class="searchBtn" type="default" @click="dropTable">删除表</button>
|
|
|
|
<button class="searchBtn" type="default" @click="dropData">删除数据</button>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</uni-popup>
|
|
|
|
</view>
|
|
|
|
<LotusLoading :lotusLoadingData="lotusLoadingData"></LotusLoading>
|
2023-08-18 17:28:11 +08:00
|
|
|
</view>
|
2023-07-03 17:49:29 +08:00
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-09-23 20:16:54 +08:00
|
|
|
import sqlite from "../../common/sqlite.js"
|
|
|
|
import tableList from "../../common/createDataTable.js"
|
|
|
|
import LotusLoading from "../../components/Winglau14-lotusLoading/Winglau14-LotusLoading.vue";
|
2023-07-24 16:56:46 +08:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2023-09-23 20:16:54 +08:00
|
|
|
loginObj: {},
|
2023-07-24 16:56:46 +08:00
|
|
|
infoType: false,
|
|
|
|
// 弹框状态
|
|
|
|
type: "",
|
2023-09-23 20:16:54 +08:00
|
|
|
portList: [],
|
2023-07-24 16:56:46 +08:00
|
|
|
portId: "",
|
|
|
|
portName: "",
|
|
|
|
activeIndex: 0,
|
2023-08-18 17:28:11 +08:00
|
|
|
navList: [{
|
|
|
|
url: "/pages/index/index",
|
|
|
|
name: "装船指令",
|
|
|
|
type: false,
|
|
|
|
imageUrl: "../../static/images/theme/zcIcon1-1.png",
|
|
|
|
imageUrl2: "../../static/images/theme/zcIcon1-2.png"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
url: "/pages/discharge/index",
|
|
|
|
name: "卸船指令",
|
|
|
|
type: false,
|
|
|
|
imageUrl: "../../static/images/theme/xcIcon1-1.png",
|
|
|
|
imageUrl2: "../../static/images/theme/xcIcon1-2.png"
|
|
|
|
}, {
|
|
|
|
url: "/pages/shipWork/index",
|
|
|
|
name: "船舶作业",
|
|
|
|
type: false,
|
|
|
|
imageUrl: "../../static/images/theme/cbIcon1-1.png",
|
|
|
|
imageUrl2: "../../static/images/theme/cbIcon1-2.png"
|
|
|
|
}, {
|
|
|
|
url: "/pages/quality/index",
|
2023-11-01 18:40:05 +08:00
|
|
|
name: "残损信息",
|
2023-08-18 17:28:11 +08:00
|
|
|
type: false,
|
2023-11-01 18:40:05 +08:00
|
|
|
imageUrl: "../../static/images/theme/csIcon1-1.png",
|
|
|
|
imageUrl2: "../../static/images/theme/csIcon1-2.png"
|
2023-08-18 17:28:11 +08:00
|
|
|
}, {
|
|
|
|
url: "/pages/monitor/index",
|
2023-11-01 18:40:05 +08:00
|
|
|
name: "场位管控",
|
2023-08-18 17:28:11 +08:00
|
|
|
type: false,
|
2023-11-01 18:40:05 +08:00
|
|
|
imageUrl: "../../static/images/theme/jcIcon1-1.png",
|
|
|
|
imageUrl2: "../../static/images/theme/jcIcon1-2.png"
|
|
|
|
},
|
|
|
|
// {
|
|
|
|
// url: "/pages/receipt/index",
|
|
|
|
// name: "进出口货物交接单",
|
|
|
|
// type: false,
|
|
|
|
// imageUrl: "../../static/images/theme/jckIcon1-1.png",
|
|
|
|
// imageUrl2: "../../static/images/theme/jckIcon1-2.png"
|
|
|
|
// }
|
2023-08-18 17:28:11 +08:00
|
|
|
],
|
2023-09-23 20:16:54 +08:00
|
|
|
lotusLoadingData: {
|
|
|
|
isShow: false //设置显示加载中组件true显示false隐藏
|
|
|
|
},
|
2023-07-24 16:56:46 +08:00
|
|
|
}
|
|
|
|
},
|
2023-09-23 20:16:54 +08:00
|
|
|
components: {
|
|
|
|
LotusLoading
|
|
|
|
},
|
2023-08-18 17:28:11 +08:00
|
|
|
props: {
|
|
|
|
navIndex: {
|
|
|
|
type: Number,
|
|
|
|
default: 0,
|
2023-09-23 20:16:54 +08:00
|
|
|
required: true,
|
2023-08-18 17:28:11 +08:00
|
|
|
},
|
|
|
|
},
|
2023-07-24 16:56:46 +08:00
|
|
|
mounted() {
|
2023-09-23 20:16:54 +08:00
|
|
|
this.loginObj = uni.getStorageSync('loginObj')
|
2023-07-24 16:56:46 +08:00
|
|
|
this.activeIndex = uni.getStorageSync("selectPortIndex")
|
2023-08-18 17:28:11 +08:00
|
|
|
this.navList[this.navIndex].type = true
|
2023-07-24 16:56:46 +08:00
|
|
|
},
|
|
|
|
methods: {
|
2023-09-23 20:16:54 +08:00
|
|
|
maskClick() {
|
|
|
|
this.infoType = false
|
|
|
|
},
|
2023-07-24 16:56:46 +08:00
|
|
|
showInfo() {
|
2023-09-23 20:16:54 +08:00
|
|
|
this.infoType = false
|
|
|
|
|
|
|
|
},
|
|
|
|
showInfoOpen() {
|
|
|
|
if (!this.infoType) {
|
|
|
|
this.infoType = true
|
|
|
|
} else {
|
|
|
|
this.infoType = false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 获取所有港区
|
|
|
|
initData() {
|
|
|
|
uni.request({
|
|
|
|
url: `${this.$local}/api/app/user/getMinato?mediaType=pad`,
|
|
|
|
header: {
|
|
|
|
'Content-Type': 'application/json', //自定义请求头信息
|
|
|
|
'Authorization': `Bearer ${this.loginObj.access_token}`
|
|
|
|
},
|
|
|
|
method: 'GET', //请求方式,必须为大写
|
|
|
|
success: (res) => {
|
|
|
|
this.lotusLoadingData.isShow = false
|
|
|
|
if (res.data.status == 200) {
|
|
|
|
let newData = res.data.data
|
|
|
|
for (let key in newData) {
|
|
|
|
if (newData.hasOwnProperty(key)) {
|
|
|
|
this.portList.push({
|
|
|
|
pamId: key,
|
|
|
|
pamName: newData[key]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.portList.length > 0) {
|
|
|
|
this.$refs.popup.open(this.type)
|
|
|
|
this.portId = this.portList[this.activeIndex].pamId
|
|
|
|
this.portName = this.portList[this.activeIndex].pamName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 点击管理数据库
|
|
|
|
messageSql(type) {
|
|
|
|
this.type = type
|
|
|
|
this.$refs.popup3.open(type)
|
|
|
|
},
|
|
|
|
// 打开数据库
|
|
|
|
open() {
|
|
|
|
plus.sqlite.openDatabase({
|
|
|
|
name: 'dianji_chat',
|
|
|
|
path: '_doc/dianji_chat.db',
|
|
|
|
success: function(e) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'success',
|
|
|
|
title: '打开数据库成功'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
},
|
|
|
|
fail: function(e) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'error',
|
|
|
|
title: '打开数据库失败'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 关闭数据库
|
|
|
|
closeSql() {
|
|
|
|
plus.sqlite.closeDatabase({
|
|
|
|
name: 'dianji_chat',
|
|
|
|
success(e) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'success',
|
|
|
|
title: '关闭数据库成功'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
},
|
|
|
|
fail(e) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'error',
|
|
|
|
title: '关闭数据库失败'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 判断数据库是否打开
|
|
|
|
isOpen() {
|
|
|
|
let res = plus.sqlite.isOpenDatabase({
|
|
|
|
name: 'dianji_chat',
|
|
|
|
path: '_doc/dianji_chat.db',
|
|
|
|
});
|
|
|
|
if (res) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'success',
|
|
|
|
title: '数据库已打开'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'error',
|
|
|
|
title: '数据库未打开'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 创建所有数据库
|
|
|
|
createTable() {
|
|
|
|
tableList.createAllTable()
|
|
|
|
},
|
|
|
|
// 删除指定表
|
|
|
|
dropTable() {
|
|
|
|
let sql = 'DROP TABLE shipmentQualityConsultationRespList;'
|
|
|
|
plus.sqlite.selectSql({
|
|
|
|
name: 'dianji_chat',
|
|
|
|
sql: sql,
|
|
|
|
success: function(e) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'success',
|
|
|
|
title: '删除该表成功'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
},
|
|
|
|
fail: function(e) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'error',
|
|
|
|
title: '删除该表失败'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 删除指定表中数据
|
|
|
|
dropData() {
|
|
|
|
let sql = "delete from workSignTable"
|
|
|
|
plus.sqlite.selectSql({
|
|
|
|
name: 'dianji_chat',
|
|
|
|
sql: sql,
|
|
|
|
success: function(e) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'success',
|
|
|
|
title: '删除该表数据成功'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
},
|
|
|
|
fail: function(e) {
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'error',
|
|
|
|
title: '删除该表数据失败'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
2023-07-24 16:56:46 +08:00
|
|
|
},
|
2023-08-01 09:32:45 +08:00
|
|
|
// 点击切换港区
|
2023-07-24 16:56:46 +08:00
|
|
|
tabsPort(type) {
|
|
|
|
this.type = type
|
|
|
|
this.$refs.popup.open(type)
|
2023-09-23 20:16:54 +08:00
|
|
|
this.lotusLoadingData.isShow = true
|
|
|
|
this.initData()
|
2023-07-24 16:56:46 +08:00
|
|
|
},
|
|
|
|
// 选择弹框内容
|
|
|
|
selectPort(item, index) {
|
2023-09-23 20:16:54 +08:00
|
|
|
this.portName = item.pamName
|
|
|
|
this.portId = item.pamId
|
2023-07-24 16:56:46 +08:00
|
|
|
this.activeIndex = index
|
|
|
|
},
|
|
|
|
// 确认弹框
|
|
|
|
toGo() {
|
2023-09-23 20:16:54 +08:00
|
|
|
uni.request({
|
|
|
|
url: `${this.$local}/api/app/user/setMinato?mediaType=${this.mediaType}&pamNo=${this.portId}`,
|
|
|
|
header: {
|
|
|
|
'Content-Type': 'application/json', //自定义请求头信息
|
|
|
|
'Authorization': `Bearer ${this.loginObj.access_token}`
|
|
|
|
},
|
|
|
|
method: 'GET', //请求方式,必须为大写
|
|
|
|
success: (res) => {
|
|
|
|
if (res.data.status == 200) {
|
|
|
|
let portObj = {
|
|
|
|
portName: this.portName,
|
|
|
|
portId: this.portId
|
|
|
|
}
|
|
|
|
uni.setStorageSync('portObj', portObj);
|
|
|
|
uni.setStorageSync('selectPortIndex', this.activeIndex)
|
|
|
|
this.$refs.popup.close()
|
|
|
|
this.infoType = false
|
|
|
|
uni.showToast({
|
|
|
|
icon: 'success',
|
|
|
|
title: `切换到${this.portName}`
|
|
|
|
});
|
|
|
|
uni.navigateTo({
|
|
|
|
url: '/pages/index/index'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2023-07-24 16:56:46 +08:00
|
|
|
})
|
|
|
|
},
|
2023-11-01 18:40:05 +08:00
|
|
|
// 关闭弹框
|
|
|
|
close() {
|
|
|
|
this.$refs.popup.close()
|
|
|
|
this.portList = []
|
|
|
|
},
|
2023-07-24 16:56:46 +08:00
|
|
|
// 点击退出登录
|
|
|
|
outLogin() {
|
|
|
|
this.$refs.popup2.open()
|
|
|
|
},
|
|
|
|
// 确认退出登录
|
|
|
|
outConfirm() {
|
|
|
|
uni.navigateTo({
|
|
|
|
url: '/pages/login/index'
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 取消退出登录
|
|
|
|
close2() {
|
|
|
|
this.infoType = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-03 17:49:29 +08:00
|
|
|
</script>
|
|
|
|
|
2023-07-24 16:56:46 +08:00
|
|
|
<style lang="less" scoped>
|
2023-09-23 20:16:54 +08:00
|
|
|
.headInfoBox {
|
2023-07-24 16:56:46 +08:00
|
|
|
position: relative;
|
2023-07-03 17:49:29 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.mask {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
background-color: transparent;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2023-11-01 18:40:05 +08:00
|
|
|
pointer-events: none; // css穿透
|
2023-09-23 20:16:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.headInfo {
|
|
|
|
width: 100%;
|
|
|
|
height: 66px;
|
|
|
|
line-height: 66px;
|
|
|
|
background-color: #fff;
|
2023-11-01 18:40:05 +08:00
|
|
|
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
|
|
|
|
border-radius: 1px;
|
2023-07-03 17:49:29 +08:00
|
|
|
display: flex;
|
2023-09-23 20:16:54 +08:00
|
|
|
justify-content: space-between;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.infoLeft {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
width: 175px;
|
|
|
|
height: 32px;
|
|
|
|
margin: 16px;
|
|
|
|
margin-left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navList {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 12px;
|
|
|
|
|
|
|
|
.item {
|
|
|
|
height: 42px;
|
|
|
|
line-height: 42px;
|
|
|
|
border-radius: 8px;
|
|
|
|
background: #F2F7FC;
|
|
|
|
margin-right: 16px;
|
2023-08-18 17:28:11 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.itemInfo {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
color: #445173;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2023-11-01 18:40:05 +08:00
|
|
|
padding: 0 8px;
|
2023-09-23 20:16:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
image {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-top: 9px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.navActive {
|
|
|
|
background: #0067CF;
|
|
|
|
color: #fff !important;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
}
|
2023-08-18 17:28:11 +08:00
|
|
|
}
|
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.infoRight {
|
2023-07-24 16:56:46 +08:00
|
|
|
display: flex;
|
2023-09-23 20:16:54 +08:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2023-08-18 17:28:11 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.info {
|
|
|
|
margin-right: 20px;
|
2023-08-18 17:28:11 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.toux {
|
|
|
|
margin-top: 10rpx;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
border-radius: 50%;
|
|
|
|
overflow: hidden;
|
2023-08-18 17:28:11 +08:00
|
|
|
display: flex;
|
2023-09-23 20:16:54 +08:00
|
|
|
flex-direction: column;
|
2023-08-18 17:28:11 +08:00
|
|
|
justify-content: center;
|
|
|
|
}
|
2023-09-23 20:16:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.infoList {
|
|
|
|
width: 200px;
|
|
|
|
padding: 10px 20px;
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: #fff;
|
|
|
|
z-index: 999;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 60px;
|
|
|
|
|
|
|
|
.borTop {
|
|
|
|
border-top: 1px #ccc solid;
|
2023-08-18 17:28:11 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
/deep/.uni-icons {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2023-08-18 17:28:11 +08:00
|
|
|
}
|
2023-09-23 20:16:54 +08:00
|
|
|
}
|
|
|
|
}
|
2023-08-18 17:28:11 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.popupBox {
|
|
|
|
width: 280px;
|
|
|
|
height: 320px;
|
|
|
|
overflow: scroll;
|
|
|
|
|
|
|
|
.popupTitle {
|
|
|
|
width: 100%;
|
|
|
|
height: 48px;
|
|
|
|
line-height: 48px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #23262E;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: 1px solid #eee;
|
2023-08-18 17:28:11 +08:00
|
|
|
}
|
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.ul {
|
|
|
|
padding: 30px;
|
|
|
|
|
|
|
|
.li {
|
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
|
|
|
text-align: center;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
|
|
|
color: #0079fe;
|
|
|
|
border-color: #0079fe;
|
|
|
|
}
|
2023-08-18 17:28:11 +08:00
|
|
|
}
|
2023-07-24 16:56:46 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.btnBox {
|
|
|
|
height: 60px;
|
2023-08-18 17:28:11 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2023-09-23 20:16:54 +08:00
|
|
|
box-shadow: 0 -3px 7px 0 rgba(0, 0, 0, 0.10);
|
|
|
|
border-radius: 0 0 16px 16px;
|
2023-08-18 17:28:11 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.btn {
|
|
|
|
width: 170px;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
|
|
|
height: 36px;
|
|
|
|
line-height: 18px;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid rgba(0, 0, 0, .1);
|
|
|
|
}
|
2023-07-24 16:56:46 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.btn:last-child {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #0067CF;
|
2023-08-18 17:28:11 +08:00
|
|
|
}
|
2023-07-24 16:56:46 +08:00
|
|
|
}
|
2023-07-03 17:49:29 +08:00
|
|
|
}
|
2023-07-24 16:56:46 +08:00
|
|
|
|
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.message {
|
|
|
|
width: 400px;
|
|
|
|
padding: 30px;
|
|
|
|
background-color: #fff;
|
2023-07-24 16:56:46 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.title {
|
|
|
|
padding: 0 20px 10px;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: 1px solid black;
|
|
|
|
text-align: left;
|
|
|
|
line-height: 18px;
|
|
|
|
margin-bottom: 20px;
|
2023-07-24 16:56:46 +08:00
|
|
|
}
|
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.btnList {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2023-07-24 16:56:46 +08:00
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
.searchBtn {
|
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
margin-left: 0;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #0067CF;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2023-07-24 16:56:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-23 20:16:54 +08:00
|
|
|
/deep/.uni-dialog-title {
|
|
|
|
display: none;
|
|
|
|
}
|
2023-07-24 16:56:46 +08:00
|
|
|
}
|
2023-09-23 20:16:54 +08:00
|
|
|
|
2023-07-03 17:49:29 +08:00
|
|
|
}
|
2023-07-24 16:56:46 +08:00
|
|
|
</style>
|