Browse Source

fix: 查询查件详情

test2
xuesinan 4 years ago
parent
commit
5935a3dd61
  1. 1
      CHANGELOG.md
  2. 1
      components/Globals/Globals.vue
  3. 3
      components/Plugin/Plugin.vue
  4. 3
      components/Render/Render.vue
  5. 1
      components/TimeLine/component/TimeBox.vue

1
CHANGELOG.md

@ -81,6 +81,7 @@
- | 查询插件 | [542d714](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/542d714)
- | 登录页验证码获取 | [108e322](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/108e322)
- | 广告页、引导页 | [b63ade5](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/b63ade5)
- | 获取c插件信息 | [7b02efc](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/7b02efc)
交付物 | 修复检查人选择组件之间相互影响的bug | [435c0bd](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/435c0bd)
交付物 | 重构交付物审核部分,修复审核bug | [5fd8889](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/5fd8889)
- | 解决默认角色不是第一个时显示出错问题 | [8dba578](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/8dba578)

1
components/Globals/Globals.vue

@ -23,6 +23,7 @@
:task="item"
:key="plugin.pluginTaskId"
:plugin-task-id="plugin.pluginTaskId"
:business-plugin-id="plugin.businessPluginId"
:plugin-id="plugin.pluginId"
:param="plugin.param"
:style-type="plugin.styleType || 0"

3
components/Plugin/Plugin.vue

@ -22,7 +22,7 @@
<p-source-manage v-else-if="pluginId === '16'" class="p-2" />
<p-finance-audit v-else-if="pluginId === '17'" class="p-2" />
<p-finance v-else-if="pluginId === '18'" class="p-2" />
<Render v-else :task="task" :pluginId="pluginId" :styleType="styleType" :pluginTaskId="pluginTaskId" :param="param" />
<Render v-else :task="task" :pluginId="pluginId" :styleType="styleType" :pluginTaskId="pluginTaskId" :businessPluginId="businessPluginId" :param="param" />
</view>
</template>
@ -35,6 +35,7 @@ const props = defineProps({
pluginId: { default: '1', type: String },
styleType: { default: 0, type: Number },
pluginTaskId: { default: '', type: String },
businessPluginId: { default: '', type: String },
param: { type: String, default: '' },
});

3
components/Render/Render.vue

@ -49,6 +49,7 @@ defineProps({
pluginId: { default: '1', type: String },
styleType: { default: 0, type: Number },
pluginTaskId: { default: '', type: String },
businessPluginId: { default: '', type: String },
param: { type: String, default: '' },
});
@ -80,7 +81,7 @@ export default {
methods: {
//
async getPlugin() {
const params = { pluginId: this.pluginId, styleType: this.styleType };
const params = { businessPluginId: this.businessPluginId };
this.$catchReq.getOtherPlugin(params, (err, res) => {
if (err) {
console.error('err: ', err);

1
components/TimeLine/component/TimeBox.vue

@ -39,6 +39,7 @@
:task="task"
:key="plugin.pluginTaskId"
:plugin-task-id="plugin.pluginTaskId"
:business-plugin-id="plugin.businessPluginId"
:plugin-id="plugin.pluginId"
:param="plugin.param"
:style-type="data.styleType || 0"

Loading…
Cancel
Save