Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
patzn-cloud-web-back-soil
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangweidong
patzn-cloud-web-back-soil
Commits
510b980d
Commit
510b980d
authored
Nov 04, 2020
by
lichengming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了试样管理
parent
98eee44b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
30 additions
and
131 deletions
+30
-131
SampleBackupsManage.vue
...-sample-manage/backups-manage/tab/SampleBackupsManage.vue
+1
-21
SampleBackupsQuery.vue
...l-sample-manage/backups-manage/tab/SampleBackupsQuery.vue
+0
-5
AddressManage.vue
pages/soil-sample-manage/sample-address/AddressManage.vue
+16
-2
ViewSample.vue
pages/soil-sample-manage/sample-address/ViewSample.vue
+0
-0
SampleDisposeManage.vue
...-sample-manage/sample-dispose/tab/SampleDisposeManage.vue
+1
-21
SampleDisposeQuery.vue
...l-sample-manage/sample-dispose/tab/SampleDisposeQuery.vue
+10
-30
SurplusDisposeManage.vue
...anage/sample-surplus-dispose/tab/SurplusDisposeManage.vue
+1
-21
SurplusDisposeQuery.vue
...manage/sample-surplus-dispose/tab/SurplusDisposeQuery.vue
+0
-5
SampleSurplusManage.vue
...-sample-manage/surplus-manage/tab/SampleSurplusManage.vue
+1
-21
SampleSurplusQuery.vue
...l-sample-manage/surplus-manage/tab/SampleSurplusQuery.vue
+0
-5
No files found.
pages/soil-sample-manage/backups-manage/tab/SampleBackupsManage.vue
View file @
510b980d
...
...
@@ -135,30 +135,10 @@ export default {
type
:
'primary'
,
id
:
''
,
name
:
'批量填写存放信息'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-all'
,
name
:
'制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-no-pre'
,
name
:
'无需制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-scan-pre'
,
name
:
'扫码制备'
},
}
// { type: '', id: '', name: '填写存放信息' },
// { type: '', id: '', name: '申请处理' },
// { type: '', id: '', name: '导出' },
{
type
:
''
,
id
:
'food-sample-prepare-record-export'
,
name
:
'导出备样记录'
}
],
iconMsg
:
[
{
type
:
'md-create'
,
id
:
''
,
name
:
'编辑'
},
// food-sample-prepare-edit
...
...
pages/soil-sample-manage/backups-manage/tab/SampleBackupsQuery.vue
View file @
510b980d
...
...
@@ -67,11 +67,6 @@ export default {
},
btn
:
[
// { type: '', id: '', name: '导出' },
{
type
:
''
,
id
:
'food-sample-handle-already-export-sample-store'
,
name
:
'导出样品贮存表'
}
],
iconMsg
:
[
{
...
...
pages/soil-sample-manage/sample-address/AddressManage.vue
View file @
510b980d
...
...
@@ -60,6 +60,7 @@
</div>
</div>
<!--组件加载-->
<ViewSample
ref=
"viewSample"
></ViewSample>
<StandardsManageEdit
ref=
"editModal"
@
on-result-change=
"_page"
></StandardsManageEdit>
<DownloadTemplateImport
ref=
"importModal"
@
on-result-change=
"_page"
></DownloadTemplateImport>
<!-- <component ref="refModal" :is="currentComponent" @on-result-change="_page"></component>-->
...
...
@@ -72,10 +73,12 @@ import { soilSample } from '../../../api'
import
global
from
'../../../api/config'
import
DownloadTemplateImport
from
'../../../components/import/DownloadTemplateImport'
// 导入
import
StandardsManageEdit
from
'./AddressManageEdit'
// 添加、编辑
import
ViewSample
from
'./ViewSample'
export
default
{
components
:
{
StandardsManageEdit
,
DownloadTemplateImport
DownloadTemplateImport
,
ViewSample
},
data
()
{
return
{
...
...
@@ -116,6 +119,11 @@ export default {
name
:
'编辑'
,
componentName
:
'StandardsManageEdit'
},
{
type
:
'md-apps'
,
id
:
''
,
name
:
'查看试样'
},
{
type
:
'md-remove-circle'
,
id
:
''
,
name
:
'删除'
}
],
searchOpen
:
false
,
...
...
@@ -190,6 +198,9 @@ export default {
case
'编辑'
:
this
.
_editModal
(
true
,
data
.
id
)
break
case
'查看试样'
:
this
.
_viewSample
(
data
.
id
)
break
case
'上传'
:
this
.
_upload
(
data
.
id
)
break
...
...
@@ -214,7 +225,10 @@ export default {
}
this
.
$refs
.
uploadModal
.
_open
(
obj
)
},
_viewSample
(
data
)
{
console
.
log
(
data
)
this
.
$refs
.
viewSample
.
_openHis
()
},
_editModal
:
async
function
(
edit
,
id
)
{
if
(
edit
)
{
// 编辑
...
...
pages/soil-sample-manage/sample-address/ViewSample.vue
0 → 100644
View file @
510b980d
This diff is collapsed.
Click to expand it.
pages/soil-sample-manage/sample-dispose/tab/SampleDisposeManage.vue
View file @
510b980d
...
...
@@ -103,30 +103,10 @@ export default {
type
:
''
,
id
:
''
,
name
:
'驳回'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-all'
,
name
:
'制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-no-pre'
,
name
:
'无需制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-scan-pre'
,
name
:
'扫码制备'
},
}
// { type: '', id: '', name: '填写存放信息' },
// { type: '', id: '', name: '申请处理' },
// { type: '', id: '', name: '导出' },
{
type
:
''
,
id
:
'food-sample-prepare-record-export'
,
name
:
'导出备样记录'
}
],
iconMsg
:
[
{
type
:
'md-create'
,
id
:
''
,
name
:
'编辑'
}
// food-sample-prepare-edit
...
...
pages/soil-sample-manage/sample-dispose/tab/SampleDisposeQuery.vue
View file @
510b980d
...
...
@@ -94,39 +94,19 @@ export default {
selectSampleIds
:
[],
getPage
:
{},
btn
:
[
{
type
:
'primary'
,
id
:
''
,
name
:
'通过'
},
{
type
:
''
,
id
:
''
,
name
:
'驳回'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-all'
,
name
:
'制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-no-pre'
,
name
:
'无需制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-scan-pre'
,
name
:
'扫码制备'
},
// {
// type: 'primary',
// id: '',
// name: '通过'
// },
// {
// type: '',
// id: '',
// name: '驳回'
// }
// { type: '', id: '', name: '填写存放信息' },
// { type: '', id: '', name: '申请处理' },
// { type: '', id: '', name: '导出' },
{
type
:
''
,
id
:
'food-sample-prepare-record-export'
,
name
:
'导出备样记录'
}
],
iconMsg
:
[
{
type
:
'md-create'
,
id
:
''
,
name
:
'编辑'
}
// food-sample-prepare-edit
...
...
pages/soil-sample-manage/sample-surplus-dispose/tab/SurplusDisposeManage.vue
View file @
510b980d
...
...
@@ -78,30 +78,10 @@ export default {
type
:
''
,
id
:
''
,
name
:
'驳回'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-all'
,
name
:
'制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-no-pre'
,
name
:
'无需制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-scan-pre'
,
name
:
'扫码制备'
},
}
// { type: '', id: '', name: '填写存放信息' },
// { type: '', id: '', name: '申请处理' },
// { type: '', id: '', name: '导出' },
{
type
:
''
,
id
:
'food-sample-prepare-record-export'
,
name
:
'导出备样记录'
}
],
iconMsg
:
[
{
type
:
'md-create'
,
id
:
''
,
name
:
'编辑'
}
// food-sample-prepare-edit
...
...
pages/soil-sample-manage/sample-surplus-dispose/tab/SurplusDisposeQuery.vue
View file @
510b980d
...
...
@@ -56,11 +56,6 @@ export default {
formObj
:
{},
btn
:
[
// { type: '', id: '', name: '导出' },
{
type
:
''
,
id
:
'food-sample-handle-already-export-sample-store'
,
name
:
'导出样品贮存表'
}
],
pageColumns
:
[
{
title
:
'试样编号'
,
key
:
'sampleCode'
,
width
:
150
},
...
...
pages/soil-sample-manage/surplus-manage/tab/SampleSurplusManage.vue
View file @
510b980d
...
...
@@ -101,30 +101,10 @@ export default {
type
:
'primary'
,
id
:
''
,
name
:
'完成处理'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-all'
,
name
:
'制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-no-pre'
,
name
:
'无需制备'
},
{
type
:
'primary'
,
id
:
'food-sample-preparation-his-scan-pre'
,
name
:
'扫码制备'
},
}
// { type: '', id: '', name: '填写存放信息' },
// { type: '', id: '', name: '申请处理' },
// { type: '', id: '', name: '导出' },
{
type
:
''
,
id
:
'food-sample-prepare-record-export'
,
name
:
'导出备样记录'
}
],
iconMsg
:
[
{
type
:
'md-create'
,
id
:
''
,
name
:
'编辑'
},
// food-sample-prepare-edit
...
...
pages/soil-sample-manage/surplus-manage/tab/SampleSurplusQuery.vue
View file @
510b980d
...
...
@@ -78,11 +78,6 @@ export default {
],
btn
:
[
// { type: '', id: '', name: '导出' },
{
type
:
''
,
id
:
'food-sample-handle-already-export-sample-store'
,
name
:
'导出样品贮存表'
}
],
pageColumns
:
[
{
title
:
'试样编号'
,
key
:
'sampleCode'
,
width
:
150
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment