mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 01:59:36 +08:00
1
This commit is contained in:
parent
ff8061b699
commit
736c4f7fab
@ -84,7 +84,8 @@
|
|||||||
"pages/reportRepair/assign/affirm/affirm",
|
"pages/reportRepair/assign/affirm/affirm",
|
||||||
"pages/reportRepair/assign/personList/personList",
|
"pages/reportRepair/assign/personList/personList",
|
||||||
"pages/reportRepair/assign/again/again",
|
"pages/reportRepair/assign/again/again",
|
||||||
"pages/reportRepair/repair/index/index"
|
"pages/reportRepair/repair/index/index",
|
||||||
|
"pages/reportRepair/repair/case/case"
|
||||||
],
|
],
|
||||||
"window": {
|
"window": {
|
||||||
"backgroundTextStyle": "light",
|
"backgroundTextStyle": "light",
|
||||||
|
66
miniprogram/pages/reportRepair/repair/case/case.js
Normal file
66
miniprogram/pages/reportRepair/repair/case/case.js
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
// pages/reportRepair/repair/case/case.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad(options) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
4
miniprogram/pages/reportRepair/repair/case/case.json
Normal file
4
miniprogram/pages/reportRepair/repair/case/case.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"navigationBarTitleText": "工单详情",
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
5
miniprogram/pages/reportRepair/repair/case/case.wxml
Normal file
5
miniprogram/pages/reportRepair/repair/case/case.wxml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<view class="containerView public">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</view>
|
3
miniprogram/pages/reportRepair/repair/case/case.wxss
Normal file
3
miniprogram/pages/reportRepair/repair/case/case.wxss
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.containerView.public {
|
||||||
|
background: none;
|
||||||
|
}
|
@ -20,9 +20,9 @@ Page({
|
|||||||
wx.navigateBack()
|
wx.navigateBack()
|
||||||
},
|
},
|
||||||
|
|
||||||
jumpEvaluate(){
|
jumpCase(){
|
||||||
wx.navigateTo({
|
wx.navigateTo({
|
||||||
url: '/pages/reportRepair/query/evaluate/evaluate',
|
url: '/pages/reportRepair/repair/case/case',
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="caseListView">
|
<view class="caseListView">
|
||||||
<view class="caseView" wx:for="{{10}}">
|
<view class="caseView" wx:for="{{10}}" bind:tap="jumpCase">
|
||||||
<view class="content ellipsisFont">王军发起一个订单王军发起一个订单王军发起一个订单</view>
|
<view class="content ellipsisFont">王军发起一个订单王军发起一个订单王军发起一个订单</view>
|
||||||
<view class="time">2024-01-01 10:10:10</view>
|
<view class="time">2024-01-01 10:10:10</view>
|
||||||
<view class="status"></view>
|
<view class="status"></view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user