Merge branch 'main' of http://git.hivekion.com:3000/IDCDatasync/IDCDatasync-vue
This commit is contained in:
commit
fdc2ebb67e
|
@ -4,7 +4,8 @@ const getFileLinkInfo = (params)=>getAction("/fileDataLink/getFileLinkInfo",para
|
||||||
const processFile = (params)=>postAction("/fileDataLink/processFile",params);
|
const processFile = (params)=>postAction("/fileDataLink/processFile",params);
|
||||||
const fileDataLinkDelete = (params)=>deleteAction("/fileDataLink/delete",params);
|
const fileDataLinkDelete = (params)=>deleteAction("/fileDataLink/delete",params);
|
||||||
const isDataLinkFileParsed = (params)=>getAction("/fileDataLink/isDataLinkFileParsed",params);
|
const isDataLinkFileParsed = (params)=>getAction("/fileDataLink/isDataLinkFileParsed",params);
|
||||||
const updateDmTableBySeqNo = (params)=>postAction("/fileDataLink/updateDmTableBySeqNo",params);
|
const updateDmTableBySeqNo = (params)=>postAction("/dataManager/updateDmTableBySeqNo",params);
|
||||||
|
const updateDmTableBySeqNoFile = (params)=>postAction("/fileDataLink/updateDmTableBySeqNo",params);
|
||||||
const getSuccessTableInfo = (params)=>getAction("/fileDataLink/getSuccessTableInfo",params);
|
const getSuccessTableInfo = (params)=>getAction("/fileDataLink/getSuccessTableInfo",params);
|
||||||
const getTableDataByOri = (params)=>getAction("/fileDataLink/getTableDataByOri",params);
|
const getTableDataByOri = (params)=>getAction("/fileDataLink/getTableDataByOri",params);
|
||||||
|
|
||||||
|
@ -14,6 +15,7 @@ export {
|
||||||
fileDataLinkDelete,
|
fileDataLinkDelete,
|
||||||
isDataLinkFileParsed,
|
isDataLinkFileParsed,
|
||||||
updateDmTableBySeqNo,
|
updateDmTableBySeqNo,
|
||||||
|
updateDmTableBySeqNoFile,
|
||||||
getSuccessTableInfo,
|
getSuccessTableInfo,
|
||||||
getTableDataByOri
|
getTableDataByOri
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { updateDmTableBySeqNo } from '@/api/fileDataLink'
|
import { updateDmTableBySeqNoFile } from '@/api/fileDataLink'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "editdataseach",
|
name: "editdataseach",
|
||||||
|
@ -64,7 +64,7 @@ export default {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
that.confirmLoading = true;
|
that.confirmLoading = true;
|
||||||
that.submitForm.fieldValues = that.form
|
that.submitForm.fieldValues = that.form
|
||||||
updateDmTableBySeqNo(that.submitForm).then((res) => {
|
updateDmTableBySeqNoFile(that.submitForm).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
that.$message.success(res.message);
|
that.$message.success(res.message);
|
||||||
that.$emit('ok');
|
that.$emit('ok');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user