Merge branch 'Branch_1' of https://git.u8t.cn/tangxinyue/alipay-emulator into Branch_1
This commit is contained in:
commit
77c3590e5b
2
main.js
2
main.js
|
|
@ -29,7 +29,7 @@ export function createApp() {
|
||||||
app.config.globalProperties.$system = plus.os.name;
|
app.config.globalProperties.$system = plus.os.name;
|
||||||
// #endif
|
// #endif
|
||||||
app.config.globalProperties.$systemInfo = systemInfo
|
app.config.globalProperties.$systemInfo = systemInfo
|
||||||
uni.setStorageSync('version', '1.0.6.sp11')
|
uni.setStorageSync('version', '1.0.6.sp12')
|
||||||
app.config.globalProperties.$version = uni.getStorageSync('version')
|
app.config.globalProperties.$version = uni.getStorageSync('version')
|
||||||
app.use(globalMethods);
|
app.use(globalMethods);
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@ function back(){
|
||||||
</liu-drag-button>
|
</liu-drag-button>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="headerBox" :style="{'padding-top':$systemInfo.statusBarHeight+'px'}">
|
<view class="headerBox" :style="{'padding-top':$systemInfo.statusBarHeight*2+'rpx'}">
|
||||||
<view class="header" >
|
<view class="header" >
|
||||||
<view class="left" @click="back()">
|
<view class="left" @click="back()">
|
||||||
<image src="/static/image/other/score/center/home.png" mode=""></image>
|
<image src="/static/image/other/score/center/home.png" mode=""></image>
|
||||||
|
|
@ -587,7 +587,7 @@ function back(){
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 42rpx;
|
margin-left: 64rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import DateTimePicker from '@/components/dengrq-datetime-picker/dateTimePicker/index.vue';
|
||||||
import {
|
import {
|
||||||
reactive,
|
reactive,
|
||||||
ref,
|
ref,
|
||||||
|
|
@ -18,7 +19,8 @@
|
||||||
english: '140',
|
english: '140',
|
||||||
physics: '75',
|
physics: '75',
|
||||||
chemistry: '85',
|
chemistry: '85',
|
||||||
biology: '79'
|
biology: '79',
|
||||||
|
time:'2025-6-25'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -105,6 +107,18 @@
|
||||||
function back() {
|
function back() {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
}
|
}
|
||||||
|
function onChangeStartDate(e){
|
||||||
|
editDialog.data.time=e
|
||||||
|
console.log(e)
|
||||||
|
}
|
||||||
|
function getTime(times,status){
|
||||||
|
let list=times.split('-')
|
||||||
|
if(status){
|
||||||
|
return list[0]+'年'
|
||||||
|
}else{
|
||||||
|
return list[0]+'年'+list[1]+'月'
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
@ -116,7 +130,7 @@
|
||||||
</liu-drag-button>
|
</liu-drag-button>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="group_1" :style="{'padding-top':$systemInfo.statusBarHeight+'px'}">
|
<view class="group_1" :style="{'padding-top':$systemInfo.statusBarHeight*2+'rpx'}">
|
||||||
<view class="rectangle_273">
|
<view class="rectangle_273">
|
||||||
<image @click="back()" class="group_14010" src="/static/image/other/score/chongqing/close.png" />
|
<image @click="back()" class="group_14010" src="/static/image/other/score/chongqing/close.png" />
|
||||||
<view class="flexcontainer"><text class="text_1"> 重庆市教育考试招生查询系统 </text><text class="text_2"> gkcj.cqksy.cn
|
<view class="flexcontainer"><text class="text_1"> 重庆市教育考试招生查询系统 </text><text class="text_2"> gkcj.cqksy.cn
|
||||||
|
|
@ -132,7 +146,7 @@
|
||||||
<view class="flexcontainer_1"><text class="text_3"> 菜单 </text>
|
<view class="flexcontainer_1"><text class="text_3"> 菜单 </text>
|
||||||
<image src="/static/image/other/score/chongqing/tab.png" />
|
<image src="/static/image/other/score/chongqing/tab.png" />
|
||||||
</view>
|
</view>
|
||||||
<text class="text_4"> 2026年普通高考综合查询 </text>
|
<text class="text_4"> {{ getTime(data.form.time,1) }}普通高考综合查询 </text>
|
||||||
</view>
|
</view>
|
||||||
<view class="group_48328">
|
<view class="group_48328">
|
||||||
<text class="text_5"> 欢迎您,{{data.form.name}}({{data.form.idNumber}}) </text>
|
<text class="text_5"> 欢迎您,{{data.form.name}}({{data.form.idNumber}}) </text>
|
||||||
|
|
@ -238,6 +252,12 @@
|
||||||
<text>总分</text>
|
<text>总分</text>
|
||||||
<text style="flex:1;text-align:right;font-size:28rpx;color:#333;">{{editTotal}}</text>
|
<text style="flex:1;text-align:right;font-size:28rpx;color:#333;">{{editTotal}}</text>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="formItem">
|
||||||
|
<text>时间</text>
|
||||||
|
<view style="width:100%;">
|
||||||
|
<DateTimePicker :defaultDate="editDialog.data.time" :mode="1" @onChange="onChangeStartDate" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="popup-footer">
|
<view class="popup-footer">
|
||||||
<view class="btn-cancel" @click="editDialog.show=false">取消</view>
|
<view class="btn-cancel" @click="editDialog.show=false">取消</view>
|
||||||
|
|
@ -800,7 +820,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 34rpx;
|
margin-left: 30rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text_9 {
|
.text_9 {
|
||||||
|
|
@ -815,7 +835,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 212rpx;
|
margin-left: 190rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -844,7 +864,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 34rpx;
|
margin-left: 30rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text_11 {
|
.text_11 {
|
||||||
|
|
@ -859,7 +879,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 212rpx;
|
margin-left: 200rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -888,7 +908,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 34rpx;
|
margin-left: 30rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text_13 {
|
.text_13 {
|
||||||
|
|
@ -903,7 +923,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 212rpx;
|
margin-left: 200rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -932,7 +952,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 34rpx;
|
margin-left: 30rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text_15 {
|
.text_15 {
|
||||||
|
|
@ -947,7 +967,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 212rpx;
|
margin-left: 200rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -984,7 +1004,7 @@
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-left: 34rpx;
|
margin-left: 30rpx;
|
||||||
|
|
||||||
.text_16 {
|
.text_16 {
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
|
|
@ -1013,7 +1033,7 @@
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 212rpx;
|
margin-left: 200rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1053,7 +1073,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 34rpx;
|
margin-left: 30rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text_19 {
|
.text_19 {
|
||||||
|
|
@ -1068,7 +1088,7 @@
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 184rpx;
|
margin-left: 170rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1105,7 +1125,7 @@
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
margin-top: 28rpx;
|
margin-top: 28rpx;
|
||||||
margin-left: 34rpx;
|
margin-left: 30rpx;
|
||||||
|
|
||||||
.text_20 {
|
.text_20 {
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
|
|
@ -1134,7 +1154,7 @@
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: -6rpx;
|
margin-bottom: -6rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 212rpx;
|
margin-left: 200rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1314,4 +1334,7 @@
|
||||||
border-bottom: none !important;
|
border-bottom: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.text_8{
|
||||||
|
padding-right: 10rpx;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -110,7 +110,7 @@
|
||||||
</liu-drag-button>
|
</liu-drag-button>
|
||||||
</view>
|
</view>
|
||||||
<view class="container">
|
<view class="container">
|
||||||
<view class="headerBox" :style="{'padding-top':$systemInfo.statusBarHeight+'px'}">
|
<view class="headerBox" :style="{'padding-top':$systemInfo.statusBarHeight*2+'rpx'}">
|
||||||
<view class="header" >
|
<view class="header" >
|
||||||
<view class="left" @click="back()">
|
<view class="left" @click="back()">
|
||||||
<image src="/static/image/other/score/guandong/leftIcon.png" mode=""></image>
|
<image src="/static/image/other/score/guandong/leftIcon.png" mode=""></image>
|
||||||
|
|
@ -132,7 +132,7 @@
|
||||||
{{ getTime(data.form.time,0) }}
|
{{ getTime(data.form.time,0) }}
|
||||||
</view>
|
</view>
|
||||||
<view class="dec">
|
<view class="dec">
|
||||||
{{ getTime(data.form.time,1) }}年广东省普通高等学校招生全国统一考试
|
{{ getTime(data.form.time,1) }}广东省普通高等学校招生全国统一考试
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<image class="bgimg" src="/static/image/other/score/guandong/guandongbg.png" mode="widthFix"></image>
|
<image class="bgimg" src="/static/image/other/score/guandong/guandongbg.png" mode="widthFix"></image>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import DateTimePicker from '@/components/dengrq-datetime-picker/dateTimePicker/index.vue';
|
||||||
import {
|
import {
|
||||||
reactive,
|
reactive,
|
||||||
ref,
|
ref,
|
||||||
|
|
@ -19,7 +20,8 @@
|
||||||
english: '95',
|
english: '95',
|
||||||
physics: '66',
|
physics: '66',
|
||||||
chemistry: '85',
|
chemistry: '85',
|
||||||
geography: '86'
|
geography: '86',
|
||||||
|
time:'2025-6-25'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const total = computed(() => {
|
const total = computed(() => {
|
||||||
|
|
@ -104,6 +106,18 @@
|
||||||
function back(){
|
function back(){
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
}
|
}
|
||||||
|
function onChangeStartDate(e){
|
||||||
|
editDialog.data.time=e
|
||||||
|
console.log(e)
|
||||||
|
}
|
||||||
|
function getTime(times,status){
|
||||||
|
let list=times.split('-')
|
||||||
|
if(status){
|
||||||
|
return list[0]+'年'
|
||||||
|
}else{
|
||||||
|
return list[0]+'年'+list[1]+'月'
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
@ -114,7 +128,7 @@
|
||||||
<c-lottie ref="cLottieRef" :src='$watermark()' width="94px" height='74px' :loop="true"></c-lottie>
|
<c-lottie ref="cLottieRef" :src='$watermark()' width="94px" height='74px' :loop="true"></c-lottie>
|
||||||
</liu-drag-button>
|
</liu-drag-button>
|
||||||
</view>
|
</view>
|
||||||
<view class="group_1" :style="{'padding-top':$systemInfo.statusBarHeight+'px'}">
|
<view class="group_1" :style="{'padding-top':$systemInfo.statusBarHeight*2+'rpx'}">
|
||||||
<view class="rectangle_273">
|
<view class="rectangle_273">
|
||||||
<image @click="back()" class="group_14010" src="/static/image/other/score/chongqing/close.png" />
|
<image @click="back()" class="group_14010" src="/static/image/other/score/chongqing/close.png" />
|
||||||
<view class="flexcontainer"><text class="text_1"> 成绩查询-河北省普通高校招生考试 </text><text class="text_2"> xxcx.hebeea.edu.cn
|
<view class="flexcontainer"><text class="text_1"> 成绩查询-河北省普通高校招生考试 </text><text class="text_2"> xxcx.hebeea.edu.cn
|
||||||
|
|
@ -129,16 +143,16 @@
|
||||||
<image src="/static/image/other/score/hebei/heibeiheaderBg.png" mode="widthFix" style="width: 100%;"></image>
|
<image src="/static/image/other/score/hebei/heibeiheaderBg.png" mode="widthFix" style="width: 100%;"></image>
|
||||||
<view class="group_48368">
|
<view class="group_48368">
|
||||||
<view class="rectangle_23396">
|
<view class="rectangle_23396">
|
||||||
<view class="flexcontainer"><text class="text_1"> 2025年河北省普通高校招生考试<br>成绩查询 </text></view>
|
<view class="flexcontainer"><text class="text_1"> {{ getTime(data.form.time,1) }}河北省普通高校招生考试<br>成绩查询 </text></view>
|
||||||
</view>
|
</view>
|
||||||
<image src="/static/image/other/score/hebei/Watermark.png" mode="widthFix" class="watermark"></image>
|
<image src="/static/image/other/score/hebei/Watermark.png" mode="widthFix" class="watermark"></image>
|
||||||
<view class="rectangle_23397" @click="openEditDialog">
|
<view class="rectangle_23397" @click="openEditDialog">
|
||||||
<view class="table2">
|
<view class="table2">
|
||||||
<view class="flexcontainer_1">
|
<view class="flexcontainer_1">
|
||||||
<view class="group_48370">
|
<view class="group_48370">
|
||||||
<text class="text_2"> 姓名:{{data.form.name}} </text>
|
<view class="text_2"> <text style="margin-right: 20rpx;margin-left:10rpx;"> 姓</text>名:{{data.form.name}} </view>
|
||||||
<text class="text_3"> 证件号:{{data.form.idNumber}} </text>
|
<text class="text_3"> 考生号:{{data.form.examNumber}} </text>
|
||||||
<text class="text_4"> 考生号:{{data.form.examNumber}} </text>
|
<text class="text_4"> 证件号:{{data.form.idNumber}} </text>
|
||||||
</view>
|
</view>
|
||||||
<view class="group_48369">
|
<view class="group_48369">
|
||||||
<view class="rectangle_23389">
|
<view class="rectangle_23389">
|
||||||
|
|
@ -259,6 +273,12 @@
|
||||||
<text>总分</text>
|
<text>总分</text>
|
||||||
<text style="flex:1;text-align:right;font-size:28rpx;color:#333;">{{editTotal}}</text>
|
<text style="flex:1;text-align:right;font-size:28rpx;color:#333;">{{editTotal}}</text>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="formItem">
|
||||||
|
<text>时间</text>
|
||||||
|
<view style="width:100%;">
|
||||||
|
<DateTimePicker :defaultDate="editDialog.data.time" :mode="1" @onChange="onChangeStartDate" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="popup-footer">
|
<view class="popup-footer">
|
||||||
<view class="btn-cancel" @click="editDialog.show=false">取消</view>
|
<view class="btn-cancel" @click="editDialog.show=false">取消</view>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue