项目、任务、活动规则提示
This commit is contained in:
@@ -30,6 +30,9 @@
|
||||
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
|
||||
v-hasPermi="['farm:discuss:export']">导出</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="danger" size="mini" @click="dialogVisible = true">第一次进来请先看活动规则</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
@@ -129,6 +132,19 @@
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
||||
<!-- 活动规则提示 -->
|
||||
<el-dialog title="活动规则提示" :visible.sync="dialogVisible" width="70%">
|
||||
<el-form label-width="80px">
|
||||
<el-form-item>新增活动只能选择进行中的项目下的进行中的任务</el-form-item>
|
||||
<el-form-item>执行人只能从项目的成员中选择</el-form-item>
|
||||
<el-form-item>提交活动后,任务自动变成已完成,并新增执行人的工时</el-form-item>
|
||||
<el-form-item>如果任务类型是采收, 则会将采收数量同步到ERP对应物料数量</el-form-item>
|
||||
</el-form>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="dialogVisible = false">确 定</el-button>
|
||||
</span>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -149,6 +165,8 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
//活动规则
|
||||
dialogVisible: false,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 导出遮罩层
|
||||
|
||||
Reference in New Issue
Block a user