使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
注册
登录
weapp
/
ttb
关注
6
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
浏览代码
upload
dev_czc
HolyKnightIX
2 年前
父节点
5054bf3b4d
当前提交
086c50a1b8
共有
3 个文件被更改
,包括
4 次插入
和
2 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+1
-1
pages/Appointment/appointment.ttss
+1
-0
pages/appointDetail/appointDetail.ttml
+2
-1
pages/main/main.js
+ 1
- 1
pages/Appointment/appointment.ttss
查看文件
@@ -87,7 +87,7 @@
}
.list .item {
width: 9
0
%;
width: 9
5
%;
border: 1px solid #ffffff93;
margin: auto;
overflow: hidden;
+ 1
- 0
pages/appointDetail/appointDetail.ttml
查看文件
@@ -13,6 +13,7 @@
<button class="back" bindtap="back">返回</button>
<block tt:if="{{ detail.status != 8 }}">
<button tt:if="{{ detail.status == 0 }}" class="confirm" bindtap="confirm">确认预约</button>
<!-- <button tt:if="{{ detail.status == 0 }}" class="confirm" bindtap="confirm">修改预约时间</button> -->
<button tt:if="{{ detail.status == 5 }}" class="confirm" bindtap="cancel">取消预约</button>
</block>
</view>
+ 2
- 1
pages/main/main.js
查看文件
@@ -562,7 +562,8 @@ Page({
tenantId: res.tenant_id,
}, (res) => {
console.log(res);
if (res) {
if (res && res.data) {
res.data.map(file => {
if (file.starttime && file.endtime) {
file.end = file.starttime.substring(0, 7).replace(/-/g, ".") + "-" + file.endtime.substring(0, 7).replace(/-/g, ".");
撰写
预览
正在加载...
取消
保存