Commit 5b7d99c8 by wusiyi

feat: 操作符管理添加操作日志

parent 060c243e
......@@ -145,6 +145,7 @@ export default {
clearable
step={item.step || 1}
min={item.min ?? -Infinity}
precision={item.precision ?? 0}
controls-position={item.position || 'right'}
style="width: 100%;"></el-input-number>
)}
......
......@@ -63,8 +63,11 @@
:visible.sync="noteVisible"
width="500px">
<ul style="color: #333; font-size: 12px; height: 400px; overflow: auto">
<li v-for="(item, index) in logList" :key="index" style="height: 30px">
({{ index + 1 }})、{{ item.userName + ':' + item.msg }}
<li
v-for="(item, index) in logList"
:key="index"
style="margin-bottom: 10px">
{{ item.createTime + ':' + item.msg }}
</li>
</ul>
</el-dialog>
......@@ -87,6 +90,7 @@ export default {
sourceData: [],
formData: {},
queryFormData: {},
logList: [],
queryformConfig: [
{
prop: 'name',
......@@ -142,6 +146,7 @@ export default {
name: '固定费用',
step: 0.01,
min: 0,
precision: 2,
renderRules: (item) => [
{
required: true,
......@@ -180,6 +185,7 @@ export default {
name: '起收费用',
step: 0.01,
min: 0,
precision: 2,
renderRules: (item) => [
{
required: true,
......@@ -195,6 +201,7 @@ export default {
name: '每件加收',
step: 0.01,
min: 0,
precision: 2,
renderRules: (item) => [
{
required: true,
......@@ -210,6 +217,7 @@ export default {
name: '上限费用 ',
step: 0.01,
min: 0,
precision: 2,
renderRules: (formData) => [
{
required: true,
......
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