Commit a344f63f authored by xinzhedeai's avatar xinzhedeai

数据列表对接 login使用公共方法

parent 8c72da9d
import request from '@/common/request.js'
export function getSelectList(data) { // 获取下拉列表数据
return request({
url: '/product/getList',
method: 'get',
data
})
}
export function getDetailInfo(data) { // 获取下拉列表数据
return request({
url: '/product/getList',
method: 'get',
data
})
}
export function saveData(data) { // 获取下拉列表数据
return request({
url: '/product/getList',
method: 'post',
data
})
}
export function getDict(data) { // 获取下拉列表数据
return request({
url: '/system/dict/data/type/'+data.type,
method: 'get',
})
}
import request from '@/common/request.js'
export function login(params) { // 登录获取token
return request({
url: '/weixin/wxLogin',
method: 'post',
data: params.data
})
}
\ No newline at end of file
import { showCustomModal } from "./util";
const BASE_URL = 'http://192.168.2.14:8080';
const REQUEST_TIMEOUT = 30000;
export default function request(options) {
return new Promise((resolve, reject) => {
uni.request({
url: options.url,
method: options.method || 'GET',
data: options.data || {},
header: options.header || {
'Content-Type': 'application/json',
},
success: (res) => {
console.log(res, 'request')
if (res.code === 200) {
resolve(res.data);
} else {
reject(res);
}
},
fail: (err) => {
reject(err);
}
});
});
}
uni.addInterceptor("request", {
invoke(args) {
// request 触发前拼接 url
args.url = BASE_URL + args.url
},
success(res) {
const {
code,
msg
} = res.data;
console.log('addInterceptor', code, msg)
if (code !== 200) {
showCustomModal({
content: msg,
});
// uni.navigateTo({
// url: "/pages/login/login"
// });
return;
}
return Promise.resolve(res.data);
},
fail(err) {
uni.showToast({
title: "网络异常",
icon: "error",
duration: 2000
});
return Promise.reject(err);
}
});
\ No newline at end of file
......@@ -84,7 +84,15 @@
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/home/paokongceliang",
"style" :
{
"navigationBarTitleText" : ""
}
}
],
"globalStyle": {
......
......@@ -15,7 +15,7 @@
</p>
<p class="list-item">
<image src="/static/image/home/icon1.png" alt="" />
<span>登录</span>
<span>入出date</span>
<button size="mini" class="funcBtn" type="primary" @click="navTo('import')">导入导出</button>
</p>
<p class="list-item">
......@@ -38,11 +38,16 @@
<span>钻孔测量数据列表</span>
<button size="mini" class="funcBtn" type="primary" @click="navTo('export')">导出</button>
</p>
<!-- <p class="list-item">
<p class="list-item">
<image src="/static/image/home/5.png" alt="" />
<span>导入数据预览</span>
<button size="mini" class="funcBtn" type="primary" @click="navTo('importFileDataPreview')">进入</button>
</p> -->
</p>
<p class="list-item">
<image src="/static/image/home/5.png" alt="" />
<span>炮孔测量</span>
<button size="mini" class="funcBtn" type="primary" @click="navTo('paokongceliang')">进入</button>
</p>
<view class="footer">
<span>
威海晶合数字矿山技术有限公司
......@@ -79,64 +84,6 @@
uni.hideTabBar()
},
methods: {
exportData2Excel() {
//要导出的json数据
// const jsonData = [{
// name: '测试数据',
// phone: '123456',
// email: '123@456.com'
// }
// ]
const jsonData = uni.getStorageSync('importDataList') || []
if(!jsonData.length){
showCustomModal({
content: '本地暂无可导出数据,请确认'
})
return
}
//列标题
let worksheet = "sheet1";
let str = `<tr>
<td>工程名称</td>
<td>中段名称</td>
<td>分段名称</td>
<td>排位线名称</td>
<td>炮孔编号</td>
<td>透孔</td>
<td>设计孔深</td>
<td>设计倾角</td>
<td>实测孔深</td>
<td>实测倾角</td>
<td>实测时间</td>
</tr>`;
//循环遍历,每行加入tr标签,每个单元格加td标签
for (let i = 0; i < jsonData.length; i++) {
str += `<tr>
<td>${jsonData[i]['engineeringName']}</td>
<td>${jsonData[i]['middleSectionName']}</td>
<td>${jsonData[i]['segmentName']}</td>
<td>${jsonData[i]['alignmentLineName']}</td>
<td>${jsonData[i]['boreholeNumber']}</td>
<td>${jsonData[i]['throughHole']}</td>
<td>${jsonData[i]['designHoleDepth']}</td>
<td>${jsonData[i]['designInclination']}</td>
<td>${jsonData[i]['realTestHoleDepth'] || ''}</td>
<td>${jsonData[i]['realTestInclination'] || ''}</td>
<td>${jsonData[i]['realTestTime'] || ''}</td>
</tr>`;
}
//下载的表格模板数据
let template = `<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head><!--[if gte mso 9]><xml encoding="UTF-8"><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet>
<x:Name>${worksheet}</x:Name>
<x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet>
</x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]-->
</head><body><table>${str}</table></body></html>`;
//下载模板
exportFile(template);
},
navTo(flag){
if(flag === 'export'){
this.exportData2Excel()
......@@ -156,90 +103,16 @@
url = '/pages/home/blueSearch'
}else if(flag === 'importFileDataPreview'){
url = '/pages/home/importFileDataPreview'
}else if(flag === 'paokongceliang'){
url = '/pages/home/paokongceliang'
}
uni.navigateTo({
url
})
}
}
}
// 导出文件到手机 fileData:要写入到文件的数据,返回参数为文档路径
function exportFile (fileData,documentName="项目Excel文件") {
/*
PRIVATE_DOC: 应用私有文档目录常量
PUBLIC_DOCUMENTS: 程序公用文档目录常量
*/
plus.io.requestFileSystem(plus.io.PUBLIC_DOCUMENTS, function(fs) {
let rootObj = fs.root;
let fullPath = rootObj.fullPath;
// let reader = rootObj.createReader();
// console.log(reader);
// reader.readEntries((res)=>{
// console.log(res); //这里拿到了该目录下所有直接文件和目录
// },(err)=>{console.log(err);})
console.log("开始导出数据********");
// 创建文件夹
rootObj.getDirectory(documentName, {
create: true
}, function(dirEntry) {
//获取当前的年月继续创建文件夹
let date = new Date();
let year = date.getFullYear();
let month = date.getMonth() + 1;
dirEntry.getDirectory(`${year}${month}月`,{
create:true
},function(dirEntry2){
// 创建文件,防止重名
let fileName = "excel"+getUnixTime(formatDateThis(new Date()));
console.log(fileName);
dirEntry2.getFile(`${fileName}.xlsx`, {
create: true
}, function(fileEntry) {
fileEntry.createWriter(function(writer) {
writer.onwritestart = (e)=>{
uni.showLoading({
title:"正在导出",
mask:true
})
}
// /storage/emulated/0指的就是系统路径
let pathStr = fullPath.replace("/storage/emulated/0","");
writer.onwrite = (e) => {
// 成功导出数据;
uni.hideLoading();
setTimeout(()=>{
showCustomModal({
content: `导出成功=>文件位置:${pathStr}/${documentName}/${year}${month}月`
})
// uni.showToast({
// title:"成功导出",
// icon:"success"
// })
// that.successTip = `文件位置:${pathStr}/${documentName}/${year}年${month}月`;
},500)
};
// 写入内容;
writer.write(fileData);
}, function(e) {
console.log(e.message);
});
});
})
});
});
}
</script>
<style lang="scss">
.wrapper{
......
<template>
<view class="pageWrapper">
<table>
<caption>导入数据预览</caption>
<tr>
<th>工程名称</th>
<th>中段名称</th>
<th>分段名称</th>
<th>排位线名称</th>
<th>炮孔编号</th>
<th>透孔</th>
<th>设计孔深</th>
<th>设计倾角</th>
<th>实测孔深</th>
<th>实测倾角</th>
<th>实测时间</th>
</tr>
<tr v-for="item in dataList">
<td>{{item['engineeringName']}}</td>
<td>{{item['middleSectionName']}}</td>
<td>{{item['segmentName']}}</td>
<td>{{item['alignmentLineName']}}</td>
<td>{{item['boreholeNumber']}}</td>
<td>{{item['throughHole']}}</td>
<td>{{item['designHoleDepth']}}</td>
<td>{{item['designInclination']}}</td>
<td>{{item['realTestHoleDepth']}}</td>
<td>{{item['realTestInclination']}}</td>
<td>{{item['realTestTime']}}</td>
</tr>
</table>
<view>
<view class="uni-container">
<uni-table ref="table" :loading="loading" border stripe type="selection" emptyText="暂无更多数据" @selection-change="selectionChange">
<uni-tr>
<uni-th width="150" align="center">日期</uni-th>
<uni-th width="150" align="center">姓名</uni-th>
<uni-th align="center">地址</uni-th>
<uni-th width="204" align="center">设置</uni-th>
</uni-tr>
<uni-tr v-for="(item, index) in tableData" :key="index">
<uni-td>{{ item.date }}</uni-td>
<uni-td>
<view class="name">{{ item.name }}</view>
</uni-td>
<uni-td align="center">{{ item.address }}</uni-td>
<uni-td>
<view class="uni-group">
<button class="uni-button" size="mini" type="primary">修改</button>
<button class="uni-button" size="mini" type="warn">删除</button>
</view>
</uni-td>
</uni-tr>
</uni-table>
<view class="uni-pagination-box"><uni-pagination show-icon :page-size="pageSize" :current="pageCurrent" :total="total" @change="change" /></view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
dataList: []
}
import tableData from './tableData.js'
export default {
data() {
return {
searchVal: '',
tableData: [],
// 每页数据量
pageSize: 10,
// 当前页
pageCurrent: 1,
// 数据总量
total: 0,
loading: false
}
},
onLoad() {
this.selectedIndexs = []
this.getData(1)
},
methods: {
// 多选处理
selectedItems() {
return this.selectedIndexs.map(i => this.tableData[i])
},
methods: {
// 多选
selectionChange(e) {
console.log(e.detail.index)
this.selectedIndexs = e.detail.index
},
//批量删除
delTable() {
console.log(this.selectedItems())
},
// 分页触发
change(e) {
this.$refs.table.clearSelection()
this.selectedIndexs.length = 0
this.getData(e.current)
},
onLoad() {
this.dataList = uni.getStorageSync('importDataList')
// 搜索
search() {
this.getData(1, this.searchVal)
},
// 获取数据
getData(pageCurrent, value = '') {
this.loading = true
this.pageCurrent = pageCurrent
this.request({
pageSize: this.pageSize,
pageCurrent: pageCurrent,
value: value,
success: res => {
// console.log('data', res);
this.tableData = res.data
this.total = res.total
this.loading = false
}
})
},
// 伪request请求
request(options) {
const { pageSize, pageCurrent, success, value } = options
let total = tableData.length
let data = tableData.filter((item, index) => {
const idx = index - (pageCurrent - 1) * pageSize
return idx < pageSize && idx >= 0
})
if (value) {
data = []
tableData.forEach(item => {
if (item.name.indexOf(value) !== -1) {
data.push(item)
}
})
total = data.length
}
setTimeout(() => {
typeof success === 'function' &&
success({
data: data,
total: total
})
}, 500)
}
}
}
</script>
<style>
.pageWrapper {
overflow-x: auto;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
/* margin: 0; */
/* padding: 20rpx; */
}
/* #ifndef H5 */
/* page {
padding-top: 85px;
} */
/* #endif */
.uni-group {
display: flex;
align-items: center;
}
</style>
h1 {
text-align: center;
color: #333;
}
table {
width: 100vw;
border-collapse: collapse;
/* margin: 20px 0; */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
background-color: #fff;
}
th,
td {
padding: 12rpx;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #1499ff;
color: white;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #e0e0e0;
}
</style>
\ No newline at end of file
This diff is collapsed.
export default [{
"date": "2020-09-01",
"name": "Dcloud1",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-02",
"name": "Dcloud2",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-03",
"name": "Dcloud3",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-04",
"name": "Dcloud4",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-05",
"name": "Dcloud5",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-06",
"name": "Dcloud6",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-07",
"name": "Dcloud7",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-08",
"name": "Dcloud8",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-09",
"name": "Dcloud9",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-10",
"name": "Dcloud10",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-11",
"name": "Dcloud11",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-12",
"name": "Dcloud12",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-13",
"name": "Dcloud13",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-14",
"name": "Dcloud14",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-15",
"name": "Dcloud15",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-16",
"name": "Dcloud16",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-01",
"name": "Dcloud17",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-02",
"name": "Dcloud18",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-03",
"name": "Dcloud19",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-04",
"name": "Dcloud20",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-05",
"name": "Dcloud21",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-06",
"name": "Dcloud22",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-07",
"name": "Dcloud23",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-08",
"name": "Dcloud24",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-09",
"name": "Dcloud25",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-10",
"name": "Dcloud26",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-11",
"name": "Dcloud27",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-12",
"name": "Dcloud28",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-13",
"name": "Dcloud29",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-14",
"name": "Dcloud30",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-15",
"name": "Dcloud31",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-16",
"name": "Dcloud32",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-01",
"name": "Dcloud33",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-02",
"name": "Dcloud34",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-03",
"name": "Dcloud35",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-04",
"name": "Dcloud36",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-05",
"name": "Dcloud37",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-06",
"name": "Dcloud38",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-07",
"name": "Dcloud39",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-08",
"name": "Dcloud40",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-09",
"name": "Dcloud41",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-10",
"name": "Dcloud42",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-11",
"name": "Dcloud43",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-12",
"name": "Dcloud44",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2020-09-13",
"name": "Dcloud45",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2020-09-14",
"name": "Dcloud46",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2020-09-15",
"name": "Dcloud47",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2020-09-16",
"name": "Dcloud48",
"address": "上海市普陀区金沙江路 1516 弄"
}]
......@@ -19,9 +19,12 @@
<script>
import {showCustomToast} from '../../common/util.js'
import {login} from '../../api/login.js'
export default {
onLoad() {
/**
*
* {"errMsg":"login:ok","code":"0f1q6Tll2gxgEe4Apiml2fxzdl4q6Tlh"}
* {
"encryptedData": "z47dFJgWWcFlRiN38qzwykrxraYUj/caxt8nNJb/YonFtuGtMHCirL5G/GKWs/T7UDfmREUgyJ3z9nBiuCDE9XIbDslKTO3hpdM0Lw98gVZKOMtSjbmtAYTLbkUdDn4J6RdPYLIdCF8pUaqSZxkD+41tXW1JXKYrEuLWAZ5fmxn4rV0vCsnS+ciRdUWToq8s/KkMNHb0/1nlIyho5dz5GO1ac+BNvfk0YPrgkQdvMSCzB5NAQxUfFQERyErMW9dfQeQLXpelu0F00q778V1xAgmFWFh9IFIwVUyzSsCsMQHZpDPZT8nM3l/kNPRpK50L2msSxJ9H7lp2M8oUcQDPRttPakj1TyYb3iGDs6dx4lMBA38qbw5IYvWmrXw+A7avz/o+0u0RRrUR99u+ert6V1cg8ubDbMJGDqzAPlsTt6OdzIsGNZfddVZ/HR/9vJQc5OCgnMFRVDU9S+OTZbFLHQ==",
"iv": "kdDnOvCrhjUS5J1vA5fK9A==",
......@@ -39,21 +42,11 @@
"errMsg": "getUserInfo:ok"
}
*/
const token = uni.getStorageSync('accessToken')
if(!token){
this.wxLogin()
}
uni.login({
provider: 'weixin',
success: (loginRes)=> {
console.log('loginRes: '+JSON.stringify(loginRes));
// 获取用户信息
uni.getUserInfo({
provider: 'weixin',
success: (infoRes) => {
this.getToken()
console.log('infoRes:' + JSON.stringify(infoRes));
}
});
}
});
},
data() {
......@@ -62,15 +55,66 @@
}
},
methods: {
async getToken(reqObj){
async wxLogin(){
const loginRes = await this.getWxCode()
if(!loginRes.code){
return
}
const userInfo = await this.getUserInfo()
if(!userInfo.iv){
return
}
await this.getToken(loginRes.code, userInfo)
},
getWxCode(){
return new Promise((resolve, reject) => {
uni.login({
provider: 'weixin',
success: (loginRes) => {
console.log('loginRes: ' + JSON.stringify(loginRes));
resolve(loginRes);
},
fail: (err) => reject(err) // 添加失败处理
});
});
},
getUserInfo(){
return new Promise((resolve, reject) => {
uni.getUserInfo({
provider: 'weixin',
success: (infoRes) => {
console.log('infoRes:' + JSON.stringify(infoRes));
resolve(infoRes);
},
fail: (err) => reject(err) // 添加失败处理
});
});
},
async getToken(code, userInfo){
let res = await login({
data: {
"code": code,
"encryptedIv": userInfo.iv,
"encryptedData": userInfo.encryptedData
},
})
console.log('res', res)
if(res){
uni.setStorageSync('accessToken', res.token)
console.log('获取token', res.token)
}
// let [error, res] = await uni.request({
// url: `${BASE_URI}/api/login/weChatLogin`,
// url: `http://192.168.2.14:8080/weixin/wxLogin`,
// data: {
// ...reqObj
// "code": code,
// "encryptedIv": userInfo.iv,
// "encryptedData": userInfo.encryptedData
// },
// method,
// method: 'POST',
// header: {
// 'accessToken': uni.getStorageSync('accessToken'),
// // 'accessToken': uni.getStorageSync('accessToken'),
// }
// });
......@@ -80,10 +124,9 @@
// })
// return
// }
// if(res){
// uni.setStorageSync('accessToken', res.accessToken)
// if(res.data.code === 200){
// uni.setStorageSync('accessToken', res.data.token)
// }
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment