123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796 |
- <template>
- <view class="pages">
- <view class="vtitle">检测申请方填写</view>
- <view class="form_group">
- <view class="lable">委托单编号</view>
- <view class="tag">
- <text class="span">{{ item.wt_num }}</text>
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">标题</view>
- <view class="tag">
- <input v-model="item.title" placeholder="输入标题" />
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">申请单位/部门</view>
- <view class="tag">
- <input v-model="item.dept" placeholder="输入申请单位/部门" />
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">试验目的</view>
- <view class="tag">
- <input v-model="item.purpose" placeholder="输入试验目的" />
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">申请人</view>
- <view class="tag">
- <input v-model="item.applicant_name" placeholder="输入申请人" />
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">电话</view>
- <view class="tag">
- <input v-model="item.tel" placeholder="输入电话" />
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">试验部门</view>
- <view class="tag">
- <input v-model="item.test_dept" placeholder="输入试验部门" />
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">所属项目</view>
- <view class="tag">
- <input v-model="item.item" placeholder="输入所属项目" />
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">试验类型</view>
- <view class="tag">
- <view class="span">
- <picker @change="bindChange($event, 'experiment_type')" :range="array1">
- <view class="picks">{{ item.experiment_type ? item.experiment_type : '选择试验类型' }}</view>
- </picker>
- <picker @change="bindChange($event, 'product')" :range="array2">
- <view class="picks">{{ item.product ? item.product : '选择产品线' }}</view>
- </picker>
- </view>
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">项目编号</view>
- <view class="tag">
- <input v-model="item.item_num" placeholder="输入项目编号" />
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">结果形式</view>
- <view class="tag"><u-subsection :list="radio" :current="current" @change="change"></u-subsection></view>
- </view>
- <view class="form_group">
- <view class="lable">模板</view>
- <view class="tag" @click="dshow = true">
- <text class="span">2个模板</text>
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group">
- <view class="lable">附件上传</view>
- <view class="tag" @click="dshow = true"><text class="span">最大上传5个</text></view>
- </view>
- <view class="form_group">
- <uni-file-picker :limit="5" @select="upload($event, item)" file-mediatype="all">
- <button class="up">
- <text class="icon"></text>
- <text>选择文件</text>
- </button>
- </uni-file-picker>
- <view class="ufiles">
- <view class="fil" v-for="(item, index) in item.unstructured" :key="index" @click="look(item)">
- <view v-if="item.fileType">
- <view class="icon" v-if="item.fileType.toLowerCase() == '.png' || item.fileType.toLowerCase() == '.jpg'"></view>
- </view>
- <view class="icon" v-else></view>
- <view class="name">
- <view class="omit">{{ item.name }}</view>
- <view class="desc">{{ (item.size / 1024).toFixed(2) }}kb</view>
- </view>
- <view class="del" @click.stop="del(item)">删除</view>
- <view class="clear"></view>
- </view>
- </view>
- </view>
- <view class="vtitle">设置审批人员</view>
- <view class="form_group" @click="select('1')">
- <view class="lable">需求审核-产品经理或主管人员</view>
- <view class="tag">
- <text class="span">{{ item.WTXQSH_NAME }}</text>
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group" @click="select('2')">
- <view class="lable">试验审核-试验对接人</view>
- <view class="tag">
- <text class="span">{{ item.WTSYSH_NAME }}</text>
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group" @click="select('3')">
- <view class="lable">需求批准-本部门领导</view>
- <view class="tag">
- <text class="span">{{ item.WTXQPZ_NAME }}</text>
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group" @click="select('4')">
- <view class="lable">试验批准</view>
- <view class="tag">
- <text class="span">{{ item.WTSYPZ_NAME }}</text>
- <text class="icon more"></text>
- </view>
- </view>
- <view class="form_group" @click="select('5')">
- <view class="lable">任务分派-任务分派人</view>
- <view class="tag">
- <text class="span">{{ item.WTRWFP_NAME }}</text>
- <text class="icon more"></text>
- </view>
- </view>
- <view class="vtitle">样机</view>
- <view class="form_group" v-for="(item, index) in list" :key="index">
- <view class="lable">{{item.items.__df3EGbLwLuQbY18mt6a.value}}</view>
- <view class="tag">
- <text class="span">{{item.items.__Y8VlxrNmQKyOx0qZWl3.value}}</text>
- <text class="icon more"></text>
- </view>
- </view>
- <!--
- <view class="form_group">
- <view class="lable">GH560</view>
- <view class="tag">
- <text class="span">XH890656565556</text>
- <text class="icon more"></text>
- </view>
- </view>-->
- <view class="footer" v-if="btnshow">
- <view class="flex">
- <view class="f"><button class="btn br" @click="validate()">保存</button></view>
- <view class="f"><button class="btn br" @click="submission()">提交</button></view>
- <view class="f" v-if="state == 1"><button class="btn br back" @click="back()">回退</button></view>
- </view>
- </view>
- <u-popup :show="dshow" mode="center" @close="dshow = false" round="5" closeable customStyle="width:92%">
- <view class="popup">
- <u-divider text="模板下载"></u-divider>
- <view class="citem" @click="download('https://img-operation.csdnimg.cn/csdn/silkroad/img/1670234405428.jpg')">
- <view class="title omit">提交流程面板提交流程面板提交流程面板</view>
- <view class="xz">点击下载</view>
- </view>
- <view class="citem" @click="download('https://img-operation.csdnimg.cn/csdn/silkroad/img/1670234405428.jpg')">
- <view class="title omit">提交流程面板提交流程面板提交流程面板</view>
- <view class="xz">点击下载</view>
- </view>
- <view class="citem" @click="download('https://img-operation.csdnimg.cn/csdn/silkroad/img/1670234405428.jpg')">
- <view class="title omit">提交流程面板提交流程面板提交流程面板</view>
- <view class="xz">点击下载</view>
- </view>
- </view>
- </u-popup>
- <u-popup :show="show" mode="bottom" @close="show = false" closeable round="15">
- <view class="popup">
- <u-divider text="提交流程面板"></u-divider>
- <scroll-view scroll-y="true" style="height: 450rpx;">
- <view v-for="(item, index) in nextNodes" :key="index" class="bitem" @click="bselect(item, 'nextNodes')">
- <view class="icon select check" v-if="item.check"></view>
- <view class="icon select" v-else></view>
- <view class="title">{{ item.name }}</view>
- <view class="xze" v-if="stues=='任务分派'||stues=='报告编制'||stues=='报告审核'">
- <view class="users omit">
- <text>{{tname}}</text>
- </view>
- <view class="icon" @click.stop="selectApprovers()"></view>
- </view>
- </view>
- <textarea placeholder="意见" style="height: 120px;" maxlength="200" v-model="itemt.attitude" />
-
- </scroll-view>
- <view class="confrim-btn"><button class="btn" @click="submit()">确定</button></view>
- </view>
- </u-popup>
- <u-popup :show="bshow" mode="bottom" @close="bshow = false" closeable round="15">
- <view class="popup">
- <u-divider text="回退流程面板"></u-divider>
- <scroll-view scroll-y="true" style="height: 300rpx;">
- <view v-for="(item, index) in backNodes" :key="index" class="bitem" @click="bselect(item, 'backNodes')">
- <view class="icon select check" v-if="item.check"></view>
- <view class="icon select" v-else></view>
- <view class="title">{{ item.name }}</view>
- </view>
- </scroll-view>
- <view class="confrim-btn"><button class="btn" @click="workflowsback()">确定</button></view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- let qrcode = require('@/common/code.js');
- export default {
- data() {
- return {
- ip: this.http.urls.ip,
- p: {},
- item: {},
- current: 0,
- radio: [
- {
- name: '正式报告'
- },
- {
- name: '仅原始数据'
- },
- {
- name: '协助试验'
- }
- ],
- id: '',
- items: {
- document: {
- items: {}
- }
- },
- users: [],
- array1: ['整机性能', '系统性能', '台架', '可靠性','部件'], //实验类型1
- array2: ['装载机', '平地机', '叉车', '推土机','小型机','挖掘机','压缩机','起重机','压路机','农机','高空作业平台','其他'], //实验类型2
- show: false,
- bshow: false,
- dshow: false,
- itemt: {},
- up: {},
- content: '标题',
- nextNodes: [],
- backNodes: [],
- touser: {
- nodeid: '1649917385058',
- isToPerson: true,
- userids: '__jFFZYvLIG6uFc7CdBMg'
- },
- list: [],
- btnshow: false,
- state: 0,
- btitem: {
- applicationId: '__gAPYBW4YxB3UePM3lqO',
- exparams: {},
- formId: '__0FLGNncOS1lz0T9jsFn',
- id: '__79Wtw03ya4dJUDGPyAN',
- isRelate: 'true',
- parentId: '',
- sign: '',
- subDocuments: [],
- templateForm: '',
- versions: '0'
- },
- stues:'',
- secauser:{},
- tname:''
- };
- },
- onLoad(e) {
- this.id = e.id;
- //传过来的id
- this.stues=e.sta;
- this.state = e.ste;
- if (e.ste == 1) {
- this.getDocuments();
- } else if (e.ste == 2) {
- this.empty();
- }
- //选中审批人员监听函数,其它类型的参考这个
- uni.$on('selectu', res => {
- console.log('selectu:' + JSON.stringify(res));
- this.itemt.submitTo=[];
- var su={isToPerson:true};
- var u="";
- this.tname='';
- res.forEach(item => {
- su.nodeid=item.nodeId;
- u+=item.id+';';
- this.tname+=item.name+',';
- });
- su.userids=u;
- console.log('su:' + JSON.stringify(su));
- this.itemt.submitTo.push(su);
- console.log('su:' + JSON.stringify(this.itemt));
-
- this.convert();
- });
-
- //选中审批人员监听函数,其它类型的参考这个
- uni.$on('select', res => {
- console.log('asd2:' + JSON.stringify(res));
- if (res.ste == 1) {
- this.item.WTXQSH = res.items.__psLiBtymgDqatneDeJM.value;
- } else if (res.ste == 2) {
- this.item.WTSYSH = res.items.__d9UDIcG9cd9TPsauffQ.value;
- } else if (res.ste == 3) {
- this.item.WTXQPZ = res.items.__EaOA4o6je5WFAGSDelj.value;
- } else if (res.ste == 4) {
- this.item.WTSYPZ = res.items.__cDWoqYpeJkPwLjignVY.value;
- } else if (res.ste == 5) {
- this.item.WTRWFP = res.items.__vhLhnW6B7JBtaxiXkQ3.value;
- }
- console.log('item2:' + JSON.stringify(this.item));
- this.convert();
- });
- },
- methods: {
- //选择实验类型
- bindChange(e, type) {
- this.item[type] = this.array1[e.target.value];
- this.$forceUpdate();
- },
- //下载模板
- download(url) {
- const a = document.createElement('a');
- a.href = url;
- a.download = 'download';
- a.click();
- this.dshow = false;
- },
- //提交或回退
- bselect(e, tag) {
- this[tag].forEach(item => {
- item.check = false;
- });
- e.check = true;
- this.itemt.nextNodeIds = [];
- this.itemt.nextNodeIds.push(e.id);
- this.secauser=this.itemt;
- this.secauser.nodeid=e.id;
-
- this.$forceUpdate();
- }, //详情
- getDocuments() {
- this.http.request({
- url: this.http.urls.documents + this.id,
- data: this.item,
- success: res => {
- this.item = res.data.data.items;
- this.p = res.data.data;
- this.getUsers();
- this.yj_list();
- //console.log('this.p:' + JSON.stringify(res));
- //保存数据
- this.btitem.id = res.data.data.id;
- this.btitem.formId = res.data.data.formid;
- this.btitem.versions = res.data.data.versions;
- this.btitem.parentId = '';
- if (this.item.unstructured) {
- this.item.unstructured = JSON.parse(this.item.unstructured);
- } else {
- this.item.unstructured = [];
- }
- if (this.p.lastFlowOperation == undefined || this.p.auditorList.includes(this.getUser().id)) {
- this.btnshow = true;
- }
- //this.current=res.data.data.items.report_type;
- if (this.item.report_type == '正式报告') {
- this.current = 0;
- } else if (this.item.report_type == '仅原始数据') {
- this.current = 1;
- } else if (this.item.report_type == '协助试验') {
- this.current = 2;
- }
- this.iteml = res.data.data;
- this.items.applicationId = '__gAPYBW4YxB3UePM3lqO';
- this.items.docId = this.iteml.id;
- this.items.id = this.iteml.id;
- this.items.formId = this.iteml.formid;
- this.items.parentId = '';
- this.items.subSelects = [];
- this.items.templateForm = '';
- this.items.viewId = '';
- this.items.document.items = this.item;
- this.items.document.applicationId = '__gAPYBW4YxB3UePM3lqO';
- this.items.document.exparams = {};
- this.items.document.formId = this.iteml.formid;
- this.items.document.id = this.iteml.id;
- this.items.document.parentId = '';
- this.items.document.sign = '';
- this.items.document.stateId = this.iteml.stateid;
- this.items.document.subDocuments = [];
- this.items.document.templateForm = '';
- this.items.document.versions = '0';
- }
- });
- },
- empty() {
- this.btnshow = true;
- this.http.request({
- url: this.http.urls.empty,
- data: this.item,
- success: res => {
-
- this.item = res.data.data.items;
- this.p = res.data.data;
- this.getUsers();
- //保存数据
- this.btitem.id = res.data.data.id;
- this.btitem.formId = res.data.data.formid;
- this.btitem.versions = res.data.data.versions;
- this.btitem.parentId = '';
- console.log('this.p1:' + JSON.stringify(this.p));
- //this.current=res.data.data.items.report_type;
- if (this.item.report_type == '正式报告') {
- this.current = 0;
- } else if (this.item.report_type == '仅原始数据') {
- this.current = 1;
- } else if (this.item.report_type == '协助试验') {
- this.current = 2;
- }
- this.iteml = res.data.data;
- this.items.applicationId = '__gAPYBW4YxB3UePM3lqO';
- this.items.docId = this.iteml.id;
- this.items.id = this.iteml.id;
- this.items.formId = this.iteml.formid;
- this.items.parentId = '';
- this.items.subSelects = [];
- this.items.templateForm = '';
- this.items.viewId = '';
- this.items.document.items = this.item;
- this.items.document.applicationId = '__gAPYBW4YxB3UePM3lqO';
- this.items.document.exparams = {};
- this.items.document.formId = this.iteml.formid;
- this.items.document.id = this.iteml.id;
- this.items.document.parentId = '';
- this.items.document.sign = '';
- this.items.document.stateId = this.iteml.stateid;
- this.items.document.subDocuments = [];
- this.items.document.templateForm = '';
- this.items.document.versions = '0';
- }
- });
- },
- //获取全部用户用于显示名字
- getUsers() {
- this.http.request({
- url: this.http.urls.user_list,
- success: res => {
- this.users = res.data.data;
- this.convert();
- }
- });
- },
- convert() {
- this.users.forEach(item => {
- if (this.item.WTXQSH == item.ID) {
- this.item.WTXQSH_NAME = item.NAME;
- }
- if (this.item.WTSYSH == item.ID) {
- this.item.WTSYSH_NAME = item.NAME;
- }
- if (this.item.WTXQPZ == item.ID) {
- this.item.WTXQPZ_NAME = item.NAME;
- }
- if (this.item.WTSYPZ == item.ID) {
- this.item.WTSYPZ_NAME = item.NAME;
- }
- if (this.item.WTRWFP == item.ID) {
- this.item.WTRWFP_NAME = item.NAME;
- }
- if (this.item.applicant == item.ID) {
- this.item.applicant_name = item.NAME;
- }
- });
- this.$forceUpdate();
- },
- //选择结果形式
- change(e) {
- this.current = e;
- console.log('aa:' + this.radio[this.current].name);
- this.item.report_type = this.radio[this.current].name;
- },
- //选择审批人员
- select(e) {
- uni.navigateTo({
- url: '/pages/index/select?ste=' + e
- });
- },
- //选择审批人员
- selectApprovers(e) {
-
- uni.navigateTo({
- url: '/pages/index/selectApprovers?item=' + JSON.stringify(this.secauser)
- });
- },
- //选择文件上传
- upload(e, item) {
- uni.showLoading({ title: '正在上传.....', mask: true });
- e.tempFilePaths.forEach((temp, index) => {
- uni.uploadFile({
- url: this.http.urls.upload,
- filePath: temp,
- name: 'files',
- formData: {
- applicationId: '__gAPYBW4YxB3UePM3lqO',
- allowedTypes: '00',
- fieldId: this.id + '_unstructured',
- fileSaveMode: '00',
- path: 'ITEM_PATH',
- actionType: ''
- },
- header: { accessToken: this.getUser().accessToken },
- success: res => {
- uni.hideLoading();
- let data = JSON.parse(res.data);
- if (data.errcode == 0) {
- this.item.unstructured.push({
- name: data.data[0].fileName,
- path: data.data[0].filePath,
- size: data.data[0].fileSize,
- fileType: data.data[0].fileType
- });
- this.$forceUpdate();
- } else {
- uni.showModal({ content: '上传失败', showCancel: false });
- }
- },
- fail: res => {
- uni.hideLoading();
- uni.showModal({ content: '上传失败', showCancel: false });
- }
- });
- });
- },
- //删除上传的文件
- del(item) {
- this.item.unstructured.splice(this.item.unstructured.indexOf(item), 1);
- },
- //文件预览
- look(item) {
- console.log('asd:' + JSON.stringify(item));
- uni.openDocument({
- //新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx。
- filePath: this.ip + item.path,
- showMenu: true,
- success: res => {
- console.log('打开文档成功');
- }
- });
- },
- //提交
- add() {
- this.http.request({
- url: this.http.urls.user_task_add,
- data: this.item,
- method: 'POST',
- success: res => {
- uni.showModal({
- title: '提示',
- content: '提交成功',
- showCancel: false,
- success: res => {
- if (res.confirm) {
- uni.navigateBack();
- }
- }
- });
- }
- });
- },
- //保存
- validate() {
- this.btitem.items = this.item;
- this.http.request({
- url: this.http.urls.validate + '/' + this.btitem.id + '/withoutValid?' + this.btitem.parentId,
- data: this.btitem,
- method: 'PUT',
- success: res => {
- console.log('validate1:' + JSON.stringify(res));
- if (res.data.errcode == 0) {
- uni.$emit('index');
- uni.redirectTo({
- url: '/pages/index/index'
- });
- } else {
- uni.showModal({
- title: '提示',
- content: res.data.data.errmsg,
- showCancel: false,
- success: res => {
- if (res.confirm) {
- //uni.navigateBack();
- }
- }
- });
- return;
- }
- }
- });
- },
- yj_list() {
- this.http.request({
- url: this.http.urls.yj_list +
- 'parentId=' +
- this.id,
-
- method: 'POST',
- success: res => {
- console.log('res2:' + JSON.stringify(res));
- if (res.data.errcode == 0) {
-
- res.data.data.data.forEach(item => {
-
- this.list.push(item);
- });
- }
- }
- });
- },
- //提交流程面板
- submission() {
- this.http.request({
- url: this.http.urls.documents + this.id + '/panels/submission',
- data: this.items,
- method: 'POST',
- success: res => {
- //this.item=res.data.data;
- console.log('zx22:' + JSON.stringify(res));
- this.show = true;
- this.title = res.data.data.name;
- this.nextNodes = res.data.data.nextNodes;
- this.itemt.flowId = res.data.data.flowId;
- this.itemt.flowType = '80';
- this.itemt.currentNodeId = res.data.data.currentNodeId;
- this.itemt.attitude = '';
- this.itemt.signature = '';
- this.itemt.submitTo = [];
- this.itemt.circulatorInfo = '';
- this.itemt.subFlowApproverInfo = '';
- this.itemt.subFlowApproverInfoAll = '';
- this.itemt.document = this.items.document;
- //this.content=res.data.data.formname;
- }
- });
- }, //提交流程
- submit() {
- //this.itemt.document.items.purpose="试验目的5656";
- //this.itemt.document.items.title="标题5656";
- this.itemt.applicationId = '__gAPYBW4YxB3UePM3lqO';
- this.itemt.docId = this.iteml.id;
- this.itemt.id = this.iteml.id;
- this.itemt.formId = this.iteml.formid;
- this.itemt.parentId = '';
- this.itemt.subFlowApprover = [];
- this.itemt.subSelects = [];
- //this.itemt.submitTo = [];
- this.itemt.templateForm = '';
- this.itemt.viewId = '';
- if(this.stues=='任务分派'||this.stues=='报告编制'||this.stues=='报告审核'){
- if(this.itemt.submitTo.length == 0){
- uni.showModal({
- title: '提示',
- content: '请选择审批人',
- showCancel: false,
- success: res => {
- if (res.confirm) {
- // uni.navigateBack();
- }
- }
- });
- return;
- }
- }
-
-
- this.http.request({
- url: this.http.urls.documents + this.id + '/workflows/submit',
- data: this.itemt,
- method: 'PUT',
- success: res => {
- //this.item=res.data.data;
- console.log('zx22:' + JSON.stringify(res));
- this.show = false;
-
- uni.$emit('index');
- uni.redirectTo({
- url: '/pages/index/index'
- });
- //this.content=res.data.data.formname;
- }
- });
- }, //刷新数据
- //回退流程面板
- back() {
- this.http.request({
- url: this.http.urls.documents + this.id + '/panels/back',
- data: this.items,
- method: 'POST',
- success: res => {
- //this.item=res.data.data;
- console.log('zx22:' + JSON.stringify(res.data.data));
- this.bshow = true;
- this.title = res.data.data.name;
- this.backNodes = res.data.data.backNodes;
- this.itemt.flowId = res.data.data.flowId;
- this.itemt.flowType = '81';
- this.itemt.currentNodeId = res.data.data.currentNodeId;
- this.itemt.attitude = '';
- this.itemt.signature = '';
- //this.itemt.submitTo = [];
- this.itemt.circulatorInfo = '';
- this.itemt.subFlowApproverInfo = '';
- this.itemt.subFlowApproverInfoAll = '';
- this.itemt.document = this.items.document;
- //this.content=res.data.data.formname;
- }
- });
- }, //提交回退流程
- workflowsback() {
- //this.itemt.document.items.purpose="试验目的111";
- this.itemt.applicationId = '__gAPYBW4YxB3UePM3lqO';
- this.itemt.docId = this.iteml.id;
- this.itemt.id = this.iteml.id;
- this.itemt.formId = this.iteml.formid;
- this.itemt.parentId = '';
- this.itemt.subFlowApprover = [];
- this.itemt.subSelects = [];
- //this.itemt.submitTo = [];
- this.itemt.templateForm = '';
- this.itemt.viewId = '';
- this.http.request({
- url: this.http.urls.documents + this.id + '/workflows/back',
- data: this.itemt,
- method: 'PUT',
- success: res => {
- //this.item=res.data.data;
- console.log('zx22:' + JSON.stringify(res));
- this.bshow = false;
-
- uni.$emit('index');
- uni.redirectTo({
- url: '/pages/index/index'
- });
- //this.content=res.data.data.formname;
- }
- });
- }
- }
- };
- </script>
- <style lang="scss">
- .pages {
- padding-bottom: 85px;
- }
- </style>
|