Commit 1f6943ac authored by 李苏's avatar 李苏 💬

调整

parent e66e2813
...@@ -3,91 +3,166 @@ ...@@ -3,91 +3,166 @@
* @Author: lisu lisu@gavelinfo.com * @Author: lisu lisu@gavelinfo.com
* @Date: 2024-09-19 10:55:27 * @Date: 2024-09-19 10:55:27
* @LastEditors: lisu lisu@gavelinfo.com * @LastEditors: lisu lisu@gavelinfo.com
* @LastEditTime: 2024-10-28 15:31:25 * @LastEditTime: 2024-10-28 16:31:32
* @FilePath: /zghywpc-vue/src/views/ywxxgl/ywsjgl/index.vue * @FilePath: /zghywpc-vue/src/views/ywxxgl/ywsjgl/index.vue
--> -->
<template> <template>
<BasePage class="min_full" :config="config"> <BasePage class="min_full" :config="config">
<template #dialog="ctx"> <template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 --> <!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template> </template>
<template #toolbar="ctx"> <template #toolbar="ctx">
<!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 --> <!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 -->
<!-- <el-button @click="demo(ctx.basePage)" size='mini' type="primary">示例按钮</el-button> --> <!-- <el-button @click="demo(ctx.basePage)" size='mini' type="primary">示例按钮</el-button> -->
</template> </template>
</BasePage> </BasePage>
</template> </template>
<script> <script>
import Edit from './edit.vue' import Edit from './edit.vue'
export default { export default {
name: 'ywsjgl', name: 'ywsjgl',
data() { data() {
return { return {
config: { config: {
/* 基本配置*/ /* 基本配置*/
url: 'ywxxgl/uywsj', url: 'ywxxgl/uywsj',
tableTitle: [ tableTitle: [
{label: "事件描述", prop: "sjms", fieldType: "ftString",width:300}, {
{label: "异物发现时间", prop: "ywfxsj", fieldType: "ftDateTime"}, label: "事件描述",
{label: "通知单号", prop: "tzdh", fieldType: "ftString",width:192}, prop: "sjms",
{label: "分类", prop: "fl", fieldType: "ftString",width:192}, fieldType: "ftString",
{label: "事件分级", prop: "sjfj", fieldType: "int"}, width: 300
{label: "是否关闭", prop: "sfgb", fieldType: "checkbox",width:60}, },
{label: "责任专业", prop: "zrzy", fieldType: "ftString",width:192}, {
{label: "期间", prop: "qj", fieldType: "ftString",width:192}, label: "异物发现时间",
{label: "完整性", prop: "wzx", fieldType: "checkbox"}, prop: "ywfxsj",
{label: "IOE", prop: "ioe", fieldType: "checkbox"}, fieldType: "ftDateTime"
{label: "是否一回路或二次侧", prop: "sfyhlhecc", fieldType: "checkbox",width:200}, },
{label: "异物事件单是否签字", prop: "ywsjdsfqz", fieldType: "checkbox",width:200}, {
{label: "SAP任务是否关闭", prop: "saprwsfgb", fieldType: "checkbox",width:200}, label: "通知单号",
{label: "SAP通知单是否关闭", prop: "saptzdsfgb", fieldType: "checkbox",width:200}, prop: "tzdh",
{label: "维护人", prop: "whr", fieldType: "ftString"}, fieldType: "ftString",
{label: "维护时间", prop: "whsj", fieldType: "ftDateTime"}, width: 192
{label: "创建人", prop: "cjr", fieldType: "ftString"}, },
{label: "创建时间", prop: "cjsj", fieldType: "ftDateTime"}, {
label: "分类",
prop: "fl",
fieldType: "ftString",
width: 192
},
{
label: "事件分级",
prop: "sjfj",
fieldType: "int"
},
{
label: "是否关闭",
prop: "sfgb",
fieldType: "checkbox",
width: 60
},
{
label: "责任专业",
prop: "zrzy",
fieldType: "ftString",
width: 192
},
{
label: "期间",
prop: "qj",
fieldType: "ftString",
width: 192
},
{
label: "完整性",
prop: "wzx",
fieldType: "checkbox"
},
{
label: "IOE",
prop: "ioe",
fieldType: "checkbox"
},
{
label: "是否一回路或二次侧",
prop: "sfyhlhecc",
fieldType: "checkbox",
width: 200
},
{
label: "异物事件单是否签字",
prop: "ywsjdsfqz",
fieldType: "checkbox",
width: 200
},
{
label: "SAP任务是否关闭",
prop: "saprwsfgb",
fieldType: "checkbox",
width: 200
},
{
label: "SAP通知单是否关闭",
prop: "saptzdsfgb",
fieldType: "checkbox",
width: 200
},
{
label: "维护人",
prop: "whr",
fieldType: "ftString"
},
{
label: "维护时间",
prop: "whsj",
fieldType: "ftDateTime"
},
{
label: "创建人",
prop: "cjr",
fieldType: "ftString"
},
{
label: "创建时间",
prop: "cjsj",
fieldType: "ftDateTime"
},
], ],
queryParams: [ queryParams: [
[{ [{
label: '编码', label: '事件描述',
prop: 'code', prop: 'sjms',
span: 6, span: 6,
type: 'input', type: 'input',
value: '' value: ''
}, }
{
label: '名称',
prop: 'name',
span: 6,
type: 'input',
value: ''
}
] ]
], ],
/* 默认启停用 */ /* 默认启停用 */
} }
} }
}, },
methods: { methods: {
/** /**
* @description:示例按钮 * @description:示例按钮
* @param {*} ctx操作basePage实例内容 * @param {*} ctx操作basePage实例内容
* @return {*} * @return {*}
* @author: lisu * @author: lisu
*/ */
// demo(ctx){} // demo(ctx){}
}, },
components: { components: {
Edit Edit
} }
} }
</script> </script>
<style> <style>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment