This commit is contained in:
2025-06-19 17:33:18 +08:00
commit f8f31dc4d9
437 changed files with 103080 additions and 0 deletions
@@ -0,0 +1,4 @@
{
"usingComponents": {},
"navigationBarTitleText": "已提交"
}
@@ -0,0 +1,108 @@
.container {
min-height: 100vh;
background: #EFF1F4;
.bg {
width: 100%;
height: 250px;
image {
width: 100%;
height: 100%;
display: block;
}
}
.sign-in-container {
width: calc(100% - 40px);
height: 90px;
margin: -120px auto 0;
border-radius: 8px;
position: relative;
.bg {
width: 100%;
height: 100%;
position: absolute;
image {
width: 100%;
height: 100%;
display: block;
}
}
.title {
position: absolute;
top: -114px;
left: 50%;
transform: translateX(-50%);
.icon {
width: 86px;
height: 70px;
image {
width: 100%;
height: 100%;
display: block;
}
}
.name {
margin-top: 8px;
color: #fff;
font-size: 20px;
}
}
.inf {
width: 100%;
padding: 24px 20px;
box-sizing: border-box;
position: relative;
.row {
width: 100%;
margin-bottom: 8px;
font-size: 14px;
display: flex;
// align-items: center;
.icon {
width: 14px;
height: 14px;
margin: 2px 0;
vertical-align: text-bottom;
image {
width: 100%;
height: 100%;
display: block;
}
}
.label {
margin: 0 8px 0 2px;
color: #9499AB;
white-space: nowrap;
}
.val {
color: #2E3A4F;
}
}
.btn-box {
width: calc(100% - 40px);
margin: 0px auto;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
.btn {
width: 100%;
height: 40px;
line-height: 40px;
box-sizing: border-box;
border-radius: 4px;
font-size: 15px;
font-weight: bold;
text-align: center;
}
.btn-record {
color: #4381FC;
border: 1px solid #4381FC;
}
.btn-back {
background: linear-gradient(90deg, #3B7CFC 0%, #548BFC 100%);
color: #fff;
}
}
}
}
}
@@ -0,0 +1,60 @@
// pages/backlog/backlogFeedback/backlogFeedback.ts
Page({
/**
* 页面的初始数据
*/
data: {},
comeBack() {
wx.navigateBack({
delta: 3,
success: function (res) {
// 通过eventChannel向被打开页面传送数据
getApp().EventChannel.emit('refresh');
},
fail: e => {
console.log(e);
}
});
},
/**
* 生命周期函数--监听页面加载
*/
onLoad() {},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {},
/**
* 生命周期函数--监听页面显示
*/
onShow() {},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
this.comeBack();
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {}
});
@@ -0,0 +1,23 @@
<!--pages/backlog/backlogFeedback/backlogFeedback.wxml-->
<view class="container">
<view class="bg">
<image src="../../../images/bg_page_blue.png" mode=""/>
</view>
<view class="sign-in-container">
<view class="bg">
<image src="../../../images/bg_record.png" mode=""/>
</view>
<view class="title">
<view class="icon">
<image src="../../../images/icon_success.png" mode=""/>
</view>
<view class="name">已处理</view>
</view>
<view class="inf">
<view class="btn-box">
<view class="btn btn-back" catchtap="comeBack">回待办列表</view>
</view>
</view>
</view>
</view>