123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800 |
- <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="designChangesName" />
- </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 ">
- <input class="uni-input-small" v-model="requisitionName" />
- <a href='javascript:;' @click='getRequisition' class="uni-icon"><i class="fa fa-search" aria-hidden="true"></i></a>
- </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 ">
- <input class="uni-input-small" disabled=true v-model="contractName" />
- <a href='javascript:;' @click='getRelationContract' class="uni-icon"><i class="fa fa-search" aria-hidden="true"></i></a>
- </view>
- </view>
- <view class="uni-form-item uni-column" v-show="contractName">
- <view class="title"><text class="uni-form-item__title">税率</text></view>
- <view class="uni-input-wrapper">
- {{contract.taxRate+'%'}}
- </view>
- </view>
- <view class="uni-form-item uni-column" v-show="contractName">
- <view class="title"><text class="uni-form-item__title">是否可抵扣</text></view>
- <view class="uni-input-wrapper" >
- {{contract.isDeduct==0?'否':'是'}}
- </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="designChangesDate" style="width: 100%;">
- <view class="uni-input">{{designChangesDate}}</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="selector" :value="index" :range="array" range-key="name" @change="bindPickerChange" v-model="changeType" 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">
- <input class="uni-input" focus value="0" v-model="estimateCash" type="digit" />
- </view>
- </view>
-
- <view class="uni-form-item uni-column">
- <view class="title"><text class="uni-form-item__title">设计变更原因</text></view>
- <view class="uni-textarea">
- <textarea focus placeholder="请填写设计变更原因" v-model="designChangesReason" auto-height="true" />
- </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="费用明细" type="line"></uni-section>
- <uni-list>
- <uni-list-item v-if="costList" v-for="(item, index) in costList" :key="index">
- <view slot="body" class="slot-box">
- <view class="row">
- <view class="column-left">费用项:</view>
- <view class="column-right">{{item.costCodeName}}</view>
- </view>
- <view class="row">
- <view class="column-left">含税金额</view>
- <view class="column-right">
- <input class="uni-input-small" type="digit" v-model="item.cash" style="width: 240px;text-align: left;" @blur='countTaxtCash(item,index)' />
- </view>
- </view>
- <view class="row">
- <view class="column-left">税额</view>
- <view class="column-right" >
- <input class="uni-input-small" type="digit" disabled="true" v-model="item.rateCash" style="width: 240px;text-align: left;" />
- </view>
- </view>
- <view class="row">
- <view class="column-left">金额</view>
- <view class="column-right">
- <input class="uni-input-small" type="digit" disabled="true" v-model="item.noRateCash" style="width: 240px;text-align: left;" />
- </view>
- </view>
- <view class="row">
- <view class="column-left">备注:</view>
- <view class="column-right">
- <textarea focus v-model="item.remark" auto-height="true" style="width: 240px;text-align: left;" />
- </view>
- </view>
- <view class="row">
- <view class="column-left">操作:</view>
- <view class="column-right">
- <i class="fa fa-window-close" aria-hidden="true" @click="delRow(index)" style="font-size:20px;cursor: pointer;color: #999;margin-left:15px;" title="删除"></i>
- </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>
-
- <topicon class="topicon" :iconWidth="50" :iconHeight="50" :startPostion="3" iconPath="../../../static/zhiding.png"
- :marginBottom="20" :marginTop="60" :marginLeft="5" :marginRight="5" @tapIcon="tapIcon"
- ></topicon>
-
- </view>
- </template>
- <script>
-
- import {GetQianzhengDropDown} from "@/common/api/requisitionApi.js";
- import {GetContract} from "@/common/api/commonApi.js";
- import {GetContractCostDTOs} from "@/common/api/viseApi.js";
- import {UpdateDesignChanges,DesignChangesEdit} from "@/common/api/DesignChanges.js";
- import {Decimal} from 'decimal.js'; //decimal计算
- import topicon from '@/components/gwh-backTopIcon/gwh-backTopIcon.vue'
-
- export default {
- components:{
- topicon
- },
- data() {
- return {
- needFormCach:false,
- designChangesCode:'',
- designChangesName:'',
- requisitionCode:'', //申请单编号
- requisitionName:'', //申请单名称
- contractCode:'',
- contractName:'',
- contract:{}, //获取的关联合同信息
- designChangesDate:this.$util.getDate({
- format: true
- }),
-
-
- changeType:'',
- estimateCash:0.00,
- designChangesReason:'',
- remark:'',
- costList:[], //费用明细
-
-
- imageList: [],
-
- countIndex: 5,
- count: [1, 2, 3, 4, 5],
- title1: 'picker',
- array: [],
- index: 0,
- date: this.$util.getDate({
- format: true
- }),
-
-
- control: true,
- columnNum: 3,
- imgList: [],
- urlList:[],
- maxCount:5
-
- }
- },
- onLoad(){
- //console.info(page.path);
- console.info(uni.getStorageSync('storage_state'));
- //console.info(this);
- this.$util.persistLogin(this);
- //console.info(this.$store.state.user);
-
- },
- onUnload() {
- this.imageList = [],
-
- this.countIndex = 5;
- },
- created: function() {
- this.GetDropDown();
- this.GetDesignChangesEdit();
-
- },
- updated:function(){
-
- },
- methods: {
-
- /**
- * 手动提交
- * @param {Object} form
- */
- submitForm(e) {
- console.info('submitForm');
- let _this=this;
-
- if(this.designChangesName==='')
- {
- uni.showToast({
- icon:"none",
- title:"请填写设计变更名称",
- duration:3000
- });
- return;
- }
- if(this.designChangesName.length>50)
- {
- uni.showToast({
- icon:"none",
- title:"设计变更名称不能多于50字",
- duration:3000
- });
- return;
- }
- // if(this.requisitionCode===""){
- // uni.showToast({
- // icon:"none",
- // title:"请选择申请单",
- // duration:3000
- // });
- // return;
- // }
- if(this.contractCode===""){
- uni.showToast({
- icon:"none",
- title:"请选择关联合同号",
- duration:3000
- });
- return;
- }
- if(this.designChangesDate===""){
- uni.showToast({
- icon:"none",
- title:"请选择设计变更日期",
- duration:3000
- });
- return;
- }
-
- if(this.changeType===""){
- uni.showToast({
- icon:"none",
- title:"设计变更类型不能为空",
- duration:3000
- });
- return;
- }
- if(this.designChangesReason===""){
- uni.showToast({
- icon:"none",
- title:"设计变更原因不能为空",
- duration:3000
- });
- return;
- }
- if(this.designChangesReason!=""){
- if(this.designChangesReason.length>500){
- uni.showToast({
- icon:"none",
- title:"原因不能超过500字",
- duration:3000
- });
- return;
- }
- }
-
-
- if(this.costList.length<=0){
- uni.showToast({
- icon:"none",
- title:"费用明细不能为空",
- duration:3000
- });
- return;
- }
- let moneyType=this.contract.moneyType;
- let exchangeRate=this.contract.exchangeRate;
- let taxRate=this.contract.taxRate;
- let list1=this.costList; //费用明细
- let totalCash=0.00; //总含税金额
- let rateTotalCash=0.00; //税收总额
- let noRateTotalCash=0.00; //不含税总金额
-
- let designChangesCosts=[];
- list1.forEach(function(item,index,arr){
- totalCash+= item.cash-0.00;
- rateTotalCash+= item.rateCash;
- noRateTotalCash+= item.noRateCash;
- designChangesCosts.push({costCode:item.costCode,costBudgetSetCode:item.costBudgetSetCode,cash:item.cash-0.00,checkCash:item.cash-0.00,moneyType:moneyType,exchangeRate:exchangeRate,money:item.cash-0.00,checkMoney:item.cash-0.00,remark:item.remark,rate:taxRate-0.00,rateCash:item.rateCash-0.00,rateMoney:item.rateCash-0.00,noRateCash:item.noRateCash-0.00,noRateMoney:item.noRateCash-0.00});
- });
- //vise viseCosts
- var designChanges={designChangesCode:this.designChangesCode,designChangesName:this.designChangesName,changeType:this.changeType,person:this.$util.getState(this,'userCode'),unitCode:this.$store.state.departmentCode,designChangesDate:this.designChangesDate,designChangesReason:this.designChangesReason,projectCode:this.$store.state.projectCode,contractCode:this.contractCode,totalCash:totalCash-0.00,moneyType:moneyType,exchangeRate:exchangeRate,estimateCash:this.estimateCash-0.00,requisitionCode:this.requisitionCode,rate:taxRate-0.00,rateTotalCash:rateTotalCash-0.00,noRateTotalCash:noRateTotalCash-0.00 };
-
-
-
- var data={designChanges:designChanges,designChangesCosts:designChangesCosts};
- console.info('data:',data);
- //return;
- UpdateDesignChanges(data).then((res)=>{
- console.info("UpdateDesignChanges",res);
- if(res){
- if(!res.isSuccess){
- uni.showToast({
- icon:"none",
- title:res.errMsg,
- duration:3000
- });
- return;
- }
-
-
- //上传图片
- _this.uploadFileToServe(res.data) ;
-
- uni.navigateTo({
- url:'/pages/template/GetDesignChangesList/GetDesignChangesList'
- })
- }
- else{
- uni.showToast({
- title:'添加失败,重新操作',
- icon:'none',
- duration:3000
- })
- }
-
- });
- },
- /* 页面初始化 */
- GetDesignChangesEdit(){
- let _this=this;
- let id=this.$util.getQuery("id");
- DesignChangesEdit(id).then(res=>{
- console.info('DesignChangesEdit',res);
- //let attachments=res.attachments;
- let mainEntity=res.mainEntity;
- let subList=res.subList;
- _this.designChangesCode=mainEntity.designChangesCode;
-
- _this.designChangesName=mainEntity.designChangesName;
- _this.changeType=mainEntity.changeType;
- _this.designChangesDate=mainEntity.designChangesDateStr;
- _this.requisitionCode=mainEntity.requisitionCode;
- _this.requisitionName=mainEntity.requisitionName;
- _this.contractCode=mainEntity.contractCode;
- _this.contractName=mainEntity.contractName;
- _this.estimateCash=mainEntity.estimateCash;
- _this.designChangesReason=mainEntity.designChangesReason;
-
- GetContract(_this.contractCode).then(res=>{
- console.info('GetContract',res);
- _this.contract=res;
- });
- if(subList.length>0){
- subList.forEach(function(item,index,arr){
- _this.$set(_this.costList,index,item);
- });
- }
-
- if(_this.array.length>0){
- _this.array.forEach(function(item,index,arr){
- console.info('item',item);
- if(item==_this.changeType){
- _this.index=index;
- }
- });
- }
-
- });
- },
- /*
- 获取申请单
- */
- getRequisition() {
- let _this = this;
- _this.saveTemp(_this);
- //创建名字为fire的监听器,监听子页面传值事件
- uni.$on('requisition', function(data) {
- console.info("监听getRequisition子页面的传值", data);
- //console.info('监听',_this);
- _this.getTemp(_this);
- _this.requisitionCode=data[0].requisitionCode;
- _this.requisitionName=data[0].requisitionName;
- uni.setStorage({
- key:'requisitionCode',
- data:_this.requisitionCode
- });
- uni.setStorage({
- key:'requisitionName',
- data:_this.requisitionName
- });
- //uni.setst
- /* _this.$nextTick(function(){
- //更新dom
- }); */
- _this.needFormCach=true;
- //接收一次监听,一旦监听到回传值,则清除监听事件,若不清除,会占用资源
- uni.$off("requisition");
- });
- uni.navigateTo({
- url: '/pages/template/SelectRelationRequision/SelectRelationRequision?type=1'
- });
- },
- /*
- 获取关联合同
- */
- getRelationContract() {
- let _this = this;
- _this.saveTemp(_this);
- //创建名字为fire的监听器,监听子页面传值事件
- uni.$on('contract', function(data) {
- console.info("监听getRelationContract子页面的传值", data);
- //console.info('监听',_this);
- _this.getTemp(_this);
- _this.contractCode=data[0].contractCode;
- _this.contractName=data[0].contractName;
- _this.contract=data[0].contract;
- _this.getCostList();
-
-
- //接收一次监听,一旦监听到回传值,则清除监听事件,若不清除,会占用资源
- uni.$off("contract");
- });
- /* let requisitionCode=_this.requisitionCode;
- if(requisitionCode==""){
- uni.showToast({
- title:'请先选择申请单',
- icon:'none',
- duration:3000
- });
- return;
- } */
- uni.navigateTo({
- url: '/pages/template/SelectRelationContract/SelectRelationContract'
- });
- },
-
- /*
- 获取费用明细
- */
- getCostList() {
- let _this = this;
- _this.saveTemp(_this);
- if(_this.contractCode){
- GetContractCostDTOs(_this.contractCode).then(res=>{
- console.info('GetContractCostDTOs',res);
- if(res.length>0){
- res.forEach(function(item,index,arr){
- item.cash=0.00;
- item.rateCash=0.00;
- item.noRateCash=0.00;
- _this.$set(_this.costList,index,item);
- });
- }
- });
- }
-
-
- },
- delRow: function(index) {
- console.info("删除");
- console.info(this.costList[index]);
- this.costList.splice(index, 1);
- },
- /* 计算该行的税额 */
- countTaxtCash:function(item,index){
- let _this=this;
-
- console.info("countTaxtCash",item);
- //console.info("countTaxtCash",index);
- //let value=event.detail.value;
- let taxRate=(_this.contract.taxRate-0.00)/100;
- console.info("taxRate",taxRate);
- item.rateCash=new Decimal(item.cash/(1+taxRate)*taxRate).toFixed(2); //计算,并保留两位小数
- item.noRateCash=item.cash;
-
- },
- bindPickerChange: function(e) {
- //console.log('picker发送选择改变,携带值为:' + e.detail.value);
- //console.info(e.detail);
- this.index = e.detail.value;
- this.changeType=this.array[this.index];
- console.info(this.changeType);
- },
- bindDateChange: function(e) {
- let date = e.detail.value;
- this.designChangesDate=date;
- console.info('bindDateChange',this.designChangesDate);
- },
-
-
- GetDropDown:function(){
- let that=this;
- GetQianzhengDropDown(1).then((res)=>{
- console.info('GetQianzhengDropDown:',res);
- res.forEach(function(item,index,array){
- that.$set(that.array,index,item);
- });
- //赋默认值
- that.changeType=that.array[0];
- console.info(that.changeType);
- if(that.needFormCach){
- that.getTemp(that);
- }
- });
- },
-
- /*
- 上传后返回的值:
- 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(masterCode) {
- let _this=this;
- var urlList=_this.urlList;
- if (!urlList || urlList.length <= 0) {
- return;
- };
- //console.info(urlList);
-
-
- //return;
- 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:masterCode,
- attachMentType:'DesignChanges'
- },
- headers: {
- 'Content-Type': 'multipart/form-data; boundary = ' + new Date().getTime()
- //这里要把content-type设置为multipard/form-data,同时还要设置boundary
- },
- success: (uploadFileRes) => {
- console.log("图片上传:",uploadFileRes.data);
- }
- });
- }
- },
-
- saveTemp(_this){ //临时存
-
- uni.setStorage({
- key:'designChangesName',
- data:_this.designChangesName
- });
- uni.setStorage({
- key:'requisitionCode',
- data:_this.requisitionCode
- });
- uni.setStorage({
- key:'requisitionName',
- data:_this.requisitionName
- });
- uni.setStorage({
- key:'contractName',
- data:_this.contractName
- });
- uni.setStorage({
- key:'contractCode',
- data:_this.contractCode
- });
- uni.setStorage({
- key:'designChangesDate',
- data:_this.designChangesDate
- });
-
- uni.setStorage({
- key:'changeType',
- data:_this.changeType
- });
- uni.setStorage({
- key:'estimateCash',
- data:_this.estimateCash
- });
-
- uni.setStorage({
- key:'designChangesReason',
- data:_this.designChangesReason
- });
-
-
- },
- getTemp(_this){ //获取缓存,重新给表单赋值
-
- _this.designChangesName=uni.getStorageSync('designChangesName');
- _this.requisitionCode=uni.getStorageSync('requisitionCode');
- _this.requisitionName=uni.getStorageSync('requisitionName');
- _this.contractName=uni.getStorageSync('contractName');
- _this.contractCode=uni.getStorageSync('contractCode');
- _this.designChangesDate=uni.getStorageSync('designChangesDate');
- _this.changeType=uni.getStorageSync('changeType');
- _this.estimateCash=uni.getStorageSync('estimateCash');
- _this.designChangesReason=uni.getStorageSync('designChangesReason');
-
- },
- tapIcon(e){
- console.log('you tap icon');
- document.documentElement.scrollTop = document.body.scrollTop = 0;
- }
- }
- }
- </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;
- }
- </style>
|