From 1558d8b4bb1f928a79b6c3c03ae1aa0f3c5b4a83 Mon Sep 17 00:00:00 2001 From: 懒羊羊 <15939171744@163.com> Date: 星期一, 15 一月 2024 16:42:50 +0800 Subject: [PATCH] 上传配方 --- jcdm-ui/src/views/main/cfkb/Instructions/index.vue | 3 + jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java | 2 jcdm-ui/src/views/main/bs/formulaChild/index.vue | 73 ++++++++++++++++++++++++++++++++---- 3 files changed, 67 insertions(+), 11 deletions(-) diff --git a/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java b/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java index cb7fe99..3c54be3 100644 --- a/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java +++ b/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java @@ -46,7 +46,7 @@ for (BsFormulaChildInfo formulaChildInfo : list) { formulaChildInfo.setSort(formulaChildInfo.getStepSort()); formulaChildInfo.setAddress(formulaChildInfo.getTechRequirement()); - formulaChildInfo.setImg(formulaChildInfo.getOperationSteps()); + formulaChildInfo.setImg(formulaChildInfo.getPicture()); } return getDataTable(list); } diff --git a/jcdm-ui/src/views/main/bs/formulaChild/index.vue b/jcdm-ui/src/views/main/bs/formulaChild/index.vue index 67c79d1..864b4eb 100644 --- a/jcdm-ui/src/views/main/bs/formulaChild/index.vue +++ b/jcdm-ui/src/views/main/bs/formulaChild/index.vue @@ -107,7 +107,7 @@ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> </el-row> - <el-descriptions class="margin-top" :column="4" :size="size" border> + <el-descriptions class="margin-top" :column="4" border> <el-descriptions-item :span="1"> <template slot="label"> <i class="el-icon-user"></i> @@ -163,13 +163,13 @@ <el-table-column label="閰嶆柟缂栫爜" width="130" align="center" prop="formulaCode"> </el-table-column> <el-table-column label="鍥剧墖" :show-overflow-tooltip='true' width="130" align="center" prop="picture"> - <template slot-scope="scope"> - <el-image - style="width: 100px; height: 100px" - :src="pjtUrl+scope.row.picture" - :fit="fit"> - </el-image> - </template> +<!-- <template slot-scope="scope">--> +<!-- <el-image--> +<!-- style="width: 100px; height: 100px"--> +<!-- :src="pjtUrl+scope.row.picture"--> +<!-- :fit="fit">--> +<!-- </el-image>--> +<!-- </template>--> </el-table-column> <el-table-column label="澶囨敞" width="130" align="center" prop="remarks"> </el-table-column> @@ -265,7 +265,22 @@ <!-- <el-input v-model="form.formulaCode" placeholder="璇疯緭鍏ラ厤鏂圭紪鐮�" />--> <!-- </el-form-item>--> <el-form-item label="鍥剧墖" prop="picture"> - <el-input v-model="form.picture" placeholder="璇疯緭鍏ュ浘鐗�" /> +<!-- <el-input v-model="form.picture" placeholder="璇疯緭鍏ュ浘鐗�" />--> + <el-upload + ref="upload" + :limit="1" + accept=".jpg, .png" + :action="upload.url" + :headers="upload.headers" + :on-remove="removes" + :file-list="upload.fileList" + :on-progress="handleFileUploadProgress" + :on-success="handleFileSuccess" + :auto-upload="false"> + <el-button slot="trigger" size="small" type="primary">閫夊彇鏂囦欢</el-button> + <el-button style="margin-left: 10px;" size="small" type="success" :loading="upload.isUploading" @click="submitUpload">涓婁紶鍒版湇鍔″櫒</el-button> + <div slot="tip" class="el-upload__tip">鍙兘涓婁紶jpg/png鏂囦欢锛屼笖涓嶈秴杩�500kb</div> + </el-upload> </el-form-item> <el-form-item label="澶囨敞" prop="remarks"> <el-input v-model="form.remarks" placeholder="璇疯緭鍏ュ娉�" /> @@ -280,6 +295,7 @@ </template> <script> +import { getToken } from "@/utils/auth"; import { listFormula} from "@/api/main/bs/formula/formula"; import { listFormulaChild, getFormulaChild, delFormulaChild, addFormulaChild, updateFormulaChild } from "@/api/main/bs/formulaChild/formulaChild"; @@ -287,6 +303,17 @@ name: "FormulaChild", data() { return { + // 涓婁紶鍙傛暟 + upload: { + // 鏄惁绂佺敤涓婁紶 + isUploading: false, + // 璁剧疆涓婁紶鐨勮姹傚ご閮� + headers: { Authorization: "Bearer " + getToken() }, + // 涓婁紶鐨勫湴鍧� + url: process.env.VUE_APP_BASE_API + "/common/upload", + // 涓婁紶鐨勬枃浠跺垪琛� + fileList: [] + }, pjtUrl: process.env.VUE_APP_BASE_API, headerInformationData:{ formulaCode: "", @@ -343,6 +370,7 @@ this.getList(); }, methods: { + /** 宸ヨ壓娴佺▼琛ㄥご淇℃伅 */ headerInformation() { listFormula(this.queryParams).then(response => { @@ -416,18 +444,45 @@ handleAdd() { this.reset(); this.open = true; + this.upload.fileList = []; this.titleName = "娣诲姞閰嶆柟閰嶇疆瀛愪俊鎭�"; }, /** 淇敼鎸夐挳鎿嶄綔 */ handleUpdate(row) { + this.upload.fileList = [] + console.log(row) + if(row.picture!==null && row.picture!==""){ + this.upload.fileList = [{ name: row.spareField1, url: row.picture }]; + } this.reset(); const id = row.id || this.ids getFormulaChild(id).then(response => { + console.log(response.data) this.form = response.data; this.open = true; this.titleName = "淇敼閰嶆柟閰嶇疆瀛愪俊鎭�"; }); }, + // 鏂囦欢鎻愪氦澶勭悊 + submitUpload() { + this.$refs.upload.submit(); + }, + // 鏂囦欢涓婁紶涓鐞� + handleFileUploadProgress(event, file, fileList) { + this.upload.isUploading = true; + }, + // 鏂囦欢涓婁紶鎴愬姛澶勭悊 + handleFileSuccess(response, file, fileList) { + console.log(response) + this.upload.isUploading = false; + this.form.picture = response.url; + this.form.spareField1 = response.originalFilename; + this.msgSuccess(response.msg); + }, + removes(){ + this.form.spareField1 = ''; + this.form.picture = ''; + }, /** 鎻愪氦鎸夐挳 */ submitForm() { this.form.formulaCode = this.formulaCode; diff --git a/jcdm-ui/src/views/main/cfkb/Instructions/index.vue b/jcdm-ui/src/views/main/cfkb/Instructions/index.vue index 7d33e70..c3e001c 100644 --- a/jcdm-ui/src/views/main/cfkb/Instructions/index.vue +++ b/jcdm-ui/src/views/main/cfkb/Instructions/index.vue @@ -130,7 +130,7 @@ address: '涓婃捣甯傛櫘闄�鍖洪噾娌欐睙璺� 1516 寮�' }], address: '', - src: 'https://cube.elemecdn.com/6/94/4d3ea53c084bad6931a56d5158a48jpeg.jpeg', + // src: 'https://cube.elemecdn.com/6/94/4d3ea53c084bad6931a56d5158a48jpeg.jpeg', // src: 'file:///D:/img/qt.jpg' intervalId: null, @@ -203,6 +203,7 @@ listFormulaChild(this.queryParams).then(response => { // this.tableData = []; this.tableData = response.rows; + console.log(response.rows) this.$nextTick(() => { clearInterval(this.intervalId); document.getElementById('outerDiv0').style.background = 'yellow' -- Gitblit v1.9.3