|
@@ -65,13 +65,13 @@ provide('closeEditUpdatePriRecordVisible', closeEditUpdatePriRecordVisible)
|
|
|
ref="ruleFormRef"
|
|
|
:rules="rules"
|
|
|
)
|
|
|
- el-form-item(label="配置ID", prop="listId")
|
|
|
+ el-form-item(label="奖励", prop="listId")
|
|
|
el-select(
|
|
|
v-model="form.listId",
|
|
|
- placeholder="请选择配置ID",
|
|
|
+ placeholder="请选择奖励",
|
|
|
clearable,
|
|
|
)
|
|
|
- el-option(:label="item.id", :value="item.prizeName" v-for="(item,index) in listIdOptionList")
|
|
|
+ el-option(:label="item.prizeName", :value="item.id" v-for="(item,index) in listIdOptionList")
|
|
|
el-form-item(label='批次号' prop="batchNo")
|
|
|
el-input(v-model='form.batchNo' autocomplete='off'
|
|
|
placeholder="请输入批次号")
|
|
@@ -86,7 +86,6 @@ provide('closeEditUpdatePriRecordVisible', closeEditUpdatePriRecordVisible)
|
|
|
//- 表格组件
|
|
|
PureTableBar(title="奖励记录", @refresh="onSearch(ruleFormRef)" )
|
|
|
template(#buttons)
|
|
|
- el-button(type="primary" :icon="useRenderIcon(Addicon)" @click="handleAdd()" v-if="hasAuth(['add'])") 新增
|
|
|
|
|
|
template(v-slot="{ size, checkList }")
|
|
|
pure-table(
|
|
@@ -107,23 +106,6 @@ provide('closeEditUpdatePriRecordVisible', closeEditUpdatePriRecordVisible)
|
|
|
@size-change="handleSizeChange",
|
|
|
@current-change="handleCurrentChange"
|
|
|
)
|
|
|
- template(#operation="{ row }")
|
|
|
- el-button.reset-margin(
|
|
|
- link
|
|
|
- type="primary"
|
|
|
- size="small"
|
|
|
- @click="handleUpdatePriRecord(row)"
|
|
|
- :icon="useRenderIcon(EditPen)"
|
|
|
- v-if="hasAuth(['updatePriRecord'])"
|
|
|
- ) 编辑
|
|
|
- el-button.reset-margin(
|
|
|
- link
|
|
|
- type="primary"
|
|
|
- size="small"
|
|
|
- @click="handleDelete(row)"
|
|
|
- :icon="useRenderIcon(Delete)"
|
|
|
- v-if="hasAuth(['delete'])"
|
|
|
- ) 删除
|
|
|
|
|
|
|
|
|
|