zhaozhipeng 3 سال پیش
والد
کامیت
989c91ffd5
6فایلهای تغییر یافته به همراه81 افزوده شده و 29 حذف شده
  1. 14 0
      src/common/native.js
  2. 1 1
      src/common/request.js
  3. 10 9
      src/components/dj-modal.vue
  4. 20 9
      src/components/dj-navbar.vue
  5. 34 8
      src/pages/index/index.vue
  6. 2 2
      src/pages/index/upKeepInfo.vue

+ 14 - 0
src/common/native.js

@@ -19,4 +19,18 @@ export function returnApp () {
       }
     )
   })
+}
+
+// 扫码
+export function scanCode () {
+  return new Promise((resolve, reject) => {
+    window.YifengPlugins.scanQRCode(
+	  result => {
+		resolve(result)
+	  },
+	  error => {
+		reject(error)
+	  }
+    )
+  })
 }

+ 1 - 1
src/common/request.js

@@ -3,7 +3,7 @@
 const baseUrl =  'http://39.100.230.190:30046'
 
 // 文件上传地址
-const fileUrl =  'http://81.70.84.72:30045'
+const fileUrl =  'http://39.100.230.190:30045'
 
 
 // import { showLoading,hideLoading } from './loading.js'

+ 10 - 9
src/components/dj-modal.vue

@@ -122,15 +122,16 @@
 			// 扫码新增
 			sao_add() {
 				this.cancle()
-				uni.scanCode({
-				    onlyFromCamera: true,
-				    success: function (res) {
-						let number = res.result
-				        uni.navigateTo({
-				        	url: `/pages/index/addUpkeep?number=${number}`
-				        })
-				    }
-				});
+				scanCode().then(res=>{
+					uni.navigateTo({
+						url: `/pages/index/addUpkeep?number=${res}`
+					})
+				}).catch(res=> {
+					this.$refs.uToast.show({
+						title: '扫码失败',
+						type: 'error'
+					}) 
+				})
 			}
 		}
 	}

+ 20 - 9
src/components/dj-navbar.vue

@@ -8,10 +8,17 @@
 				<u-col :span="colSlice[1]" class="d-flex u-font-xl" justify="center" v-if="fixTitle">
 					<text>{{ fixTitle }}</text>
 				</u-col>
-				<u-col :span="colSlice[1]" class="d-flex" justify="center" v-else @click="change_shift">
-					<view class="u-m-r-10 u-font-xl">班次:{{ title ?  title : '无'}}</view>
-					<!-- <img src="/static/xiala.png" style="width:18rpx;height:15rpx;" /> -->
-					<dj-image src="/static/xiala.png" widthImg="18" heightImg="12" style="line-height: 10rpx;"></dj-image>
+				<u-col :span="colSlice[1]" class="d-flex" justify="center" v-else>
+					<view class="d-flex a-center flex-1 j-center" @click="change_shift">
+						<view class="u-m-r-10 u-font-xl">班次:{{ title ?  title : '无'}}</view>
+						<!-- <img src="/static/xiala.png" style="width:18rpx;height:15rpx;" /> -->
+						<dj-image src="/static/xiala.png" widthImg="18" heightImg="12" style="line-height: 10rpx;"></dj-image>
+					</view>
+					<view class="d-flex a-center flex-1 j-center" @click="change_press">
+						<view class="u-m-r-10 u-font-xl">类型:{{ pressType ?  pressType : '无'}}</view>
+						<!-- <img src="/static/xiala.png" style="width:18rpx;height:15rpx;" /> -->
+						<dj-image src="/static/xiala.png" widthImg="18" heightImg="12" style="line-height: 10rpx;"></dj-image>
+					</view>
 				</u-col>
 				<u-col :span="colSlice[2]" class="d-flex" justify="end">
 					<dj-image v-if="!fixTitle" src="/static/xinjian.png" widthImg="35" heightImg="35" @click.native="add_show"></dj-image>
@@ -34,6 +41,11 @@
 				type: String,
 				default: ""
 			},
+			// 压机类型
+			pressType: {
+				type: String,
+				default: ""
+			},
 			// 固定标题
 			fixTitle: {
 				type: String,
@@ -51,11 +63,7 @@
 		},
 		computed: {
 			colSlice() {
-				if(this.fixTitle) {
-					return [1,10,1]
-				} else {
-					return [4,4,4]
-				}
+				return [1,10,1]
 			}
 		},
 		methods: {
@@ -71,6 +79,9 @@
 			},
 			change_shift() {
 				this.$emit('change_shift')
+			},
+			change_press() {
+				this.$emit('change_press')
 			}
 		}
 	}

+ 34 - 8
src/pages/index/index.vue

@@ -1,6 +1,6 @@
 <template>
 	<view class="content">
-		<dj-navbar :title="title" @add_show="show = true" @change_shift="change_shift" />
+		<dj-navbar :title="title" :pressType="pressType" @add_show="show = true" @change_shift="change_shift" @change_press="change_press" />
 		<view v-if="swipeData.length" id="swipe" :style="swipeHeight">
 			<u-swipe-action
 				v-for="(item,index) in swipeData"
@@ -23,6 +23,12 @@
 				  range-key="name"
 				  @confirm="confirm_shift">
 		</u-picker>
+		<u-picker v-model="pressShow"
+				  mode="selector" 
+				  :range="pressList" 
+				  range-key="name"
+				  @confirm="confirm_press">
+		</u-picker>
 		<u-toast ref="uToast" />
 	</view>
 </template>
@@ -31,7 +37,7 @@
 	import djNavbar from '@/components/dj-navbar.vue'
 	import djModal from "@/components/dj-modal.vue"
 	import djSwipeAction from '@/components/dj-swipe-action.vue'
-	import { getLoginUserInfo,shiftList,selectPage,deleteTask } from '@/common/api.js'
+	import { getLoginUserInfo,shiftList,selectPage,deleteTask,pressTypeList } from '@/common/api.js'
 	import { mapMutations } from 'vuex'
 	export default {
 		name: 'index',
@@ -44,11 +50,15 @@
 			return {
 				show: false,
 				shiftShow: false,
+				pressShow: false,
 				swipeheight: '',
 				modalType: 1,
 				swipeData: [],
 				shiftId: '',
 				title: '', 
+				pressTypeId: '',
+				pressType: '',
+				pressList: [],
 				shifts: [],
 				options: [
 					{
@@ -62,8 +72,8 @@
 			}
 		},
 		onShow() {
-			if(this.shiftId) {
-				this.select_page(this.shiftId)
+			if(this.shiftId || this.pressTypeId) {
+				this.select_page(this.shiftId,this.pressTypeId)
 			} else {
 				this.get_login_user_info()
 			}
@@ -79,14 +89,14 @@
 			async get_login_user_info() {
 				await getLoginUserInfo({}).then(res=> {
 					this.title = res.data.shift
-					this.shiftId = res.data.shiftId
+					// this.shiftId = res.data.shiftId
 					this.saveShiftName(this.title)
 					uni.setStorageSync('user', res.data)
 					this.select_page(this.shiftId)
 				})
 			},
-			async select_page(id) {
-				await selectPage({'shiftId':id}).then(res=> {
+			async select_page(id,ids) {
+				await selectPage({'shiftId':id,'pressTypeId':ids}).then(res=> {
 					this.swipeData = res.data.row
 					// this.swipeData.map( item => {
 					// 	return item['show'] = false
@@ -111,12 +121,28 @@
 					this.shifts = res.data
 				})
 			},
+			change_press() {
+				this.pressShow = true
+				this.get_press_type_list()
+			},
+			// 获取压机类型
+			get_press_type_list() {
+				pressTypeList().then(res=> {
+					this.pressList = res.data
+				})
+			},
+			// 选择压机类型
+			confirm_press(index) {
+				this.pressTypeId = this.pressList[index].id
+				this.pressType = this.pressList[index].name
+				this.select_page(this.shiftId,this.pressTypeId)
+			},
 			// 选择工位
 			confirm_shift(index) {
 				this.shiftId = this.shifts[index].id
 				this.title = this.shifts[index].name
 				this.saveShiftName(this.title)
-				this.select_page(this.shiftId)
+				this.select_page(this.shiftId,this.pressTypeId)
 			},
 			// 删除
 			async click(index) {

+ 2 - 2
src/pages/index/upKeepInfo.vue

@@ -7,9 +7,9 @@
 					<view class="d-flex j-sb a-center">
 						<view class="u-font-xl">{{ item.projectName }}: {{ item.projectValue }}</view>
 						<view class="d-flex">
-							<dj-button v-if="item.status === '1'" class="u-m-r-12" content="NOK" borderRadius="0" ifPlain width="111" height="53" bColor="#fff" color="#FE0000" border="#FE0000" @click.native="btn_click(index,false)"></dj-button>
+							<dj-button v-if="item.status === '' || item.status === '1'" class="u-m-r-12" content="NOK" borderRadius="0" ifPlain width="111" height="53" bColor="#fff" color="#FE0000" border="#FE0000" @click.native="btn_click(index,false)"></dj-button>
 							<dj-button v-else class="u-m-r-12" content="NOK" width="111" height="53" bColor="#FE0000" borderRadius="0" color="#fff" border="#FE0000"></dj-button>
-							<dj-button v-if="item.status === '0'" content="OK" ifPlain  borderRadius="0" width="111" height="53" bColor="#fff" color="#2196F3" border="#2196F3" @click.native="btn_click(index,true)"></dj-button>
+							<dj-button v-if="!item.status || item.status === '0'" content="OK" ifPlain  borderRadius="0" width="111" height="53" bColor="#fff" color="#2196F3" border="#2196F3" @click.native="btn_click(index,true)"></dj-button>
 							<dj-button v-else content="OK" width="111" height="53" bColor="#2196F3" borderRadius="0" color="#fff" border="#2196F3"></dj-button>
 						</view>
 					</view>