@@ -63,7 +65,7 @@
name: 'JUpload',
data(){
return {
- uploadAction:window._CONFIG['domianURL']+"/sys/common/upload",
+ uploadAction:window._CONFIG['domianURL']+"/sys/upload/uploadMinio",
headers:{},
fileList: [],
newFileList: [],
@@ -310,10 +312,17 @@
if(this.fileType === FILE_TYPE_IMG){
this.previewImage = file.url || file.thumbUrl;
this.previewVisible = true;
- }else{
- location.href=file.url
+ }else if (file.url) {
+ // 此base地址可以配置到一个常量文件里
+ let base = "http://127.0.0.1:8012/onlinePreview?url="
+ let url = base+encodeURIComponent(this.$Base64.encode(file.url))
+ window.open(url, '_blank')
}
},
+ // 文件下载
+ handleDownload (file) {
+ location.href=file.url
+ },
handleCancel(){
this.previewVisible = false;
},
diff --git a/src/main.js b/src/main.js
index 709c5ed..4a3ca53 100644
--- a/src/main.js
+++ b/src/main.js
@@ -7,6 +7,9 @@ import Storage from 'vue-ls'
import router from './router'
import store from './store/'
import { VueAxios } from "@/utils/request"
+//main.js
+import { Base64 } from 'js-base64';
+Vue.prototype.$Base64 = Base64
require('@jeecg/antd-online-mini')
require('@jeecg/antd-online-mini/dist/OnlineForm.css')
diff --git a/src/mixins/JeecgListMixin.js b/src/mixins/JeecgListMixin.js
index 4dafc61..62d7526 100644
--- a/src/mixins/JeecgListMixin.js
+++ b/src/mixins/JeecgListMixin.js
@@ -345,6 +345,7 @@ export const JeecgListMixin = {
/* 文件下载 */
// update--autor:lvdandan-----date:20200630------for:修改下载文件方法名uploadFile改为downloadFile------
downloadFile(text){
+
if(!text){
this.$message.warning("未知的文件")
return;
@@ -352,9 +353,23 @@ export const JeecgListMixin = {
if(text.indexOf(",")>0){
text = text.substring(0,text.indexOf(","))
}
+
let url = getFileAccessHttpUrl(text)
+ console.log(this.$Base64.encode(url))
window.open(url);
},
+ //文件预览
+ onlineFile(text){
+ if(!text){
+ this.$message.warning("未知的文件")
+ return;
+ }
+ if(text.indexOf(",")>0){
+ text = text.substring(0,text.indexOf(","))
+ }
+ let url = getFileAccessHttpUrl(text)
+ window.open('http://127.0.0.1:8012/onlinePreview?url='+encodeURIComponent(this.$Base64.encode(url)));
+ },
}
}
\ No newline at end of file
diff --git a/src/views/activiti/applyHome.vue b/src/views/activiti/applyHome.vue
index 8fde2d5..11c9e9c 100644
--- a/src/views/activiti/applyHome.vue
+++ b/src/views/activiti/applyHome.vue
@@ -31,10 +31,19 @@
-
+
+ @afterSubmit="afterSub" @close="lcModa.visible=false,lcModa.disabled = false" >
+
@@ -58,6 +67,7 @@
return {
description: '所有',
dictOptions:[],
+ disableSubmit: false,
url: {
getProcessDataList: "/activiti_process/listData",
getFirstNode:'/actProcessIns/getFirstNode',
@@ -163,7 +173,7 @@
/*提交成功申请后*/
afterSub(formData){
this.lcModa.visible = false;
- this.$message("请前往我的申请列表提交审批!")
+ this.$message.success("请前往我的申请列表提交审批!")
},
/*前往我的申请页面*/
handleToApplyList() {
diff --git a/src/views/activiti/form/ProcessUdgetPlanForm.vue b/src/views/activiti/form/ProcessUdgetPlanForm.vue
index 33b6adb..c4a67bb 100644
--- a/src/views/activiti/form/ProcessUdgetPlanForm.vue
+++ b/src/views/activiti/form/ProcessUdgetPlanForm.vue
@@ -57,7 +57,7 @@
-
+
\ No newline at end of file
diff --git a/src/views/processmaterials/ProcessUdgetPlanList.vue b/src/views/processmaterials/ProcessUdgetPlanList.vue
index a032323..83deeda 100644
--- a/src/views/processmaterials/ProcessUdgetPlanList.vue
+++ b/src/views/processmaterials/ProcessUdgetPlanList.vue
@@ -28,7 +28,7 @@
-
+
新增
@@ -82,6 +82,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
编辑
@@ -106,7 +118,6 @@
-
@@ -186,6 +197,12 @@
dataIndex: 'fileId',
scopedSlots: {customRender: 'fileSlot'}
},
+ // {
+ // title:'文件预览',
+ // align:"center",
+ // dataIndex: 'fileId',
+ // scopedSlots: {customRender: 'fileOn'}
+ // },
{
title: '操作',
dataIndex: 'action',
@@ -308,11 +325,12 @@
fieldList.push({type:'date',value:'needTime',text:'需求时间'})
fieldList.push({type:'int',value:'orderNumber',text:'顺序号',dictCode:''})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
+ // fieldList.push({type:'string',value:'fileId',text:'文件预览',dictCode:'1'})
this.superFieldList = fieldList
}
}
}
\ No newline at end of file
diff --git a/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue b/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue
index a98bc9d..5bf2d2d 100644
--- a/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue
+++ b/src/views/processmaterials/modules/ProcessUdgetPlanForm.vue
@@ -26,12 +26,12 @@
-
+
-
+
@@ -76,16 +76,15 @@
import { getAction } from '@/api/manage'
import { FormTypes,getRefPromise } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
- import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
- import JDate from '@/components/jeecg/JDate'
+ import JDate from '@/components/jeecg/JDate'
import JUpload from '@/components/jeecg/JUpload'
import JSelectDepart from '@/components/jeecgbiz/JSelectDepart'
import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep'
import JDictSelectTag from "@/components/dict/JDictSelectTag"
export default {
- name: 'ProcessUdgetPlanForm',
+ name: 'ProcessUdgetPlanFormff',
mixins: [JEditableTableMixin],
components: {
JFormContainer,
@@ -245,10 +244,7 @@
{
title: '对比单价',
key: 'contrastPrice',
- type: FormTypes.popup,
- popupCode:"",
- destFields:"",
- orgFields:"",
+ type: FormTypes.inputNumber,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
@@ -285,6 +281,30 @@
placeholder: '请输入${title}',
defaultValue:'',
},
+ {
+ title: '删除标志',
+ key: 'delFlag',
+ type: FormTypes.inputNumber,
+ width:"200px",
+ placeholder: '请输入${title}',
+ defaultValue:'',
+ },
+ {
+ title: '删除时间',
+ key: 'delTime',
+ type: FormTypes.input,
+ width:"200px",
+ placeholder: '请输入${title}',
+ defaultValue:'',
+ },
+ {
+ title: '修改人',
+ key: 'updateBy',
+ type: FormTypes.input,
+ width:"200px",
+ placeholder: '请输入${title}',
+ defaultValue:'',
+ },
]
},
url: {
@@ -342,11 +362,13 @@
},
methods: {
addBefore(){
+ alert(3)
this.form.resetFields()
this.processUdgetPlanMaterialTable.dataSource=[]
},
getAllTable() {
let values = this.tableKeys.map(key => getRefPromise(this, key))
+ console.log('-------->',values)
return Promise.all(values)
},
/** 调用完edit()方法之后会自动调用此方法 */
diff --git a/src/views/processmaterials/modules/ProcessUdgetPlanModal.vue b/src/views/processmaterials/modules/ProcessUdgetPlanModal.vue
index 42c5951..24c8d32 100644
--- a/src/views/processmaterials/modules/ProcessUdgetPlanModal.vue
+++ b/src/views/processmaterials/modules/ProcessUdgetPlanModal.vue
@@ -1,125 +1,45 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
+ @cancel="handleCancel">
+
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
index a042aa1..b4dfa53 100644
--- a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
+++ b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
@@ -12,7 +12,16 @@
-
+
+
+
+
+
+
+
+
+
+
@@ -23,19 +32,19 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -60,61 +69,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
- {{ toggleSearchStatus ? '收起' : '展开' }}
-
-
-
-
@@ -130,7 +131,7 @@
查询
重置
-
+
删除
@@ -193,7 +194,7 @@
-
+
@@ -206,7 +207,6 @@
import JDate from '@/components/jeecg/JDate.vue'
import JSearchSelectTag from '@/components/dict/JSearchSelectTag'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
- import ProcessSuppliesStrongerLists from '@views/suppliesstronger/modules/ProcessSuppliesStrongerLists'
export default {
name: 'ProcessSuppliesStrongerList',
@@ -216,7 +216,6 @@
JSearchSelectTag,
ProcessSuppliesStrongerModal,
JSuperQuery,
- ProcessSuppliesStrongerLists,
},
data () {
return {
@@ -369,11 +368,13 @@
},
methods: {
handleDetaills(){
- this.item = true;
+ // this.item = true;
+ this.$router.push({path:'/src/views/suppliesstronger/ProcessSuppliesStrongerLists'})
},
strongerExit(){
this.item = false;
},
+
initDictConfig(){
},
getSuperFieldList(){
@@ -391,9 +392,9 @@
fieldList.push({type:'sel_search',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'sel_search',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'date',value:'productionTime',text:'生产时间'})
- fieldList.push({type:'date',value:'expirationDate',text:'保质期'})
+ fieldList.push({type:'string',value:'expirationDate',text:'保质期'})
fieldList.push({type:'sel_search',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'int',value:'arrivalNotice',text:'是否到货',dictCode:''})
+ fieldList.push({type:'string',value:'arrivalNotice',text:'是否到货',dictCode:''})
fieldList.push({type:'date',value:'inboundTime',text:'入库时间'})
fieldList.push({type:'sel_search',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'string',value:'accountingAttributes',text:'核算属性',dictCode:''})
diff --git a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerLists.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
similarity index 93%
rename from src/views/suppliesstronger/modules/ProcessSuppliesStrongerLists.vue
rename to src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
index c39016e..056c3bc 100644
--- a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerLists.vue
+++ b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
@@ -25,17 +25,17 @@