diff --git a/api/user.js b/api/user.js
index 4e81271..809c828 100644
--- a/api/user.js
+++ b/api/user.js
@@ -619,3 +619,15 @@ export function lineCheckDevice(data) {
data
});
}
+/**
+ * 设备列表
+ * @param {Object} data
+ */
+export function deviceRecord(data) {
+ console.log(data)
+ return request({
+ url: `${functions.getDomain()}/api/device-record`,
+ method: "post",
+ data
+ });
+}
\ No newline at end of file
diff --git a/pages.json b/pages.json
index 07e3071..79317c6 100644
--- a/pages.json
+++ b/pages.json
@@ -274,6 +274,15 @@
}
}
+ ,{
+ "path" : "pages/deviceByAdd/deviceByAdd",
+ "style" :
+ {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false
+ }
+
+ }
],
"globalStyle": {
"navigationBarTextStyle": "white",
diff --git a/pages/deviceByAdd/deviceByAdd.vue b/pages/deviceByAdd/deviceByAdd.vue
new file mode 100644
index 0000000..5de0f6a
--- /dev/null
+++ b/pages/deviceByAdd/deviceByAdd.vue
@@ -0,0 +1,111 @@
+
+
+
+ 设备名:{{info?info.name:''}}
+ 设备型号:{{info?info.model:''}}
+ 设备编号:{{info?info.in_number:''}}
+ 检测项目:{{info?info.check_item:''}}
+ 检测目的:{{info?info.check_aim:''}}
+
+
+
+
+ 检测周期
+
+ {{typeCircle[typeCircleIds].title}}
+
+
+
+
+
+
+ 保养情况
+
+ {{material[materialIds]}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/deviceByAdd/index.scss b/pages/deviceByAdd/index.scss
new file mode 100644
index 0000000..a663932
--- /dev/null
+++ b/pages/deviceByAdd/index.scss
@@ -0,0 +1,57 @@
+.card{
+ @include wh(710upx,auto);
+ padding: 30upx;
+ margin: auto;
+ background: white;
+ view{
+ @include fonts(26upx,#333);
+ line-height: 55upx;
+ }
+}
+.from{
+ @include wh(750upx,auto);
+ background: white;
+ margin-top: 30upx;
+ .list{
+ width: 710upx;
+ margin: auto;
+ padding-top: 25upx;
+ padding-bottom: 25upx;
+ @include flex(center,space-between);
+ view{
+ @include fonts(26upx,#333);
+ width: 600upx;
+ }
+ .right{
+ width: 100upx;
+ @include flex(center,flex-end);
+ text{
+ @include fonts(24upx,#666)
+ }
+ image{
+ @include wh(22upx,33upx)
+ }
+ }
+ }
+ .remark{
+ width: 710upx;
+ margin: auto;
+ padding-top: 25upx;
+ padding-bottom: 25upx;
+ @include flex(flex-start,space-between);
+ textarea{
+ font-size: 26upx;
+ border: 1upx solid #F1F1F1;
+ padding: 10upx;
+ }
+ view{
+ @include fonts(26upx,#333);
+ width: 200upx;
+ }
+ }
+}
+.submit-btn{
+ @include wh(710upx,auto);
+ margin: auto;
+ margin-top: 30upx;
+}
\ No newline at end of file
diff --git a/pages/deviceList/deviceList.vue b/pages/deviceList/deviceList.vue
index 06c286c..6b953d5 100644
--- a/pages/deviceList/deviceList.vue
+++ b/pages/deviceList/deviceList.vue
@@ -1,6 +1,6 @@
-
+
@@ -54,6 +54,15 @@
lineCheckDevice({line_id:this.id,type:this.type}).then(res=>{
this.list=res
})
+ },
+ deviceByAdd(item,type){
+ console.log("type",type)
+ uni.navigateTo({
+ url: `../deviceByAdd/deviceByAdd?type=${type}&id=${this.id}&planInfo=${encodeURIComponent(JSON.stringify(item))}`,
+ success: res => {},
+ fail: () => {},
+ complete: () => {}
+ });
}
}
}
diff --git a/pages/stampingRecordList/stampingRecordList.vue b/pages/stampingRecordList/stampingRecordList.vue
index aac4ab1..819a79c 100644
--- a/pages/stampingRecordList/stampingRecordList.vue
+++ b/pages/stampingRecordList/stampingRecordList.vue
@@ -15,6 +15,11 @@
物料编号:{{item.product_number}}
+
+
+ 工时投入:
+
+
班次:
@@ -153,7 +158,8 @@
firstCheckLists({type:1}).then(res => {
this.list = res;
this.list.map(item=>{
- this.dateFormat(item.open_time)
+
+ console.log("时间",this.dateFormat(item.open_time))
})
})
},