123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570 |
- <template>
- <view>
- <uni-forms ref="form" labelPosition="left" labelAlign="left" @submit="submitForm">
- <view class="uni-form-item uni-column">
- <view class="title"><text class="uni-form-item__title">工程名称</text></view>
- <view class="uni-input-wrapper">
- <input class="uni-input" focus placeholder="请填写工程名称" v-model="projectName" />
- </view>
- </view>
-
- <view class="uni-form-item uni-column" v-show="$util.getQuery('type')=='2'">
- <view class="title"><text class="uni-form-item__title">检查类型</text></view>
- <view class="uni-input-wrapper" style="justify-content: left;">
- <picker mode="selector" :value="index" :range="array" range-key="name" @change="bindPickerChange" v-model="inspectType" style="width: 100%;">
- <view class="uni-input">{{array.length>0?array[index]:''}}</view>
- </picker>
- </view>
- </view>
- <view class="uni-form-item uni-column">
- <view class="title"><text class="uni-form-item__title">检查日期</text></view>
- <view class="uni-input-wrapper" style="justify-content: left;">
- <picker mode="date" @change="bindDateChange" v-model="checkDate" style="width: 100%;">
- <view class="uni-input">{{checkDate}}</view>
- </picker>
- </view>
- </view>
- <view class="uni-form-item uni-column">
- <view class="title" style="background-color: #efefef;"><text class="uni-form-item__title">上传文件</text></view>
- <view class="content">
- <g-upfile ref='gUpfile' :mode="imgList" @chooseFile='chooseFile' @imgDelete='imgDelete' :control='control'
- :columnNum="columnNum" :maxCount="maxCount" @limitFileSizeList='limitFileSizeList' @limitFileTypeList='limitFileTypeList'
- :maxFileSize="20000"></g-upfile>
- </view>
- </view>
- <uni-section :title="title" type="line">
- <button type="default" @click="getRelationItem" size="mini">选择检查项</button>
- </uni-section>
- <uni-list>
- <uni-list-item v-if="itemList" v-for="(item, index) in itemList" :key="index" >
-
- <view slot="body" class="slot-box parent-container">
- <i class="fa fa-window-close iconClose" aria-hidden="true" @click="delRow(index)" title="删除"></i>
- <view class="row">
- <view class="column-left">检查项目:</view>
- <view class="column-right">{{item.diName}}</view>
- </view>
- <view class="row">
- <view class="column-left">检查结果:</view>
- <view class="column-right">
- <textarea focus v-model="item.remark" class="textAreaBorder" placeholder="请输入检查结果" />
- </view>
- </view>
-
- </view>
- </uni-list-item>
- </uni-list>
- <view style="margin-bottom: 120px;">
-
- </view>
- <view class="uni-btn-v uni-column">
- <button type="primary" form-type="submit" style="border-radius: 15px;" >保存</button>
- </view>
-
- </uni-forms>
-
-
- </view>
- </template>
- <script>
- import {InsertSafeQualityCheck} from "@/common/api/SafeQualityCheckApi.js";
- import {Decimal} from 'decimal.js'; //decimal计算
-
-
- export default {
-
- data() {
- return {
- isCache:false,
- projectName:'',
- inspectType:'',
- title:'',
- checkDate:this.$util.getDate({
- format: true
- }),
-
- itemList:[], //检查明细
- imageList: [],
-
- countIndex: 5,
- count: [1, 2, 3, 4, 5],
- title1: 'picker',
- array: ['','抽检','封样'],
- index: 0,
-
- control: true,
- columnNum: 3,
- imgList: [],
- urlList:[],
- maxCount:5
-
- }
- },
- onLoad(){
- //console.info(page.path);
-
- //console.info(this);
- this.$util.persistLogin(this);
- //console.info(this.$store.state.user);
-
- },
- onUnload() {
-
- },
- created: function() {
- if(this.$util.getQuery("type")=="2"){
- uni.setNavigationBarTitle({
- title:'添加材料检查'
- });
- this.title='材料检查项目';
- }
- else{
- uni.setNavigationBarTitle({
- title:'添加质量安全检查'
- });
- this.title='质量安全检查项目';
- }
- if(this.isCache){
- this.getTemp(this);
- }
- },
- updated:function(){
-
- },
- methods: {
-
- /**
- * 手动提交
- * @param {Object} form
- */
- submitForm(e) {
- console.info('submitForm');
- let _this=this;
- if(this.projectName==='')
- {
- uni.showToast({
- icon:"none",
- title:"请填写工程名称",
- duration:3000
- });
- return;
- }
- if(this.$util.getQuery("type")=="2"){
- if(this.$util.isEmpty(this.inspectType) ){
- uni.showToast({
- icon:"none",
- title:"请选择检查类型",
- duration:3000
- });
- return;
- }
- }
- if(this.checkDate==='')
- {
- uni.showToast({
- icon:"none",
- title:"请选择检查日期",
- duration:3000
- });
- return;
- }
-
- if(this.itemList.length<=0){
- uni.showToast({
- icon:"none",
- title:"请选择检查项",
- duration:3000
- });
- return;
- }
-
- let list=[];
- let itemNames=[];
- let inspectType=""; //检查类型
- if(this.$util.getQuery("type")==2){
- inspectType=this.inspectType;
- }
- this.itemList.forEach(function(item,index,arr){
- if(item.remark==null||item.remark==''){
- itemNames.push(item.diName);
- return;
- }
- list.push({checkContent:item.diName,checkResult:item.remark,DictionaryItemCode:item.diCode,DictionaryNameCode:item.dnCode });
- });
- if(itemNames.length>0){
- uni.showToast({
- title:itemNames[0]+' 检查结果不能为空',
- duration:3000,
- icon:"none"
- });
- return;
- }
- //vise viseCosts
- var data1={projectName:this.projectName,projectCode:this.$util.getState(_this,'projectCode'),checkDate:this.checkDate,inspectType:inspectType };
-
- var data={SafeQualityCheck:data1,ItemList:list};
- console.info('data:',data);
- //return;
- InsertSafeQualityCheck(data).then((res)=>{
- console.info("提交后的response",res);
-
- if(res){
- if(res.length>0){
- //上传图片
- _this.uploadFileToServe(res) ;
- }
- uni.navigateTo({
- url:'/pages/template/GetSafeQualityCheckDTOs/GetSafeQualityCheckDTOs?type='+_this.$util.getQuery("type")
- })
- }
- else{
- uni.showToast({
- title:'添加失败,重新操作',
- icon:'none',
- duration:3000
- })
- }
-
- });
- },
-
- /*
- 获取关联项
- */
- getRelationItem() {
- let _this = this;
- _this.saveTemp(_this);
- //创建名字为fire的监听器,监听子页面传值事件
- uni.$on('items', function(data) {
- console.info("监听getRelationItem子页面的传值", data);
- //console.info('监听',_this);
- _this.getTemp(_this);
- console.info('项目列表',_this.itemList);
- console.info('项目列表',_this.itemList.length);
- let itemList=_this.itemList;
- if(data) {
- if(_this.itemList.length>0){
- data.forEach(function(item,index,arr){
- item.remark='';
- _this.itemList.push(item);
-
- });
- }
- else{
- _this.itemList=[];
- data.forEach(function(item,index,arr){
- item.remark='';
- _this.itemList.push(item);
- });
- }
-
- }
- uni.setStorage({
- key:'itemList',
- data:_this.itemList
- });
- _this.isCache=true;
- //接收一次监听,一旦监听到回传值,则清除监听事件,若不清除,会占用资源
- uni.$off("items");
- });
-
- uni.navigateTo({
- url: '/pages/template/SelectCheckProject/SelectCheckProject?type='+_this.$util.getQuery("type")
- });
- },
-
-
- delRow: function(index) {
- console.info("删除");
- console.info(this.itemList[index]);
- this.itemList.splice(index, 1);
- },
-
- bindPickerChange: function(e) {
- //console.log('picker发送选择改变,携带值为:' + e.detail.value);
- //console.info(e.detail);
- this.index = e.detail.value;
- this.inspectType=this.array[this.index];
- console.info(this.inspectType);
- },
- bindDateChange: function(e) {
- let date = e.detail.value;
- this.checkDate=date;
- console.info('bindDateChange',this.checkDate);
- },
-
-
- /*
- 上传后返回的值:
- list:上传后图片数组
- v:返回当前上传图片的临时路径
- */
- chooseFile(list, v) {
- console.log("上传图片_list:", list)
- console.log("上传图片_v:", v);
- this.urlList=list;
- console.info("urlList",this.urlList);
-
- },
-
-
- /*
- 删除图片:
- list:删除返回删除后剩余的图片数组
- eq:返回删除的数组
- */
- imgDelete(list, eq) {
- console.log("删除图片_list:", list);
- console.log("删除图片_eq:", eq);
- this.urlList=list;
- console.info("urlList",this.urlList);
- },
- /*限制文件大小列表*/
- limitFileSizeList(list){
- console.info('limitFileSizeList:',list);
- if(list){
- if(list.length>0){
- uni.showModal({
- title:'警告',
- content: list.join()+' 文件大小超过2000KB',
- showCancel:false
- });
- }
- }
- },
- /*限制文件类型列表*/
- limitFileTypeList(list,allowFileType){
- console.info('limitFileTypeList:',list);
- console.info('limitFileTypeList:',allowFileType);
- if(list){
- if(list.length>0){
- uni.showModal({
- title:'警告',
- content: list.join()+' 文件类型必须是'+allowFileType.join(),
- showCancel:false
- });
- }
- }
- },
- /*
- 执行上传服务:
- urlList:要上传的图片:数组类型
- */
- uploadFileToServe(arr) {
- console.info('uploadFileToServe',arr)
- let _this=this;
- var urlList=_this.urlList;
- if (!urlList || urlList.length <= 0) {
- return;
- };
- //console.info(urlList);
- //循环输出
- arr.forEach(function(item,index,array){
- for (let i = 0; i < urlList.length; i++) {
-
- uni.uploadFile({
- url: '/api/Common/UploadImage',
- filePath: urlList[i],
- name: 'file',
- formData: {
- createPerson:_this.$store.state.user.userCode,
- masterCode:item.code,
- attachMentType:item.type
- },
- headers: {
- 'Content-Type': 'multipart/form-data; boundary = ' + new Date().getTime()
- //这里要把content-type设置为multipard/form-data,同时还要设置boundary
- },
- success: (uploadFileRes) => {
- console.log("图片上传:",uploadFileRes.data);
- }
- });
- }
- });
- //return;
-
- },
-
- saveTemp(_this){ //临时存
- uni.setStorage({
- key:'projectName',
- data:_this.projectName
- });
- uni.setStorage({
- key:'checkDate',
- data:_this.checkDate
- });
- uni.setStorage({
- key:'itemList',
- data:_this.itemList
- });
- if(_this.$util.getQuery("type")=="2"){
- uni.setStorage({
- key:'inspectType',
- data:_this.inspectType
- });
- }
- },
- getTemp(_this){ //获取缓存,重新给表单赋值
- _this.projectName=uni.getStorageSync('projectName');
- _this.checkDate=uni.getStorageSync('checkDate');
- _this.itemList=uni.getStorageSync('itemList');
- _this.inspectType=uni.getStorageSync('inspectType');
-
- }
- }
- }
- </script>
- <style scoped>
- /* 头条小程序组件内不能引入字体 */
- /* #ifdef MP-TOUTIAO */
- @font-face {
- font-family: uniicons;
- font-weight: normal;
- font-style: normal;
- src: url("~@/static/uni.ttf") format("truetype");
- }
- /* #endif */
-
- page {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- background-color: #efeff4;
- min-height: 100%;
- height: auto;
- }
- view {
- font-size: 14px;
- line-height: inherit;
- }
- .uni-form-item__title {
- font-size: 16px;
- line-height: 24px;
- }
-
- .uni-input-wrapper {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- padding: 8px 13px;
- flex-direction: row;
- flex-wrap: nowrap;
- background-color: #FFFFFF;
- }
- .title{
- background-color: #efefef;
- }
- .uni-input {
- height: 28px;
- line-height: 28px;
- font-size: 15px;
- padding: 0px;
- flex: 1;
- background-color: #FFFFFF;
- }
-
- .uni-icon {
- font-family: uniicons;
- font-size: 24px;
- font-weight: normal;
- font-style: normal;
- width: 24px;
- height: 24px;
- line-height: 24px;
- margin-left:15px;
- color: #999999;
- }
-
- .uni-eye-active {
- color: #007AFF;
- }
- .uni-btn-v{
- position: fixed;
- bottom: 0;
- width:100%;
-
- }
- .header-slot-box {
- font-size:15px;
- margin: 5px 5px;
- width:20%;
- justify-content: center;
- }
- .body-slot-box {
- font-size:15px;
- margin: 5px 5px;
- width:40%;
- justify-content: center;
- }
- .footer-slot-box {
- font-size:15px;
- margin: 5px 5px;
- width:40%;
- justify-content: center;
- }
- .uni-textarea textarea{
- font-size:15px;
- }
- .content {
- padding: 40rpx;
- background-color: #fff;
- }
-
- /* 上传控件 */
- .uploadControl {
- border: 1rpx solid #eee;
- border-radius: 10rpx;
- width: 130rpx;
- display: block;
- height: 130rpx;
- text-align: center;
- line-height: 130rpx;
- font-size: 30rpx;
- color: #888;
- background-color: #eeeeee;
- }
-
- .topicon >>> .icon{
- border: #4CD964 2upx solid;
- }
- .textAreaBorder{
- width: 240px;
- text-align: left;
- height: 80px;
- border:1px solid #10AEFF;
- }
- /deep/ uni-textarea{
- font-size:12px;
- }
- .iconClose{
- font-size:20px;
- cursor: pointer;
- color: #999;
- /* 绝对定位只有配合父容器的相对定位,才能达到预想效果 */
- position: absolute;
- right: -20rpx;
- top: 47rpx;
- }
- .parent-container{
- margin-left: 20rpx;
- /* 父容器必须是相对定位,子容器的绝对定位才能达到预想效果 */
- position: relative;
- width: 100%;
- padding-top: 38rpx;
- }
- .column-right{
- text-align: left;
- }
-
- </style>
|